Automation Test Suites Are Not God!

[article]
Summary:

In today’s age of tight deadlines and accelerating delivery cycles of software, test automation is surely favorable for the world of functional testing and critical to the success of big software development companies. But its various benefits have led to unrealistic expectations from managers and organizations. This article highlights the role and use of automation in an agile context and the irreplaceable importance of manual testing.

Working in an agile environment makes it essential to automate system testing to rerun tests in each iteration. But in the nascent stages of some systems, there are changes in the UI, product flow, or design itself in each iteration, making it difficult to maintain the automation scripts. The role of automation in agile context is repetition of regression and redundant tasks, while the actual testing happens at the hands of manual testers. The creativity, skills, experience, and analytical thought process of a human mind cannot be replaced by automated scripts. This belief has to be ingrained in every organization’s culture in order to achieve the best quality.

Talking about software testing today is incomplete without the mention of test automation. Automation has become an important part of testing tasks and is deemed critical to the success of any software development team—and rightly so, with all its benefits like speed, reliability, reducing redundancy, and ensuring complete regression cycles within tight deadlines.

But the common perception of team managers and policy makers is that automation tools are the complete package for testing activities, and they begin expecting the world out of them. A common misconception is that test automation is the “silver bullet” for improving quality, and organizations start to believe that investing once in an automation tool ends all other testing-related tasks and investments. Managers start expecting everything out of their automation suites—100 percent coverage, minimum run times, no maintenance, and quality delivered overnight. It’s basically expecting godlike miracles to happen! Hence, there arises a need to educate and understand the actual purpose of automation and the importance of manual tests in this context.

Working in an agile environment makes it essential to automate system testing due to the bulk of regression tests required in every iteration. But what makes test automation hard within an agile context is its very inherent nature of constant change. Because the system under test changes continuously, the automation scripts have to be changed so often that they actually become a task themselves instead of a benefit.

As tester James Bach wrote, Test Automation Rule #1 is “A good manual test cannot be automated.” According to this thought, it is certainly possible to create a powerful and useful automated test, which will help you know where to look and to use your manual exploration. But the maximum benefit thereafter will come out of using the experience and exploration techniques.

This is based on the fact that humans have the ability to notice, analyze, and observe things that computers cannot. Even for unskilled testers, for amateur minds, or in total absence of any knowledge, requirements, or specifications of the system under test, people can observe and find a lot of things no tool will be able to.

In a true sense, automation is not actually testing; it is merely the repetition of the tasks and tests that have been performed earlier and are only required as a part of regression cycles. Automation is made powerful by the various reports and metrics associated with it.

But the actual testing still happens at the hands of a real tester, who applies his creativity, skills, experience, and analytics to find and report bugs in the system under test. Once his tests pass, they are then converted to automated suites for the next iteration, and so on.

So the basic job of automation suites is to free up the time and resources of the manual testers from the repetitive and redundant tasks so that they are able to concentrate and focus on the new features delivered and find maximum bugs in those areas.

Therefore, it is very important to not get caught up in the various charts, coverage, and metrics of our test suites. Instead we must focus on our projects’ context and requirements and, based on those designs, our automated versus manual tests ratio.

A simple example to illustrate it would be testing a web form with multiple inputs and spreading across multiple pages. An automation script created for it would ideally open the webpage, input the values and then submit them, and maybe check a couple of validations on input fields along the way. So, the process would ideally be

Observe > Compare > Report

The automation should perform the mostly happy path of a user scenario, observe the behavior as per the set expected results, and inform whether the form passes or fails at the end.

On the other hand, if we perform manual tests on the same web form, we should try to enter the inputs in a different order; navigating to and from the pages and observing whether the inputs are retained or not; and looking for usability issues such as difficulty in locating the fields and navigating buttons, the font being too small or not clear in some setting, or form submission taking so long that some performance benchmarking might be required.

Perform > Analyze > Compare (with existing system, specifications, experience, discussions) >

> Inform (and discuss) > Recheck (if needed) >

> Personal Opinion and Suggestions > Final Report.

It shows that though the web form could have been easily tested by the automation test suite and been passed by it, we might miss out on other valuable aspects if we skip the manual and experience-based tests.

Markus Gartner, author of the book ATDD by Example, summed it up nicely when he wrote, “While automated tests focus on codifying knowledge we have today, exploratory testing helps us discover and understand stuff we might need tomorrow.”

Automation test suites, though essential, should not be thought of as the “silver bullet” of quality. The actual test efforts still lie with the manual tester’s expertise and skills, without which actual quality cannot be ingrained into the system. We must keep a check on the unrealistic expectations for automation tests, because after all, automation suites are not God!

User Comments

6 comments
Doug Shelton's picture

Nishi:

You make a very good point, but what I would like to have seen in this article (or perhaps you could include as further articles on this topic), is more guidelines on "exactly what **extent**, or **degree** of automated testing should occur in Sprints - and at what point(s) in the Sprints and in the Release".

You did provide one example (and examples are GREAT guidelines), but I'd like to see more detailed information along these lines, unless your proposal is simply that one should **only** do "Happy Path" automation and not do the full regression suite until <When?  End of Sprint?  Last sprints of the Release?>. Do you see by that last question what I mean in terms of asserting that you've left this topic "hanging"?  

Of course, beware the detractors who will say you're propsing the creation of mini-waterfalls  - particularly if you leave "full" regression test automation until the last Sprints in a Release (and I'd hope you would **not** recommend that for reasons i shouldn't have to go into).  But if you don't - there isn't any "perfect approach" - many products run into later Sprint dependencies so **some** tests will have to be refactored nontheless as dependencies (and further knowledge) "reshape" what earlier code was suppossed to do, and thatat earlier sprint's code tests as well.

June 19, 2014 - 10:16pm
Kevin Dunne's picture

Doug, 

I can see where you are frustrated by not being provided a golden rule of automation coverage - but a lot of those variables related to the extent or degree of automated testing coverage needed in a sprint will vary. I think some (of many more) things you would want to consider are:

-Level of unit testing completed - how well is the application tested by the developer, and how much do you trust that developer to do testing?  At the CAST show last week, Trish Khoo (http://trishkhoo.com/) talked about agile groups she worked in at google where all of the testing was performed by the developers, and there were no dedicated testing resources

-Maturity of the application - while we can't assume that more mature applications will never have features break, we know that the probability is likely less.

-Development "nimbleness" - if something breaks, how quickly can we fix it?  Do we do builds frequently?  For example, at my company, many of our customers are in the cloud, so we can deploy a hot fix if something goes wrong.  However, if this happens with one of our On-Premise clients, the path to resolving the issue is much more difficult.  Therefore, much more automated testing is needed to confirm the stability of the on-premise build.

-Risk of Defects found in production - For someone like Facebook, a bug found in production has lesser impact - for the most part people do not rely on Facebook to perform any critical activities.  However, for someone making software that controls surgical instruments, the same cannot be said. 

There are many, many more factors to contribute - I would be interested to hear what others think are import factors to weigh when making this decision!  But at the end of the day, I think agile will require that you drop the dogma associated with waterfall of boilerplate test plans, test case formats, etc. and think at a higher level about what the mission of your testing truly is. 

Kevin

 

August 20, 2014 - 11:38am
Nishi Grover's picture

Hey Kevin, Really nice thoughts! Appreciate your response.

June 24, 2016 - 6:19am
Nishi Grover's picture

Hello Doug

Thanks for your thoughts. I agree with you when you say that we should not leave the automation to the end of all sprints. We must definitely keep pace with the sprints by automating the regression suites for current sprints to be run in next sprint , and also ensure coverage of all important paths - positive or negative in our automation scripts. 

The main intention behind this writeup was to assert that when we do all of the above , still we should not expect that to be the end of quality game, as is a general misconception among managers. The coverage of automation does not measure for quality, and the actual testing of new features , designs and changes still happens at the hand of manual testers. So we must keep up efforts to support , improve and enhance manual test efforts by better test design techniques, invoking critical thinking and more inclusive participation by testers.

 

June 24, 2016 - 6:18am

About the author

AgileConnection is a TechWell community.

Through conferences, training, consulting, and online resources, TechWell helps you develop and deliver great software every day.