| By Mark Nadelson | Article Rating: |
|
| December 4, 2008 07:30 AM EST | Reads: |
4,364 |
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 4,364
Copyright © 2008 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By 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? |
||||
- IBM Puts Systems Chief on Leave of Absence
- Amazon Web Services Database in the Cloud
- SpringSource Moving to Spring 3.0
- Virtualization Expo Call for Papers Deadline December 15
- Move Over BI, Here Comes PI - Performance Intelligence
- Qt DevDays 2009 - Munich
- Using Ext JS, Servlets, JSON, MySQL and Tomcat on Fedora
- Developing APIs for the Cloud
- Canonical Offers Free Cloudware
- New-Generation Virtualization Technologies with Ultra Low-Cost Endpoints
- The Planet Executive to Speak at Cloud Computing Conference
- Trusting the Cloud
- Oracle-Sun: IBM Reportedly Behind Delay
- The Case for Single-Purpose Services
- IBM Puts Systems Chief on Leave of Absence
- Cloud BI & Amazon VPC
- Cloud-Oriented Switch Start-up Valued at $230M
- The Curious Case of Build Release Management eBook
- Amazon Web Services Database in the Cloud
- Tips for Efficient PaaS Application Design
- Reporting Solutions Using Crystal Reports for Eclipse
- SpringSource Moving to Spring 3.0
- Virtualization Expo Call for Papers Deadline December 15
- Un-Clouding Federal Security Compliance
- 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
- Where Are RIA Technologies Headed in 2008?
- 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
- The Top 250 Players in the Cloud Computing Ecosystem



























