Can I have dependencies between scalaTest specs such that if a test fails, all tests dependent on it are skipped?

link|improve this question

76% accept rate
One of the important rules of testing is: Tests should not depend on each other. (No idea if it is possible to have dependencies in ScalaTest) – agilesteel Aug 10 '11 at 11:18
They shouldn't but sometimes setup of a test is so expensive you can't really avoid it. On other times you test external systems to ensure they still behave as agreed on. If a first test testing the availability of a system fails, there is no need in testing the details. – Jens Schauder Aug 10 '11 at 12:06
1  
It's possibly an important rule of "unit testing" but dependent tests are very useful for functional tests, for a bunch of reasons (reusing expensive state, accurate reporting, avoiding mocks, etc...). – Cedric Beust Aug 10 '11 at 20:18
feedback

2 Answers

I didn't add that feature of TestNG because I didn't at the time have any compelling use cases to justify it. I have since collected some use cases, and am adding a feature to the next version of ScalaTest to address it. But it won't be dependent tests, just a way to "cancel" a test based on an unmet precondition.

In the meantime what you can do is simply use Scala if statements to only register tests if the condition is met, or to register them as ignored if you prefer to see it output. If you are using Spec, it would look something like:

if (databaseIsAvailable) {
  it("should do something that requires the database") {
     // ...
  }
  it ("should do something else that requires the database") {
  }
 }

This will only work if the condition will be met for sure at test construction time. If the database for example is supposed to be started up by a beforeAll method, perhaps, then you'd need to do the check inside each test. And in that case you could say it is pending. Something like:

it("should do something that requires the database") {
  if (!databaseIsAvailable) pending
  // ...
}
it("should do something else that requires the database") {
  if (!databaseIsAvailable) pending
  // ...
}
link|improve this answer
After reading the scaladoc, I still fail to see how I set the preconditions. Precisely, how do I set a condition when a test succeeds so that other suites can reference it? – user44242 Aug 11 '11 at 13:21
feedback

I don't know about a ready made solution. But you can fairly easily write your own Fixtures.

See "Composing stackable fixture traits" in the javadoc of the Suite trait

Such a fixture could for example replace all test executions after the first one with calls to pending

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.