File: qtestlib-tutorial2.html

package info (click to toggle)
qt4-x11 4%3A4.8.2%2Bdfsg-11
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 701,696 kB
  • sloc: cpp: 2,686,179; ansic: 375,485; python: 25,859; sh: 19,349; xml: 17,091; perl: 14,765; yacc: 5,383; asm: 5,038; makefile: 1,259; lex: 555; ruby: 526; objc: 347; cs: 112; pascal: 112; php: 54; sed: 34
file content (132 lines) | stat: -rw-r--r-- 10,592 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qtestlib.qdoc -->
  <title>Qt 4.8: Chapter 2: Data Driven Testing</title>
  <link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
  <div class="content"> 
    <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
  </div>
  <div class="breadcrumb toolblock">
    <ul>
      <li class="first"><a href="index.html">Home</a></li>
      <!--  Breadcrumbs go here -->
<li><a href="all-examples.html">Examples</a></li>
<li>Chapter 2: Data Driven Testing</li>
    </ul>
  </div>
</div>
<div class="content mainContent">
  <link rel="prev" href="qtestlib-tutorial1.html" />
  <link rel="next" href="qtestlib-tutorial3.html" />
<p class="naviNextPrevious headerNavi">
<a class="prevPage" href="qtestlib-tutorial1.html">Chapter 1</a>
<a class="nextPage" href="qtestlib-tutorial3.html">Chapter 3</a>
</p><p/>
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#writing-the-data-function">Writing the Data Function</a></li>
<li class="level1"><a href="#rewriting-the-test-function">Rewriting the Test Function</a></li>
</ul>
</div>
<h1 class="title">Chapter 2: Data Driven Testing</h1>
<span class="subtitle"></span>
<!-- $$$qtestlib/tutorial2-description -->
<div class="descr"> <a name="details"></a>
<p>Files:</p>
<ul>
<li><a href="qtestlib-tutorial2-testqstring-cpp.html">qtestlib/tutorial2/testqstring.cpp</a></li>
<li><a href="qtestlib-tutorial2-tutorial2-pro.html">qtestlib/tutorial2/tutorial2.pro</a></li>
</ul>
<p>In this chapter we will demonstrate how to execute a test multiple times with different test data.</p>
<p>So far, we have hard coded the data we wanted to test into our test function. If we add more test data, the function might look like this:</p>
<pre class="cpp"> <a href="qtest.html#QCOMPARE">QCOMPARE</a>(<span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;hello&quot;</span>)<span class="operator">.</span>toUpper()<span class="operator">,</span> <span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;HELLO&quot;</span>));
 <a href="qtest.html#QCOMPARE">QCOMPARE</a>(<span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;Hello&quot;</span>)<span class="operator">.</span>toUpper()<span class="operator">,</span> <span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;HELLO&quot;</span>));
 <a href="qtest.html#QCOMPARE">QCOMPARE</a>(<span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;HellO&quot;</span>)<span class="operator">.</span>toUpper()<span class="operator">,</span> <span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;HELLO&quot;</span>));
 <a href="qtest.html#QCOMPARE">QCOMPARE</a>(<span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;HELLO&quot;</span>)<span class="operator">.</span>toUpper()<span class="operator">,</span> <span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;HELLO&quot;</span>));</pre>
<p>To prevent that the function ends up being cluttered by repetitive code, <a href="qtestlib-manual.html#qtestlib">QTestLib</a> supports adding test data to a test function. All we need is to add another private slot to our test class:</p>
<pre class="cpp"> <span class="keyword">class</span> TestQString: <span class="keyword">public</span> <span class="type"><a href="qobject.html">QObject</a></span>
 {
     Q_OBJECT

 <span class="keyword">private</span> <span class="keyword">slots</span>:
     <span class="type">void</span> toUpper_data();
     <span class="type">void</span> toUpper();
 };</pre>
<a name="writing-the-data-function"></a>
<h2>Writing the Data Function</h2>
<p>A test function's associated data function carries the same name, appended by <tt>_data</tt>. Our data function looks like this:</p>
<pre class="cpp"> <span class="type">void</span> TestQString<span class="operator">::</span>toUpper_data()
 {
     <span class="type"><a href="qtest.html">QTest</a></span><span class="operator">::</span>addColumn<span class="operator">&lt;</span><span class="type"><a href="qstring.html">QString</a></span><span class="operator">&gt;</span>(<span class="string">&quot;string&quot;</span>);
     <span class="type"><a href="qtest.html">QTest</a></span><span class="operator">::</span>addColumn<span class="operator">&lt;</span><span class="type"><a href="qstring.html">QString</a></span><span class="operator">&gt;</span>(<span class="string">&quot;result&quot;</span>);

     <span class="type"><a href="qtest.html">QTest</a></span><span class="operator">::</span>newRow(<span class="string">&quot;all lower&quot;</span>) <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;hello&quot;</span> <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;HELLO&quot;</span>;
     <span class="type"><a href="qtest.html">QTest</a></span><span class="operator">::</span>newRow(<span class="string">&quot;mixed&quot;</span>)     <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;Hello&quot;</span> <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;HELLO&quot;</span>;
     <span class="type"><a href="qtest.html">QTest</a></span><span class="operator">::</span>newRow(<span class="string">&quot;all upper&quot;</span>) <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;HELLO&quot;</span> <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;HELLO&quot;</span>;
 }</pre>
<p>First, we define the two elements of our test table using the <a href="qtest.html#addColumn">QTest::addColumn</a>() function: A test string, and the expected result of applying the <a href="qstring.html#toUpper">QString::toUpper</a>() function to that string.</p>
<p>Then we add some data to the table using the <a href="qtest.html#newRow">QTest::newRow</a>() function. Each set of data will become a separate row in the test table.</p>
<p><a href="qtest.html#newRow">QTest::newRow</a>() takes one argument: A name that will be associated with the data set. If the test fails, the name will be used in the test log, referencing the failed data. Then we stream the data set into the new table row: First an arbitrary string, and then the expected result of applying the <a href="qstring.html#toUpper">QString::toUpper</a>() function to that string.</p>
<p>You can think of the test data as a two-dimensional table. In our case, it has two columns called <tt>string</tt> and <tt>result</tt> and three rows. In addition a name as well as an index is associated with each row:</p>
<table class="generic">
<thead><tr class="qt-style"><th >index</th><th >name</th><th >string</th><th >result</th></tr></thead>
<tr valign="top" class="odd"><td >0</td><td >all lower</td><td >&quot;hello&quot;</td><td >HELLO</td></tr>
<tr valign="top" class="even"><td >1</td><td >mixed</td><td >&quot;Hello&quot;</td><td >HELLO</td></tr>
<tr valign="top" class="odd"><td >2</td><td >all upper</td><td >&quot;HELLO&quot;</td><td >HELLO</td></tr>
</table>
<a name="rewriting-the-test-function"></a>
<h2>Rewriting the Test Function</h2>
<p>Our test function can now be rewritten:</p>
<pre class="cpp"> <span class="type">void</span> TestQString<span class="operator">::</span>toUpper()
 {
     QFETCH(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">,</span> string);
     QFETCH(<span class="type"><a href="qstring.html">QString</a></span><span class="operator">,</span> result);

     QCOMPARE(string<span class="operator">.</span>toUpper()<span class="operator">,</span> result);
 }</pre>
<p>The TestQString::toUpper() function will be executed three times, once for each entry in the test table that we created in the associated TestQString::toUpper_data() function.</p>
<p>First, we fetch the two elements of the data set using the <a href="qtest.html#QFETCH">QFETCH</a>() macro. <a href="qtest.html#QFETCH">QFETCH</a>() takes two arguments: The data type of the element and the element name. Then we perform the test using the <a href="qtest.html#QCOMPARE">QCOMPARE</a>() macro.</p>
<p>This approach makes it very easy to add new data to the test without modifying the test itself.</p>
<p>And again, to make our test case a stand-alone executable, the following two lines are needed:</p>
<pre class="cpp"> <a href="qtest.html#QTEST_MAIN">QTEST_MAIN</a>(TestQString)
 <span class="preprocessor">#include &quot;testqstring.moc&quot;</span></pre>
<p>As before, the <a href="qtest.html#QTEST_MAIN">QTEST_MAIN</a>() macro expands to a simple main() method that runs all the test functions, and since both the declaration and the implementation of our test class are in a .cpp file, we also need to include the generated moc file to make Qt's introspection work.</p>
</div>
<!-- @@@qtestlib/tutorial2 -->
<p class="naviNextPrevious footerNavi">
<a class="prevPage" href="qtestlib-tutorial1.html">Chapter 1</a>
<a class="nextPage" href="qtestlib-tutorial3.html">Chapter 3</a>
</p>
  <div class="ft">
    <span></span>
  </div>
</div> 
<div class="footer">
    <p>
      <acronym title="Copyright">&copy;</acronym> 2012 Nokia Corporation and/or its
      subsidiaries. Documentation contributions included herein are the copyrights of
      their respective owners.</p>
    <br />
    <p>
      The documentation provided herein is licensed under the terms of the
      <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
      License version 1.3</a> as published by the Free Software Foundation.</p>
    <p>
      Documentation sources may be obtained from <a href="http://www.qt-project.org">
      www.qt-project.org</a>.</p>
    <br />
    <p>
      Nokia, Qt and their respective logos are trademarks of Nokia Corporation 
      in Finland and/or other countries worldwide. All other trademarks are property
      of their respective owners. <a title="Privacy Policy"
      href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
</body>
</html>