| By Mark Nadelson | Article Rating: |
|
| December 4, 2008 07:30 AM EST | Reads: |
3,707 |
Unit testing is hard. There I said it. Although I have been developing software for the past 18 years I still find that putting my applications through their paces via unit testing is difficult. I have learned the lesson (I'm sure like many of you) the hard way. Unit testing is probably the most important part of software development. We all get caught in the trap once in a while when we believe that there is no need to test a piece of software we just wrote. We convince ourselves it is too hard to test, the rest of the application is solid, and that if there are any real errors in the code it will be discovered by the QA department. You know and I know this is a bad argument. Of course once the application is in production it is the piece of code that we didn't test that causes system failures.
There's no good reason for not unit testing all pieces of an application. Unit testing is the only way we can be assured that everything works as intended. It is the only way that others can take over our code, change it, and be confident that they
didn't break anything unintentionally. Unfortunately fewer and fewer applications are truly standalone. Almost every application that I develop requires the interaction of third-party libraries as well as third-party systems. Creating n-tiered systems is not the exception anymore it's the norm. It's easy to test code that you wrote. You know how to control the inputs and you know the expected outputs.
What is not easy is testing the integration of third-party components and the range of their possible outputs. This is the case when interacting with Web Services, scraping Web pages, information providing systems, etc. You read the third-party's specification that explains their inputs and their expected results. How do you control the third-party environment for every possible scenario that can occur? This is especially difficult when certain results only occur intermittently such as certain times of the year. Even more difficult is how you test for failure scenarios. You can't cause the third-party system to fail but in case that system does fail you want to protect your users. You don't want your user's to have any of their data corrupted; you don't want your system to fail especially if it's a 24x7 system and must be up all the time; and you minimally want to inform your users that the system is not functioning properly due to the failure of an outside system.
One approach for testing third-party components is to create a proxy. All interactions with the outside system are done via an interface and communication with that system is done via an implementation of that interface. Now you are just testing the interface to make sure that you can handle all expected and unexpected results from that interface. When writing your test code you create a test implementation of that interface that mimics the true third-party implementation. The reasoning behind this approach is that in the end as long as your program interacts correctly with the interface then all is well. This statement is not untrue. The problem with it is that you wind up writing code that is intended only for testing, but is now part of the whole system. It is more code that you have to maintain and it bloats your released application.
Published December 4, 2008 Reads 3,707
Copyright © 2008 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
About Mark Nadelson
Mark Nadelson has been working as a software developer for the past 18 years in a variety of industries including telecommunications, Internet, and finance. He has published numerous articles as well as two books. He enjoys exploring new technologies and new techniques to solve complex problems.
![]() |
immohuneke 01/06/09 08:14:24 AM EST | |||
A well written article, an ingenious solution to a real problem often encountered in testing and a neat answer to those who claim that AOP is just a solution looking for a problem. However, I found only the first five listings in the file "Nadelson_source.rtf", which makes the last part of the article harder to understand. Please could you check whether it's all there? |
||||
- Java Kicks Ruby on Rails in the Butt
- Ulitzer’s Amazing First 30 Days in Public Beta
- "Government IT Expo" to Highlight Cloud Computing and SOA
- Will Ulitzer Dominate News Content on The Web? -Gartner
- Building Private and Hybrid Clouds with Ubuntu 9.04
- Ulitzer vs. Ning - a Quick Review
- Eclipse.Org Releases Swordfish Next-Generation ESB for SOA
- Ted Weissman and Lois Paul & Partners PR Firm
- New Eclipse Plugin Adds Cloud Hosting for Java, PHP and Rails Applications
- Software AG Comments on Oracle-Sun Acquisition
- Java Kicks Ruby on Rails in the Butt
- IBM Named “Platinum Sponsor” of SYS-CON's Virtualization Conference
- Ulitzer’s Amazing First 30 Days in Public Beta
- "Government IT Expo" to Highlight Cloud Computing and SOA
- Cloud Computing Expo Keynote to Be Delivered by IBM's CTO Kristof Kloeckner
- Will Ulitzer Dominate News Content on The Web? -Gartner
- Micro Focus Offers Micro Focus COBOL for Eclipse
- Building Private and Hybrid Clouds with Ubuntu 9.04
- Sun CEO Reviews Company's Prospects for 2009-10
- Virtualization & Cloud Computing Expo Attracts More Delegates Than Gartner
- Java Developer's Journal Exclusive: 2006 "JDJ Editors' Choice" Awards
- The i-Technology Right Stuff
- Creating Web Applications with the Eclipse Web Tools Project
- Eclipse Special: Remote Debugging Tomcat & JBoss Apps with Eclipse
- The Next Programming Models, RIAs and Composite Applications
- How to Bring Eclipse 3.1, J2SE 5.0, and Tomcat 5.0 Together
- SYS-CON Webcast: Eclipse IDE for Students, Useful Eclipse Tips & Tricks
- Eclipse: The Story of Web Tools Platform 0.7
- "Eclipse 3.0 is a Great Leap Forward," Says JDJ's Dudney
- Developing an Eclipse BIRT Report Item Extension








































