The intersection of technology and leadership

Automated story-based acceptance tests lead to unmaintainable systems

Projects where the team directly translates story-level acceptance criteria into new automated test cases set themselves up for a maintenance nightmare. It seems like an old approach (I’m thinking WinRunner-like record-play back scripts), although at least the teams probably feel the pain faster. Unfortunately not many teams seem to know what to do. It sounds exactly like the scenarios that my colleagues, Phillip and Sarah are experiencing or experienced recently.

Diagnosing this style of testing is easy. If I see the story number or reference in the title of the test class or test case name, chances are, your team experiences automated story-based acceptance tests.

Unfortunately the downfall to this approach has more to do with the nature of stories than it does with the nature of acceptance tests (something I’ll get to later). As I like to say, stories represent the system in a certain snapshot of time. The same thing that lets us deliver incremental value in small chunks just doesn’t scale if you don’t consolidate the new behaviour of the system, with its already existing behaviour. For developers, the best analogy is like having two test classes for a particular class, one that reflected the behaviours and responsibilities of the system at the start, and one that represents the new behaviours and responsibilities of the system right now. You wouldn’t do this at a class level, so why should you do it at the system level?

Avoid temporal coupling in the design of your tests. The same poor design principle of relating chunks of code together simply because someone asked for them at the same time, also apply to how you manage your test cases. In terms of automated story-based acceptance tests, avoid spreading similar tests around the system just because they were needed at different times.

What is a better way? A suggested antidote…

On my current project, I have been lucky enough to apply these concepts early to our acceptance test suites. Our standard is to group tests, not based on time, but on similar sets of functionality. When picking up new stories, we see if any existing tests need to change, before adding new ones. The groupings in our system are based on the system level features, allowing us to reflect the current state of the system as succinctly as possible.

4 Comments

  1. David Chelimsky

    I agree with your analysis of the problem, but I disagree with the sentiment of your title. I’d say “poorly managed automated story-based acceptance tests lead to unmaintainable systems”, just like poorly managed anything generally leads to crap.

    The problem, as you suggest, is tying the code to stories for tracking purposes, and keeping the automated stories organized by iteration (also for tracking purposes).

    It is for this very reason that we’ve started talking about automating scenarios under features as opposed to stories. The scenarios are introduced as acceptance criteria for stories in a given iteration, but once those scenarios pass, they are organized under the features that they align with in the system.

    What do you think about that approach?

  2. Patrick

    David – I specifically chose this title to distinguish doing automation around story acceptance criteria instead of automating them around sensible things to manage in the long term. I do favour your approach of automating around features, or better yet, a common set of scenarios everyone already knows and is something that we are doing on my current project.

  3. Fahri Tavuk

    Dude what the fuck are you talking about?

  4. Patrick

    Hi Fahri! Thanks for your comment. Would you like to be more specific about what you want to know?

5 Pingbacks

  1. The Punch Barrel / Automated story-based acceptance tests lead to unmaintainable systems
  2. User Stories are Just Schedulable Change at Fragmental.tw
  3. Arjan`s World » LINKBLOG for October 1, 2008
  4. It’s not all about the acceptance tests at Mark Needham
  5. Matt O’ Rama » “Automated story-based acceptance tests lead to unmaintainable systems”

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

© 2024 patkua@work

Theme by Anders NorenUp ↑