Thursday, April 28, 2005

Black Box Testing

   I attended a talk on campus yesterday discussing various aspects of testing.  Part of the talk discussed the need for testers to become better versed in the formalities of testing.  I'll leave that subject for another day.  A portion of the talk, however, discussed an experiment done with some inexperienced testers.  They were asked to create test cases for the Myers Triangle Test.  A lot of the test cases they came up with were not useful.  By that I mean they didn't test the algorithm or they were redundant with other tests.  Some would try inputting something like an 'A' which is invalid and won't pass the string->int conversion function or they would try lots of different numbers that all went down the same code path.  If you look at the underlying code, it is obvious why these tests don't make sense.  Too often though, test plans are full of cases like these.  Why is that?


   I contend that we often test things only at the surface level and don't consider the implementation.  At some point in time I was told that black box testing was a good idea because if you looked at the underlying code, you might make the same flawed assumptions that the developer made.  This is probably also where we got the notion that you shouldn't test your own code.  I never really agreed with the concept of purposeful black box testing but didn't fully challenge the assumption in my mind.  After some reflection though, I am pretty sure that black box testing is almost always less useful than white box testing. 


   Just in case you don't follow, let me define some terms.  Black box testing is testing where you don't understand the implementation details of the item you are testing.  It is a black box.  You put in data, you get out different data, how it tranforms the data is unknown.  White box testing is testing where you have the source code available (and look at it).  You can see that there are 3 distinct comparisons going on in the Meyers Triangle Test. 


   Black box testing can be useful if we don't have the time or the ability to understand what we are testing but if we do, it is always better to take advantage of it.  Without knowing the details, I have to try every potential input to a program to verify that all of the outputs are correct.  If I know the inputs, however, I can just test each code path.  If all triangles are tested for A == B == C, I don't need to Triangle(3,3,3) and Triangle (4,4,4) and Triangle(5,5,5).  After the first one, I'm not trying anything new.  Without looking at the code, however, I don't know that.  Not only does white box testing allow you to see where you don't need to test, it lets you see where you do.  Some years ago I was testing our DirectShow DVD Navigator software.  There is a function for fast forward that takes a floating point number.  From a black box perspective, one would have no idea what numbers to pass.  Just try some and call it good.  In this particular implementation, however, there were different behaviors depending on which number you put in.  For a certain range of numbers, all frames were decoded and just played quickly.  For a higher range, only I-frames were played.  For everything above that range, the navigator started playing only some of the I-frames.  Without looking at the code, I could not have known which test cases were interesting.  I couldn't guarantee that I tried something from every range.


   What about making wrong assumptions if you look at the code?  Won't that cause you to miss things?  Perhaps.  However, test driven development, unit testing, etc. have proven that testing done by the developer is quite effective.  Testers should also have a spec outlining what proper behavior should be.  If the code deviates from that spec, you found a bug (somewhere--it might in be the spec).  If you use common sense, you are unlikely to miss a bug because you make the same assumption as the developer.  If you do, the trade-off for greater test efficiency is probably worth it.  You'll have found many new bugs for each one you miss.

5 comments:

  1. I do agree that a FULL Black box testing is bad. But at the same time if you have to look at code and test software, then it is a chicken comes first or egg comes first scenario. It would also indicate a unavailable or badly written specification scenario.


    Now coming to why I agree that a FULL Black box testing is bad .. this is something I am seeing in the last few years. Testing teams nowadays have lot of power and insist on a fully complete Use Case Scenario, before they write test cases .. and rightly so; but .. once they have the Use Cases, they dumbly copy the scenarios into test cases. Then they consider the test cases as a Bible and test JUST that. An analogy of this would be to test a new Car model to see if it functions correctly inside the factory, but never take it on a test ride on real city roads/highways. I mean the attitude is more like "this is what you said in your use case, so this is what gets tested".


    One way to fix this is to put a percentage of the test resources (say 10-20%) into a "Creative test group". This test group's job is to test the application with a "everything is fair" attitude. Their goal should be to test the application in every which way and come up with bugs. Of course this will result in a number of "will never happen in real life" scenario bugs, but you are sure to get a lot of things the regular test cases would never have uncovered. Another side effect is testing will be more fun!

    ReplyDelete
  2. Visual Studio Team System


    If you’re installing Beta 2 using Virtual PC, you should learn to appreciate...

    ReplyDelete
  3. I'm a big fan of test driven development. Best of all it limits the development effort to just writting code that passes the tests. Of course if your tests are wrong ...


    Aren't you using NUnit yet?


    I really think MS needs to take the Agile path and start writting code, including PM and VS support to pile iterations and team colaberation into the development process. Your direct competitors are Rally and VersionOne.

    ReplyDelete
  4. PingBack from http://tynerblain.com/blog/2006/01/13/software-testing-series-black-box-vs-white-box-testing/

    ReplyDelete
  5. PingBack from http://mydebtconsolidator.info/story.php?id=19734

    ReplyDelete