QTS单元测试框架

打印 上一主题 下一主题

主题 962|帖子 962|积分 2888

1.QTS单元测试框架介绍
目前QTS项目采用C/C++语言,而CppUnit就是xUnit家族中的一员,它是一个专门面向C++的单元测试框架。因此,QTS采用CppUnit测试框架是比力抱负的选择。
CppUnit按照条理来管理测试,最底层的就是TestCase,当有了几个TestCase以后,可以将它们组织成TestFixture。在TestFixture中,可以创建被测试的类的实例,并编写TestCase对类实例举行测试,多个TestFixture可以通过TestSuite来对测试举行管理。
通过派生TestFixture类来计划某个类或某组相干功能的单元测试,Fixture界说公共函数setUp()初始化每个成员变量,tearDown()来释放setUp中使用的资源。在每个测试中,CPPUNIT_ASSERT(bool)来判定某个函数和表达式的正确性,在派生类的声明中,通过CPPUNIT_TEST来增加对应的测试函数,通过CPPUNIT_TEST_SUITE和CPPUNIT_TEST_SUITE_END来分装所有的测试函数,规定这些测试函数执行的序次。
 2.QTS单元测试框架搭建
2.1CppUnit介绍
A、CppUnit源代码构成
CppUnit测试框架的源代码可以到 http://sourceforge.net/projects/cppunit/ 上下载。下载解压后,你将看到如下文件夹:

主要的文件夹有:
· doc: CppUnit的说明文档。别的,代码的根目录,还有三个说明文档,分别是INSTALL,INSTALL-unix,INSTALL-WIN32.txt。
· examples: CpppUnit提供的例子,也是对CppUnit自身的测试,通过它可以学习如何使用CppUnit测试框架举行开发。
· include: CppUnit头文件。
· src: CppUnit源代码目录。
B、初识CppUnit测试环境
解压源代码包后, CppUnit结构如下:
    1、进入example文件夹,用VC打开examples.dsw。我们先来看看CppUnit自带的测试例子。这些例子都是针对CppUnit自身的单元测试集,一方面这是CppUnit作者开发CppUnit框架过程中写的测试用例,另一方面,我们可以通过这些例子来学习如安在我们自己的工程中添加测试用例。

    2、将CppUnitTestApp工程设为Active Project(Win32 Debug),编译后运行,则可以看到CppUnit的基于GUI方式举行单元测试TestRunner的界面。点击“Run”,将会看到如图二所示界面:
 

这是一个针对CppUnit的单元测试结果,它表明刚才我们做了11个测试,全部通过。
点击“Browse”,我们还可以选择想要举行的单元测试,如图三:

2.2 CppUnit单元测试环境搭建
第一步:编译CppUnit 静态库文件*.lib和动态库文件*.dll:

  • CppUnit的lib和dll
 CppUnit为我们提供了两套框架库,一个为静态的lib,一个为动态的dll。
  cppunit project:静态lib
  cppunit_dll project:动态dll和lib
在开发中我们可以根据现实环境作出选择。进入src文件夹,打开CppUnitLibraries.dsw。分别编译这两个project,输出位置均为lib文件夹。
在开发中我们可以根据现实环境作出选择。进入src文件夹,打开CppUnitLibraries.dsw。在菜单上选择Build->Batch Build..->Rebuild All,输出位置均为lib文件夹。
为了方便开发,我们把这些编译出来的lib和dll拷贝到我们自己创建的一个文件夹中(当然你也可以不这么做),例如F:\Mytest\lib\,同时我们也把CppUnit源代码中include文件夹copy到我们自己的include文件夹下。   
第二步:创建基于对话框的工程
打开VC,在File菜单项下选择New,创建基于dialog的工程。工程名Project name、存放位置Location可以自己决定,其他选项如下:

按OK确认后,进入如下界面。选择Dialog based选项,按Finish按钮后,一个空的基于对话框的工程就创建起来了。

第三步:屏蔽工程对话框
在工程CouterTest.cpp文件中(本指南中为该文件名,现实学习时根据自己的工程文件名而变),找到BOOL CCounterTestApp::InitInstance()方法,将如下附带代码注释掉:也就是代码中带*的部门
  1. BOOL CCounterTestApp::InitInstance()
  2. {
  3.         AfxEnableControlContainer();
  4.         // Standard initialization
  5.         // If you are not using these features and wish to reduce the size
  6.         //  of your final executable, you should remove from the following
  7.         //  the specific initialization routines you do not need.
  8. #ifdef _AFXDLL
  9.         Enable3dControls();                        // Call this when using MFC in a shared DLL
  10. #else
  11.         Enable3dControlsStatic();        // Call this when linking to MFC statically
  12. #endif
  13.         /*
  14.         CCounterTestDlg dlg;
  15.         m_pMainWnd = &dlg;
  16.         int nResponse = dlg.DoModal();
  17.         if (nResponse == IDOK)
  18.         {
  19.                 // TODO: Place code here to handle when the dialog is
  20.                 //  dismissed with OK
  21.         }
  22.         else if (nResponse == IDCANCEL)
  23.         {
  24.                 // TODO: Place code here to handle when the dialog is
  25.                 //  dismissed with Cancel
  26.         }
  27.   */
  28.         // Since the dialog has been closed, return FALSE so that we exit the
  29.         //  application, rather than start the application's message pump.
  30.         return FALSE;
  31. }
复制代码
由于我们盼望这个Project运行后显示的是图2如许的CppUnit自带的界面,所以我们必要在Instance()中屏蔽掉原有的对话框(蓝色部门注释掉),代之以CppUnit的GUI。

第四步:实现CppUnit测试执行器,并将测试套添加到测试执行器中。
A、在BOOL CCounterTestApp::InitInstance()中,添加如下附加注释的代码:
  1. BOOL CCounterTestApp::InitInstance()
  2. {
  3.         AfxEnableControlContainer();
  4.         // Standard initialization
  5.         // If you are not using these features and wish to reduce the size
  6.         //  of your final executable, you should remove from the following
  7.         //  the specific initialization routines you do not need.
  8. #ifdef _AFXDLL
  9.         Enable3dControls();                        // Call this when using MFC in a shared DLL
  10. #else
  11.         Enable3dControlsStatic();        // Call this when linking to MFC statically
  12. #endif
  13.         //添加CppUnit的MFC类型的测试执行器
  14.         CppUnit::MfcUi::TestRunner runner;
  15.         //为被测试类(这里是CCounter)定义一个测试工厂(这里取名叫CounterTest):
  16.         CppUnit::TestFactoryRegistry &registry
  17. = CppUnit::TestFactoryRegistry::getRegistry("CounterTest");
  18.         //并将工厂添加到测试执行器中
  19. runner.addTest( registry.makeTest() );
  20.         //运行执行器,显示执行器GUI界面
  21.         runner.run();
  22.         /*
  23.         CCounterTestDlg dlg;
  24.         m_pMainWnd = &dlg;
  25.         int nResponse = dlg.DoModal();
  26.         if (nResponse == IDOK)
  27.         {
  28.                 // TODO: Place code here to handle when the dialog is
  29.                 //  dismissed with OK
  30.         }
  31.         else if (nResponse == IDCANCEL)
  32.         {
  33.                 // TODO: Place code here to handle when the dialog is
  34.                 //  dismissed with Cancel
  35.         }
  36.   */
  37.         // Since the dialog has been closed, return FALSE so that we exit the
  38.         //  application, rather than start the application's message pump.
  39.         return FALSE;
  40. }
复制代码
B、由于在BOOL CCounterTestApp::InitInstance()中引用了CppUnit的类,所以在文件开始处要添加如下头文件:
  1. #include <cppunit/extensions/TestFactoryRegistry.h>
  2. #include <cppunit/ui/mfc/TestRunner.h>
复制代码

第五步:添加被测对象CCounter。
将被测对象地点文件(CounterMod.h和CounterMod.cpp) 添加到工程中:

第六步:在工程中为被测对象CCounter编写测试类文件MyTest(可以自界说文件名):
按照下面示图加入测试类的*.h文件和*.cpp文件:




MyTest.h中的代码如下:
  1. #include "cppunit/extensions/HelperMacros.h"
  2. class IsCodeLineTest : public CppUnit::TestFixture {
  3.         // 声明一个TestSuite
  4.         CPPUNIT_TEST_SUITE( IsCodeLineTest);
  5.         // 添加测试用例到TestSuite, 定义新的测试用例需要在这儿声明一下
  6.         CPPUNIT_TEST( Test1 );
  7.         // TestSuite声明完成
  8.         CPPUNIT_TEST_SUITE_END();
  9.        
  10. public:
  11.         // 定义测试用例
  12.         void Test1 ();
  13.        
  14. };
复制代码

MyTest.cpp中的代码如下(留意头文件要做相应的修改):
  1. #include "stdafx.h"
  2. #include "MyTest.h"
  3. #include "CounterMod.h"
  4. // 把这个TestSuite注册到名字为"CounterTest"的工厂中
  5. CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( IsCodeLineTest,"CounterTest" );
  6. #define RET_OK 0
  7. #define RET_FAIL 1
  8. void IsCodeLineTest::Test1()
  9. {
  10.      //定义输入参数
  11.         int bIsComment;
  12.         CString  szFileLine;
  13.         //定义期望输出
  14.         int iOkReturn;
  15.         int iOkIsComment;
  16.         //定义测试实际输出
  17.         int iResult;
  18.        
  19.         CCounter m_counter;
  20.         //用例输入
  21.         szFileLine = "int a";
  22.         bIsComment = false;
  23.         //期望输出
  24.         iOkReturn = RET_OK;
  25.         iOkIsComment = false;
  26.         //驱动被测函数
  27.         iResult = m_counter.IsCodeLine(szFileLine,bIsComment);
  28.         //结果比较
  29.         CPPUNIT_ASSERT_EQUAL(iOkReturn,iResult);
  30.              CPPUNIT_ASSERT_EQUAL(iOkIsComment,bIsComment);
  31. }
复制代码
第七步:加入CppUnit 库文件:

把CppUnit相干的lib文件和dll文件(cppunitd.lib,cppunitd_dll.lib,testrunnerd.lib)加入到工程中:

第八步:设置头文件和lib库文件路径、打开RTTI开关、给dLL库设置环境变量:

  • 在VC的tools/options/directories/include files和library files中设置CppUnit include文件路径和lib文件路径:


在你的VC project中打开RTTI开关。具体位置Project Settings/C++/C++ Language:

C、为TestRunnerd.dll设置环境变量
   TestRunnerd.dll为我们提供了基于GUI的测试环境。为了让我们的测试程序能正确的调用它,必要把TestRunnerd.dll拷贝到你的工程路径下。或者最简单的方法是在操作体系的环境变量Path中添TestRunnerd.dll的路径,如许是最省事的。

第九步:编译执行。编译毗连成功后,运行测试,出现下面的界面,表现测试用例Test1运行成功.



免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

用多少眼泪才能让你相信

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表