免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1550 | 回复: 0
打印 上一主题 下一主题

CppUnit - 测试驱动开发入门 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-10-13 18:22 |只看该作者 |倒序浏览
原文:http://www.polyrandom.com/content/view/17//
转载请注明原出处。

  1. 测试驱动开发是一个现在软件界最流行的词汇之一,可是很多人还是不得其门而入。这篇文章想通过对于CppUnit的介绍,给予读者一个基本的映像。如果你熟知CppUnit的使用,请参阅我的另一篇文章:CppUnit代码简介 - 第一部分,核心类来获得对于CppUnit进一步的了解。
  2. I. 前言
  3. 测试驱动开发是一个现在软件界最流行的词汇之一,可是很多人还是不得其门而入。这篇文章想通过对于CppUnit的介绍,给予读者一个基本的映像。如果你熟知CppUnit的使用,请参阅我的另一篇文章:CppUnit代码简介 - 第一部分,核心类来获得对于CppUnit进一步的了解。

  4. II. 测试驱动开发
  5. 要理解测试驱动开发,必须先理解测试。测试就是通过对源代码的运行或者别的方式的检测来确定源代码之中是否含有已知或者未知的错误。所谓测试驱动开发,就是在开发前根据对将要开发的程序的要求,先写好所有测试代码,并且在开发过程中不时地通过运行测试代码来获得所开发的代码与所要求的结果之间的差距。很多人可能会有疑问:既然我还没有开始写代码,我怎么能够写测试代码呢?这是因为,虽然我们还没有写出任何实现代码,但是我们可以根据我们对代码的要求从使用者的角度写出测试代码。事实上,在开发前写出测试代码,可以检测你的要求是不是完善和精确,因为如果你写不出测试代码,表示你的需求还不够清晰。
  6. 这篇文章通过一个文件状态操作类来展示测试驱动开发相对于普通开发方法的优势。

  7. III. 文件状态操作类(FileStatus)需求
  8. 构造函数,接受一个const std::string&作为文件名参数。
  9. DWORD getFileSize()函数,获取这个文件的长度。
  10. bool fileExists()函数,获取这个文件是否存在。
  11. void setFileModifyDate(FILETIME ft)函数,设定这个文件的修改日期。
  12. FILETIME getFileModifyDate()函数,返回这个文件的修改日期。
  13. std::string getFileName()函数,返回这个文件的名字。

  14. IV. CppUnit简介
  15. 我们所进行的测试,某种意义上说,就是一个或者多个函数。通过对这些函数的运行,我们可以检测我们是否有错误。假设我们要对构造函数和getFileName函数进行测试,这里面有一个很显然的不变式,就是对一个FileStatus::getFileName函数的调用,应该与传给这个FileStatus对象的构造函数的参数相同。于是我们有这样一个函数:
  16. bool testCtorAndGetFileName()
  17. {
  18.     const string fileName( "a.dat" );
  19.     FileStatus status( fileName );
  20.     return ( status.getFileName() == fileName );
  21. }
  22. 我们只需要测试这个函数的返回值就可以知道是否正确了。在CppUnit中,我们可以从TestCase派生出一个类,并且重载它的runTest函数。

  23. class MyTestCase:public CPPUNIT_NS::TestCase
  24. {
  25. public:
  26.     virtual void runTest()
  27.     {
  28.         const std::string fileName( "a.dat" );
  29.         FileStatus status( fileName );
  30.         CPPUNIT_ASSERT_EQUAL( status.getFileName(), fileName );
  31.     }
  32. };

  33. CPPUNIT_ASSERT_EQUAL是一个宏,在它的两个参数不相等的时候,会抛出异常。所以,理论上说,我们可以通过:

  34. MyTestCase m;
  35. m.runTest();

  36. 来进行测试,如果有异常抛出,那么就说明代码写错了。可是,这显然不方便,也不是我们使用CppUnit的初衷。下面我们给出完整的代码:

  37. // UnitTest.cpp : Defines the entry point for the console application.
  38. //

  39. #include "CppUnit/TestCase.h"
  40. #include "CppUnit/TestResult.h"
  41. #include "CppUnit/TextOutputter.h"
  42. #include "CppUnit/TestResultCollector.h"

  43. #include <string>;
  44. #include <iostream>;

  45. class FileStatus
  46. {
  47.     std::string mFileName;
  48. public:
  49.     FileStatus( const std::string& fileName ):mFileName( fileName )
  50.     {}
  51.     std::string getFileName() const
  52.     {
  53.         return mFileName;
  54.     }
  55. };

  56. class MyTestCase:public CPPUNIT_NS::TestCase
  57. {
  58. public:
  59.     virtual void runTest()
  60.     {
  61.         const std::string fileName( "a.dat" );
  62.         FileStatus status( fileName );
  63.         CPPUNIT_ASSERT_EQUAL( status.getFileName(), fileName );
  64.     }
  65. };

  66. int main()
  67. {
  68.     MyTestCase m;
  69.     CPPUNIT_NS::TestResult r;
  70.     CPPUNIT_NS::TestResultCollector result;
  71.     r.addListener( &result );
  72.     m.run( &r );
  73.     CPPUNIT_NS::TextOutputter out( &result, std::cout );
  74.     out.write();
  75.     return 0;
  76. }

  77. 这里我先说一下怎样运行这个程序。假设你的CppUnit版本是1.10.2,解压后,你会在src文件夹中,发现一个CppUnitLibraries.dsw,打开它,并且编译。你会在lib文件夹中,发现一些lib和dll,我们的程序需要依赖当中的某些。接着,创建一个Console应用程序,假设我们仅使用Debug模式,在Project Settings中,把预编译选项(Precompiled Header)选成No,把CppUnit的include路径加入到Additional Include Directories中,并且把Code Generation改成Multi-threaded Debug Dll,接着把CppUnitD.lib加入到你的项目中去。最后把我们的这个文件替换main.cpp。这个时候,就可以编译运行了。
  78. 这个文件中,前面四行分别是CppUnit相应的头文件,在CppUnit中,通常某个类就定义在用它的类名命名的头文件中。接着是我们的string和iostream头文件。然后是我们类的一个简单实现,只实现了这个测试中有意义的功能。接下去是我们的TestCase的定义,CPPUNIT_NS是CppUnit所在的名字空间。main中,TestResult其实是一个测试的控制器,你在调用TestCase的run时,需要提供一个TestResult。run作为测试的进行方,会把测试中产生的信息发送给TestResult,而TestResult作为一个分发器,会把所收到的信息再转发给它的Listener。也就是说,我简单的定义一个TestResult并且把它的指针传给TestCase::run,这个程序也能够编译通过并且正确运行,但是它不会有任何输出。TestResultCollector可以把测试输出的信息都收集起来,并且最后通过TextOutputter输出出来。在上述的例子中,你所获得的输出是:

  79. OK (1 tests)

  80. 这说明我们一共进行了1个测试,并且都通过了。如果我们人为地把“return mFileName;”改成“return mFileName + 'a';”以制造一个错误,那么测试的结果就会变成:

  81. !!!FAILURES!!!
  82. Test Results:
  83. Run:  1   Failures: 1   Errors: 0


  84. 1) test:  (F) line: 31 c:unittestunittest.cpp
  85. equality assertion failed
  86. - Expected: a.data
  87. - Actual  : a.dat

  88. 这个结果告诉我们我们的实现出现了问题。前面说到,CPPUNIT_ASSERT_EQUAL在两个参数不等时会抛出异常,可是这里为什么没有异常退出了?这是因为,我们执行每一个TestCase的run的时候,它使用了一种特殊的机制把函数包起来,任何异常都会被捕获。具体细节请参考我的CppUnit代码简介一文。

  89. 如果我们把#include "CppUnit/TextOutputter.h"替换成#include "CppUnit/CompilerOutputter.h",并且把TextOutputter替换成CompilerOutputter,输出就变成:

  90. c:unittestunittest.cpp(32) : error : Assertion
  91. Test name:
  92. equality assertion failed
  93. - Expected: a.data
  94. - Actual  : a.dat

  95. Failures !!!
  96. Run: 1   Failure total: 1   Failures: 1   Errors: 0

  97. 这个输出,在编译器的信息窗口里面,可以通过双击文件名加行号的那一行来到达相应的位置。

  98. V. 迭代开发

  99. 上面的例子中我们先针对需求的一部分写了测试用例,然后就实现了相应的功能。我们可以在这些功能被测试后,继续实现别的功能的测试用例,然后继续实现相应的功能,这是一个迭代的过程,我们不断地增加测试用例和实现代码,最后达成需求。还有一种方法是,先写好所有的测试用例(这个时候通常会编译不通过),然后再添加能够让编译通过所需要的实现(这个时候通常运行测试会有很多错误),接着通过正确实现使得没有任何测试错误,最后,对代码作优化和更新,并且不断的保证测试通过。在这里我们着重介绍第二种方法。首先我们先写下所有的测试用例,在这里,由于有很多测试用例,我们不再使用TestCase,因为TestCase通常用在单一测试任务的情况下。这次我们从TestFixture派生我们的测试类:

  100. class MyTestCase:public CPPUNIT_NS::TestFixture
  101. {
  102. public:
  103.     void testCtorAndGetName()
  104.     {
  105.         const std::string fileName( "a.dat" );
  106.         FileStatus status( fileName );
  107.         CPPUNIT_ASSERT_EQUAL( status.getFileName(), fileName );
  108.     }
  109.     void testGetFileSize()
  110.     {
  111.         const std::string fileName( "a.dat" );
  112.         FileStatus status( fileName );
  113.         CPPUNIT_ASSERT_EQUAL( status.getFileSize(), 0 );//?
  114.     }
  115. };

  116. 写到这里,我们发现了两个问题,首先我们不停的初始化一些测试所需的对象,重复了很多代码;其次我们发现了一个接口设计错误,我们的接口设计上没有考虑一个文件不存在的情况。从中可见,先写好测试用例,不仅是对实现的测试,也是对我们设计的测试。TestFixture定义了两个成员函数setUp和tearDown,在每一个测试用例被执行的时候,和它定义在同一个类内部的setUp和tearDown会被调用以进行初始化和清除工作。我们可以用这两个函数来进行统一的初始化代码。并且,我们修改getFileSize、setFileModifyDate和getFileModifyDate使得它们在出现错误的时候,抛出异常FileStatusError。下面是我们的测试用例:

  117. class MyTestCase:public CPPUNIT_NS::TestFixture
  118. {
  119.     std::string mFileNameExist;
  120.     std::string mFileNameNotExist;
  121.     std::string mTestFolder;
  122.     enum DUMMY
  123.     {
  124.         FILE_SIZE = 1011
  125.     };
  126. public:
  127.     virtual void setUp()
  128.     {
  129.         mTestFolder = "c:justfortest";
  130.         mFileNameExist = mTestFolder + "exist.dat";
  131.         mFileNameNotExist = mTestFolder + "notexist.dat";
  132.         if( GetFileAttributes( mTestFolder.c_str() ) != INVALID_FILE_ATTRIBUTES )
  133.             throw std::exception( "test folder already exists" );
  134.         if( ! CreateDirectory( mTestFolder.c_str() ,NULL ) )
  135.             throw std::exception( "cannot create folder" );
  136.         HANDLE file = CreateFile( mFileNameExist.c_str(), GENERIC_READ | GENERIC_WRITE,
  137.             0, NULL, CREATE_NEW, 0, NULL );
  138.         if( file == INVALID_HANDLE_VALUE )
  139.             throw std::exception( "cannot create file" );
  140.         char buffer[FILE_SIZE];
  141.         DWORD bytesWritten;
  142.         if( !WriteFile( file, buffer, FILE_SIZE, &bytesWritten, NULL ) ||
  143.             bytesWritten != FILE_SIZE )
  144.         {
  145.             CloseHandle( file );
  146.             throw std::exception( "cannot write file" );
  147.         }
  148.         CloseHandle( file );
  149.     }
  150.     virtual void tearDown()
  151.     {
  152.         if( ! DeleteFile( mFileNameExist.c_str() ) )
  153.             throw std::exception( "cannot delete file" );
  154.         if( ! RemoveDirectory( mTestFolder.c_str() ) )
  155.             throw std::exception( "cannot remove folder" );
  156.     }
  157.     void testCtorAndGetName()
  158.     {
  159.         FileStatus status( mFileNameExist );
  160.         CPPUNIT_ASSERT_EQUAL( status.getFileName(), mFileNameExist );
  161.     }
  162.     void testGetFileSize()
  163.     {
  164.         FileStatus exist( mFileNameExist );
  165.         //这里FILE_SIZE缺省是int,而getFileSize返回DWORD,不加转换会导致模版不能正确匹配。
  166.         CPPUNIT_ASSERT_EQUAL( exist.getFileSize(), (DWORD)FILE_SIZE );
  167.         FileStatus notExist( mFileNameNotExist );
  168.         CPPUNIT_ASSERT_THROW( notExist.getFileSize(), FileStatusError );
  169.     }
  170.     void testFileExist()
  171.     {
  172.         FileStatus exist( mFileNameExist );
  173.         CPPUNIT_ASSERT( exist.fileExist() );
  174.         FileStatus notExist( mFileNameNotExist );
  175.         CPPUNIT_ASSERT( ! notExist.fileExist() );
  176.     }
  177.     void testFileModifyDateBasic()
  178.     {
  179.         FILETIME fileTime;
  180.         GetSystemTimeAsFileTime( &fileTime );
  181.         FileStatus exist( mFileNameExist );
  182.         CPPUNIT_ASSERT_NO_THROW( exist.getFileModifyDate() );
  183.         CPPUNIT_ASSERT_NO_THROW( exist.setFileModifyDate( &fileTime ) );
  184.         FileStatus notExist( mFileNameNotExist );
  185.         CPPUNIT_ASSERT_THROW( notExist.getFileModifyDate(), FileStatusError );
  186.         CPPUNIT_ASSERT_THROW( notExist.setFileModifyDate( &fileTime ), FileStatusError );
  187.     }
  188.     void testFileModifyDateEqual()
  189.     {
  190.         FILETIME fileTime;
  191.         GetSystemTimeAsFileTime( &fileTime );
  192.         FileStatus exist( mFileNameExist );
  193.         CPPUNIT_ASSERT_NO_THROW( exist.setFileModifyDate( &fileTime ) );
  194.         FILETIME get = exist.getFileModifyDate();
  195.         // 这里 FILETIME 没有定义 operator==,所以不能直接使用 CPPUNIT_ASSERT_EQUAL
  196.         CPPUNIT_ASSERT( CompareFileTime( &get, &fileTime ) == 0 );
  197.     }
  198. };

  199. 接着我们编写一个FileStatus类的骨架,使得这段测试代码可以被编译通过。

  200. class FileStatusError
  201. {};

  202. class FileStatus
  203. {
  204. public:
  205.     FileStatus(const std::string& fileName)
  206.     {}
  207.     DWORD getFileSize() const
  208.     {
  209.         return 0;
  210.     }
  211.     bool fileExist() const
  212.     {
  213.         return false;
  214.     }
  215.     void setFileModifyDate( const FILETIME* )
  216.     {
  217.     }
  218.     FILETIME getFileModifyDate() const
  219.     {
  220.         return FILETIME();
  221.     }
  222.     std::string getFileName() const
  223.     {
  224.         return "";
  225.     }
  226. };

  227. 下面给出完整的程序:

  228. // UnitTest.cpp : Defines the entry point for the console application.
  229. //

  230. #include "CppUnit/TestCase.h"
  231. #include "CppUnit/TestResult.h"
  232. #include "CppUnit/TextOutputter.h"
  233. #include "CppUnit/TestResultCollector.h"
  234. #include "CppUnit/TestCaller.h"
  235. #include "CppUnit/extensions/HelperMacros.h"

  236. #include <string>;
  237. #include <iostream>;
  238. #include <exception>;
  239. #include <windows.h>;

  240. class FileStatusError
  241. {};

  242. class FileStatus
  243. {
  244. public:
  245.     FileStatus(const std::string& fileName)
  246.     {}
  247.     DWORD getFileSize() const
  248.     {
  249.         return 0;
  250.     }
  251.     bool fileExist() const
  252.     {
  253.         return false;
  254.     }
  255.     void setFileModifyDate( const FILETIME* )
  256.     {
  257.     }
  258.     FILETIME getFileModifyDate() const
  259.     {
  260.         return FILETIME();
  261.     }
  262.     std::string getFileName() const
  263.     {
  264.         return "";
  265.     }
  266. };

  267. class MyTestCase:public CPPUNIT_NS::TestFixture
  268. {
  269.     std::string mFileNameExist;
  270.     std::string mFileNameNotExist;
  271.     std::string mTestFolder;
  272.     enum DUMMY
  273.     {
  274.         FILE_SIZE = 1011
  275.     };
  276. public:
  277.     virtual void setUp()
  278.     {
  279.         mTestFolder = "c:justfortest";
  280.         mFileNameExist = mTestFolder + "exist.dat";
  281.         mFileNameNotExist = mTestFolder + "notexist.dat";
  282.         if( GetFileAttributes( mTestFolder.c_str() ) != INVALID_FILE_ATTRIBUTES )
  283.             throw std::exception( "test folder already exists" );
  284.         if( ! CreateDirectory( mTestFolder.c_str() ,NULL ) )
  285.             throw std::exception( "cannot create folder" );
  286.         HANDLE file = CreateFile( mFileNameExist.c_str(), GENERIC_READ | GENERIC_WRITE,
  287.             0, NULL, CREATE_NEW, 0, NULL );
  288.         if( file == INVALID_HANDLE_VALUE )
  289.             throw std::exception( "cannot create file" );
  290.         char buffer[FILE_SIZE];
  291.         DWORD bytesWritten;
  292.         if( !WriteFile( file, buffer, FILE_SIZE, &bytesWritten, NULL ) ||
  293.             bytesWritten != FILE_SIZE )
  294.         {
  295.             CloseHandle( file );
  296.             throw std::exception( "cannot write file" );
  297.         }
  298.         CloseHandle( file );
  299.     }
  300.     virtual void tearDown()
  301.     {
  302.         if( ! DeleteFile( mFileNameExist.c_str() ) )
  303.             throw std::exception( "cannot delete file" );
  304.         if( ! RemoveDirectory( mTestFolder.c_str() ) )
  305.             throw std::exception( "cannot remove folder" );
  306.     }
  307.     void testCtorAndGetName()
  308.     {
  309.         FileStatus status( mFileNameExist );
  310.         CPPUNIT_ASSERT_EQUAL( status.getFileName(), mFileNameExist );
  311.     }
  312.     void testGetFileSize()
  313.     {
  314.         FileStatus exist( mFileNameExist );
  315.         CPPUNIT_ASSERT_EQUAL( exist.getFileSize(), (DWORD)FILE_SIZE );
  316.         FileStatus notExist( mFileNameNotExist );
  317.         CPPUNIT_ASSERT_THROW( notExist.getFileSize(), FileStatusError );
  318.     }
  319.     void testFileExist()
  320.     {
  321.         FileStatus exist( mFileNameExist );
  322.         CPPUNIT_ASSERT( exist.fileExist() );
  323.         FileStatus notExist( mFileNameNotExist );
  324.         CPPUNIT_ASSERT( ! notExist.fileExist() );
  325.     }
  326.     void testFileModifyDateBasic()
  327.     {
  328.         FILETIME fileTime;
  329.         GetSystemTimeAsFileTime( &fileTime );
  330.         FileStatus exist( mFileNameExist );
  331.         CPPUNIT_ASSERT_NO_THROW( exist.getFileModifyDate() );
  332.         CPPUNIT_ASSERT_NO_THROW( exist.setFileModifyDate( &fileTime ) );
  333.         FileStatus notExist( mFileNameNotExist );
  334.         CPPUNIT_ASSERT_THROW( notExist.getFileModifyDate(), FileStatusError );
  335.         CPPUNIT_ASSERT_THROW( notExist.setFileModifyDate( &fileTime ), FileStatusError );
  336.     }
  337.     void testFileModifyDateEqual()
  338.     {
  339.         FILETIME fileTime;
  340.         GetSystemTimeAsFileTime( &fileTime );
  341.         FileStatus exist( mFileNameExist );
  342.         CPPUNIT_ASSERT_NO_THROW( exist.setFileModifyDate( &fileTime ) );
  343.         FILETIME get = exist.getFileModifyDate();
  344.         CPPUNIT_ASSERT( CompareFileTime( &get, &fileTime ) == 0 );
  345.     }
  346. };

  347. int main()
  348. {
  349.     CPPUNIT_NS::TestResult r;
  350.     CPPUNIT_NS::TestResultCollector result;
  351.     r.addListener( &result );
  352.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase1( "testCtorAndGetName", MyTestCase::testCtorAndGetName );
  353.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase2( "testGetFileSize", MyTestCase::testGetFileSize );
  354.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase3( "testFileExist", MyTestCase::testFileExist );
  355.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase4( "testFileModifyDateBasic", MyTestCase::testFileModifyDateBasic );
  356.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase5( "testFileModifyDateEqual", MyTestCase::testFileModifyDateEqual );
  357.     testCase1.run( &r );
  358.     testCase2.run( &r );
  359.     testCase3.run( &r );
  360.     testCase4.run( &r );
  361.     testCase5.run( &r );
  362.     CPPUNIT_NS::TextOutputter out( &result, std::cout );
  363.     out.write();
  364.     return 0;
  365. }

  366. 这里的TestCaller可以把从TestFixture派生而来的类的成员函数转化为一个TestCase。这段代码可以编译通过,运行后一共进行了5个测试,完全失败。这是我们意料之中的结果,因此我们进一步实现我们的功能,完成后的代码为:

  367. // UnitTest.cpp : Defines the entry point for the console application.
  368. //

  369. #include "CppUnit/TestCase.h"
  370. #include "CppUnit/TestResult.h"
  371. #include "CppUnit/TextOutputter.h"
  372. #include "CppUnit/TestResultCollector.h"
  373. #include "CppUnit/TestCaller.h"
  374. #include "CppUnit/extensions/HelperMacros.h"

  375. #include <string>;
  376. #include <iostream>;
  377. #include <exception>;
  378. #include <windows.h>;

  379. class FileStatusError
  380. {};

  381. class FileStatus
  382. {
  383.     std::string mFileName;
  384. public:
  385.     FileStatus(const std::string& fileName):mFileName( fileName )
  386.     {}
  387.     DWORD getFileSize() const
  388.     {
  389.         DWORD fileSize = INVALID_FILE_SIZE;
  390.         HANDLE file = CreateFile( mFileName.c_str(), GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
  391.             NULL, OPEN_EXISTING, 0, NULL );
  392.         if( file != INVALID_HANDLE_VALUE )
  393.         {
  394.             fileSize = GetFileSize( file, NULL );
  395.             CloseHandle( file );
  396.         }
  397.         if( fileSize == INVALID_FILE_SIZE )
  398.             throw FileStatusError();
  399.         return fileSize;
  400.     }
  401.     bool fileExist() const
  402.     {
  403.         return GetFileAttributes( mFileName.c_str() ) != INVALID_FILE_ATTRIBUTES;
  404.     }
  405.     void setFileModifyDate( const FILETIME* fileTime )
  406.     {
  407.         BOOL result = FALSE;
  408.         HANDLE file = CreateFile( mFileName.c_str(), GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
  409.             NULL, OPEN_EXISTING, 0, NULL );
  410.         if( file != INVALID_HANDLE_VALUE )
  411.         {
  412.             result = SetFileTime( file, NULL, NULL, fileTime );
  413.             int i = GetLastError();
  414.             CloseHandle( file );
  415.         }
  416.         if( ! result )
  417.             throw FileStatusError();
  418.     }
  419.     FILETIME getFileModifyDate() const
  420.     {
  421.         FILETIME time;
  422.         BOOL result = FALSE;
  423.         HANDLE file = CreateFile( mFileName.c_str(), GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
  424.             NULL, OPEN_EXISTING, 0, NULL );
  425.         if( file != INVALID_HANDLE_VALUE )
  426.         {
  427.             result = GetFileTime( file, NULL, NULL, &time );
  428.             CloseHandle( file );
  429.         }
  430.         if( ! result )
  431.             throw FileStatusError();
  432.         return time;
  433.     }
  434.     std::string getFileName() const
  435.     {
  436.         return mFileName;
  437.     }
  438. };

  439. class MyTestCase:public CPPUNIT_NS::TestFixture
  440. {
  441.     std::string mFileNameExist;
  442.     std::string mFileNameNotExist;
  443.     std::string mTestFolder;
  444.     enum DUMMY
  445.     {
  446.         FILE_SIZE = 1011
  447.     };
  448. public:
  449.     virtual void setUp()
  450.     {
  451.         mTestFolder = "c:justfortest";
  452.         mFileNameExist = mTestFolder + "exist.dat";
  453.         mFileNameNotExist = mTestFolder + "notexist.dat";
  454.         if( GetFileAttributes( mTestFolder.c_str() ) != INVALID_FILE_ATTRIBUTES )
  455.             throw std::exception( "test folder already exists" );
  456.         if( ! CreateDirectory( mTestFolder.c_str() ,NULL ) )
  457.             throw std::exception( "cannot create folder" );
  458.         HANDLE file = CreateFile( mFileNameExist.c_str(), GENERIC_READ | GENERIC_WRITE,
  459.             0, NULL, CREATE_NEW, 0, NULL );
  460.         if( file == INVALID_HANDLE_VALUE )
  461.             throw std::exception( "cannot create file" );
  462.         char buffer[FILE_SIZE];
  463.         DWORD bytesWritten;
  464.         if( !WriteFile( file, buffer, FILE_SIZE, &bytesWritten, NULL ) ||
  465.             bytesWritten != FILE_SIZE )
  466.         {
  467.             CloseHandle( file );
  468.             throw std::exception( "cannot write file" );
  469.         }
  470.         CloseHandle( file );
  471.     }
  472.     virtual void tearDown()
  473.     {
  474.         if( ! DeleteFile( mFileNameExist.c_str() ) )
  475.             throw std::exception( "cannot delete file" );
  476.         if( ! RemoveDirectory( mTestFolder.c_str() ) )
  477.             throw std::exception( "cannot remove folder" );
  478.     }
  479.     void testCtorAndGetName()
  480.     {
  481.         FileStatus status( mFileNameExist );
  482.         CPPUNIT_ASSERT_EQUAL( status.getFileName(), mFileNameExist );
  483.     }
  484.     void testGetFileSize()
  485.     {
  486.         FileStatus exist( mFileNameExist );
  487.         CPPUNIT_ASSERT_EQUAL( exist.getFileSize(), (DWORD)FILE_SIZE );
  488.         FileStatus notExist( mFileNameNotExist );
  489.         CPPUNIT_ASSERT_THROW( notExist.getFileSize(), FileStatusError );
  490.     }
  491.     void testFileExist()
  492.     {
  493.         FileStatus exist( mFileNameExist );
  494.         CPPUNIT_ASSERT( exist.fileExist() );
  495.         FileStatus notExist( mFileNameNotExist );
  496.         CPPUNIT_ASSERT( ! notExist.fileExist() );
  497.     }
  498.     void testFileModifyDateBasic()
  499.     {
  500.         FILETIME fileTime;
  501.         GetSystemTimeAsFileTime( &fileTime );
  502.         FileStatus exist( mFileNameExist );
  503.         CPPUNIT_ASSERT_NO_THROW( exist.getFileModifyDate() );
  504.         CPPUNIT_ASSERT_NO_THROW( exist.setFileModifyDate( &fileTime ) );
  505.         FileStatus notExist( mFileNameNotExist );
  506.         CPPUNIT_ASSERT_THROW( exist.getFileModifyDate(), FileStatusError );
  507.         CPPUNIT_ASSERT_THROW( exist.setFileModifyDate( &fileTime ), FileStatusError );
  508.     }
  509.     void testFileModifyDateEqual()
  510.     {
  511.         FILETIME fileTime;
  512.         GetSystemTimeAsFileTime( &fileTime );
  513.         FileStatus exist( mFileNameExist );
  514.         CPPUNIT_ASSERT_NO_THROW( exist.setFileModifyDate( &fileTime ) );
  515.         FILETIME get = exist.getFileModifyDate();
  516.         CPPUNIT_ASSERT( CompareFileTime( &get, &fileTime ) == 0 );
  517.     }
  518. };

  519. int main()
  520. {
  521.     CPPUNIT_NS::TestResult r;
  522.     CPPUNIT_NS::TestResultCollector result;
  523.     r.addListener( &result );
  524.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase1( "testCtorAndGetName", MyTestCase::testCtorAndGetName );
  525.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase2( "testGetFileSize", MyTestCase::testGetFileSize );
  526.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase3( "testFileExist", MyTestCase::testFileExist );
  527.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase4( "testFileModifyDateBasic", MyTestCase::testFileModifyDateBasic );
  528.     CPPUNIT_NS::TestCaller<MyTestCase>; testCase5( "testFileModifyDateEqual", MyTestCase::testFileModifyDateEqual );
  529.     testCase1.run( &r );
  530.     testCase2.run( &r );
  531.     testCase3.run( &r );
  532.     testCase4.run( &r );
  533.     testCase5.run( &r );
  534.     CPPUNIT_NS::TextOutputter out( &result, std::cout );
  535.     out.write();
  536.     return 0;
  537. }

  538. 运行测试,发现两个错误:

  539. 1) test: testFileModifyDateBasic (F) line: 140 c:unittestunittest.cpp
  540. assertion failed
  541. - Unexpected exception caught


  542. 2) test: testFileModifyDateEqual (F) line: 150 c:unittestunittest.cpp
  543. assertion failed
  544. - Unexpected exception caught

  545. 调试发现,原来我的setFileModifyDate中,文件的打开方式为GENERIC_READ,只有读权限,自然不能写。把这个替换为 GENERIC_READ | GENERIC_WRITE,再运行,一切OK!
  546. 其实上面的测试以及实现代码还有一些问题,譬如说,测试用例分得还不够细,有些测试可以继续细分为几个函数,这样一旦遇到测试错误,你可以很精确的知道错误的位置(因为抛出异常错误是不能知道行数的)。不过用来说明怎样进行测试驱动开发应该是足够了。

  547. VI. 测试集

  548. CPPUNIT_NS::TestCaller<MyTestCase>; testCase1( "testCtorAndGetName", MyTestCase::testCtorAndGetName );
  549. CPPUNIT_NS::TestCaller<MyTestCase>; testCase2( "testGetFileSize", MyTestCase::testGetFileSize );
  550. CPPUNIT_NS::TestCaller<MyTestCase>; testCase3( "testFileExist", MyTestCase::testFileExist );
  551. CPPUNIT_NS::TestCaller<MyTestCase>; testCase4( "testFileModifyDateBasic", MyTestCase::testFileModifyDateBasic );
  552. CPPUNIT_NS::TestCaller<MyTestCase>; testCase5( "testFileModifyDateEqual", MyTestCase::testFileModifyDateEqual );

  553. 这段代码虽然还不够触目惊心,但是让程序员来做这个,的确是太浪费了。CppUnit为我们提供了一些机制来避免这样的浪费。我们可以修改我们的测试代码为:

  554. class MyTestCase:public CPPUNIT_NS::TestFixture
  555. {
  556.     std::string mFileNameExist;
  557.     std::string mFileNameNotExist;
  558.     std::string mTestFolder;
  559.     enum DUMMY
  560.     {
  561.         FILE_SIZE = 1011
  562.     };
  563.     CPPUNIT_TEST_SUITE( MyTestCase );
  564.         CPPUNIT_TEST( testCtorAndGetName );
  565.         CPPUNIT_TEST( testGetFileSize );
  566.         CPPUNIT_TEST( testFileExist );
  567.         CPPUNIT_TEST( testFileModifyDateBasic );
  568.         CPPUNIT_TEST( testFileModifyDateEqual );
  569.     CPPUNIT_TEST_SUITE_END();
  570. public:
  571.     virtual void setUp()
  572.     {
  573.         mTestFolder = "c:justfortest";
  574.         mFileNameExist = mTestFolder + "exist.dat";
  575.         mFileNameNotExist = mTestFolder + "notexist.dat";
  576.         if( GetFileAttributes( mTestFolder.c_str() ) != INVALID_FILE_ATTRIBUTES )
  577.             throw std::exception( "test folder already exists" );
  578.         if( ! CreateDirectory( mTestFolder.c_str() ,NULL ) )
  579.             throw std::exception( "cannot create folder" );
  580.         HANDLE file = CreateFile( mFileNameExist.c_str(), GENERIC_READ | GENERIC_WRITE,
  581.             0, NULL, CREATE_NEW, 0, NULL );
  582.         if( file == INVALID_HANDLE_VALUE )
  583.             throw std::exception( "cannot create file" );
  584.         char buffer[FILE_SIZE];
  585.         DWORD bytesWritten;
  586.         if( !WriteFile( file, buffer, FILE_SIZE, &bytesWritten, NULL ) ||
  587.             bytesWritten != FILE_SIZE )
  588.         {
  589.             CloseHandle( file );
  590.             throw std::exception( "cannot write file" );
  591.         }
  592.         CloseHandle( file );
  593.     }
  594.     virtual void tearDown()
  595.     {
  596.         if( ! DeleteFile( mFileNameExist.c_str() ) )
  597.             throw std::exception( "cannot delete file" );
  598.         if( ! RemoveDirectory( mTestFolder.c_str() ) )
  599.             throw std::exception( "cannot remove folder" );
  600.     }
  601.     void testCtorAndGetName()
  602.     {
  603.         FileStatus status( mFileNameExist );
  604.         CPPUNIT_ASSERT_EQUAL( status.getFileName(), mFileNameExist );
  605.     }
  606.     void testGetFileSize()
  607.     {
  608.         FileStatus exist( mFileNameExist );
  609.         CPPUNIT_ASSERT_EQUAL( exist.getFileSize(), (DWORD)FILE_SIZE );
  610.         FileStatus notExist( mFileNameNotExist );
  611.         CPPUNIT_ASSERT_THROW( notExist.getFileSize(), FileStatusError );
  612.     }
  613.     void testFileExist()
  614.     {
  615.         FileStatus exist( mFileNameExist );
  616.         CPPUNIT_ASSERT( exist.fileExist() );
  617.         FileStatus notExist( mFileNameNotExist );
  618.         CPPUNIT_ASSERT( ! notExist.fileExist() );
  619.     }
  620.     void testFileModifyDateBasic()
  621.     {
  622.         FILETIME fileTime;
  623.         GetSystemTimeAsFileTime( &fileTime );
  624.         FileStatus exist( mFileNameExist );
  625.         CPPUNIT_ASSERT_NO_THROW( exist.getFileModifyDate() );
  626.         CPPUNIT_ASSERT_NO_THROW( exist.setFileModifyDate( &fileTime ) );
  627.         FileStatus notExist( mFileNameNotExist );
  628.         CPPUNIT_ASSERT_THROW( notExist.getFileModifyDate(), FileStatusError );
  629.         CPPUNIT_ASSERT_THROW( notExist.setFileModifyDate( &fileTime ), FileStatusError );
  630.     }
  631.     void testFileModifyDateEqual()
  632.     {
  633.         FILETIME fileTime;
  634.         GetSystemTimeAsFileTime( &fileTime );
  635.         FileStatus exist( mFileNameExist );
  636.         CPPUNIT_ASSERT_NO_THROW( exist.setFileModifyDate( &fileTime ) );
  637.         FILETIME get = exist.getFileModifyDate();
  638.         CPPUNIT_ASSERT( CompareFileTime( &get, &fileTime ) == 0 );
  639.     }
  640. };

  641. CPPUNIT_TEST_SUITE_REGISTRATION( MyTestCase );

  642. int main()
  643. {
  644.     CPPUNIT_NS::TestResult r;
  645.     CPPUNIT_NS::TestResultCollector result;
  646.     r.addListener( &result );
  647.     CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest()->;run( &r );
  648.     CPPUNIT_NS::TextOutputter out( &result, std::cout );
  649.     out.write();
  650.     return 0;
  651. }

  652. 这里的

  653.     CPPUNIT_TEST_SUITE( MyTestCase );
  654.         CPPUNIT_TEST( testCtorAndGetName );
  655.         CPPUNIT_TEST( testGetFileSize );
  656.         CPPUNIT_TEST( testFileExist );
  657.         CPPUNIT_TEST( testFileModifyDateBasic );
  658.         CPPUNIT_TEST( testFileModifyDateEqual );
  659.     CPPUNIT_TEST_SUITE_END();

  660. 最重要的内容其实是定义了一个函数suite,这个函数返回了一个包含了所有CPPUNIT_TEST定义的测试用例的一个测试集。CPPUNIT_TEST_SUITE_REGISTRATION通过静态注册把这个测试集注册到全局的测试树中,最后通过CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest()生成一个包含所有测试用例的测试并且运行。具体的内部运行机制请参考CppUnit代码简介。

  661. VII. 小节

  662. 这篇文章简要的介绍了CppUnit和测试驱动开发的基本概念,虽然CppUnit还有很多别的功能,譬如说基于GUI的测试环境以及和编译器Post Build相连接的测试输出,以及对于测试系统的扩展等,但是基本上掌握了本文中的内容就可以进行测试驱动的开发了。
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP