Merge "DALi Version 2.0.1" into devel/master
[platform/core/uifw/dali-adaptor.git] / automated-tests / README.md
1 Testing environment   {#auto_testing}
2 ===================
3
4 The new test environment from Tizen is the Web-TCT test suite. This was written for testing web components, but can easily be used for testing Dali.
5
6 Each of the DALi repositories, **dali-core**, **dali-adaptor** and **dali-toolkit**, have their own test suites under the `automated-tests` folder. Within the src folder are a number of secondary folders - these correspond to 'API' tests  and internal (for desktop testing only)
7
8 Installation
9 ------------
10
11 There are usage instructions and installation instructions on the Tizen.org website [here](http://download.tizen.org/tct/2.2.1/Manual/Web_TCT_2.2.1_User_Guide_v1.0.pdf)
12
13 These are device specific instructions, however, installing the test suite will also provide the relevant packages for running tests on Ubuntu ( follow the first block of quickstart instructions below ).
14
15 If you are planning on running tests on device, then flash your handset with latest image, or turn off ssh: `set_usb_debug.sh --mtp-sdb` and plug it in, then follow the quickstart instructions repeated below.
16
17 Quickstart
18 ----------
19
20 For target or desktop testing:
21
22     cd ~/Packages
23     wget http://download.tizen.org/tct/2.2.1/2.2.1_r1/web-tct_2.2.1_r1.tar.gz
24     sudo tar xzf web-tct_2.2.1_r1.tar.gz
25     cd web-tct_2.2.1_r1/tools
26     sudo -E ./tct-config-host.sh
27
28
29 If you are planning on running tests on device, then plug in your freshly flashed device and run the following commands:
30
31     sudo apt-get install sdb
32     ./tct-config-device.sh
33
34 **NOTE:** After flashing a handset, you will need to run this step of the installation again.
35
36 Testing on desktop
37 ==================
38
39 Building libraries with coverage options
40 ----------------------------------------
41
42 Building dali adaptor:
43
44     cd dali-adaptor  # the location of your dali-adaptor repository
45     cd build/tizen
46     export CC=gcc
47     export CXX=g++
48     git clean -fxd . # Only do this in the build folder
49     CXXFLAGS='-g -O0 --coverage' LDFLAGS='--coverage' cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_BUILD_TYPE=Debug
50     make -j8 install
51
52 Note, you __must__ use a local build and not a distributed build, and you __must__ also build with debug enabled to allow *DALI_ASSERT_DEBUG* to trigger on wrong behaviour ( Which should always be a test case failure! )
53
54 Further note that, for the following, your gcov version must match the version of the compiler.
55
56 Building the tests
57 ------------------
58
59 Run the following commands:
60
61     cd automated-tests
62     ./build.sh
63
64 This will build dali-adaptor, dali-adaptor-internal and dali-platform-abstraction test sets.
65
66 Test sets can be built individually:
67
68     ./build.sh dali-adaptor
69
70 They can also be built without regenerating test case scripts (Useful for quicker rebuilds)
71
72     ./build.sh -n dali-adaptor
73
74 Or without cleaning down the build area (Useful for fast build/run/debug cycles)
75
76     ./build.sh -n -r dali-adaptor
77
78
79 Executing the tests
80 -------------------
81
82 To see a list of all of the options:
83
84     ./execute.sh -h
85
86 To execute tests, cd into automated-tests and run
87
88     ./execute.sh
89
90 This will execute dali and dali-internal test sets. Note that the output summary for the first will be printed before running the second.
91
92 By default the tests execute in parallel, which is faster but does not produce any test case output files.  Use this to execute the tests in series and log test output to stdout/err
93
94     ./execute.sh -S
95
96 To use test kit lite, (which is very slow),
97
98     ./execute.sh -s
99
100 To see the test kit lite results, copy the style folder from web-tct_2.2.1_r1/tools/tct-mgr/style into automated-tests and run
101
102     firefox --new-window summary.xml
103
104 To execute a subset of tests, you can run individual test sets, e.g.
105
106     ./execute.sh dali-adaptor
107
108 To get full coverage output (you need to first build dali libraries with
109 --coverage), run
110
111     ./coverage.sh
112
113 To check the coverage of your patch, (the build server uses its own copy
114 of these scripts), you can use
115
116     ./patch-coverage.pl -q [diff-spec]
117
118 to get a summary, or
119
120     ./patch-coverage.pl [diff-spec]
121
122 to get textual output, or
123
124     ./patch-coverage.pl -o out.html [diff-spec]
125
126 to get HTML output (used by build server).
127
128 diff-spec is any refspec accepted by git-diff. If it's left out, it creates
129 a refspec to the latest commit, or uses the index/working tree.
130
131
132 Testing on target
133 =================
134
135 To build for target, first build and install dali-core, dali-adaptor and dali-toolkit.
136
137 You will need to install libconfig-tiny-perl:
138
139 sudo apt-get install libconfig-tiny-perl
140
141 If you use a non-standard `GBS_ROOT` then you will need to edit the tcbuild script to match your configuration - change line 96 and add a -B option with your GBS-ROOT path (line 96 = `gbs build -A armv7l --spec core-$1-tests.spec --include-all --keep-packs` ).
142 To install on device from a non-standard GBS_ROOT, also modify line 28 (`RPM_DIR="$HOME/GBS-ROOT/local/repos/$PROFILE/armv7l/RPMS"`).
143
144 For Dali Adaptor, cd into automated-tests, and use:
145
146     sudo ./tcbuild build dali-adaptor
147     sudo ./tcbuild build dali-adaptor-internal
148     sudo ./tcbuild build dali-platform-abstraction
149     ./tcbuild install dali-adaptor
150     ./tcbuild install dali-adaptor-internal
151     ./tcbuild install dali-platform-abstraction
152
153 Ensure your handset's filesystem is writable:
154
155     sdb shell su -c "change-booting-mode.sh --update"
156
157 To execute tests, cd into automated-tests and run
158
159     tct-mgr
160
161 This will bring up the java test suite program. You should see the Plan pane with a list of all tests in. Select the tct-dali-core-tests. and you will be offered a dialog to choose a test plan: either create a new one or use temp.
162 Select dali test suite, and click Run, then "Create a new plan", and call it "Dali-Core" or some such. It will now run the dali-test suite.
163
164 You can find the output files under /opt/tct/manager/result/
165
166
167 Adding tests
168 ============
169
170 To Managed API
171 --------------
172
173 If you are adding test cases for new or existing managed API (CAPI), you need to add your changes to the src/dali mirror, and copy your change to the managed test suite in core-api. You need to inform HQ of your update.
174
175 For internal API
176 ----------------
177
178 If you are adding tests for internal API, then this will only work on desktop, and you should add your tests to the src/dali-adaptor-internal test suite.
179
180 General
181 -------
182
183 If you are adding test cases to existing files, then all you need to do is create functions with the method signature
184
185     int UtcTestcase(void)
186     {
187       TestApplication application;
188       ...
189       END_TEST;
190     }
191
192 Note that **the parentheses in the method signature must not be empty** (i.e., it must violate our coding convention and follow __exactly__ this pattern: `int UtcDaliMyTestcaseName(void)`), as it's parsed by an awk script to auto-generate the testcase arrays in the main header file. Neither may any comments on the same line contain empty parentheses.
193
194 You can contine to use the TET api, e.g. `tet_infoline`, `tet_result` and our test check methods `DALI_TEST_CHECK`, `DALI_TEST_EQUALS`, etc.
195
196 If you need any non-test methods or variables, ensure they are wrapped in an anonymous namespace.
197
198 If you are adding new test files, then you need to add the filename to the SET(TC_SOURCES...
199 section of CMakeLists.txt (this is also parsed by an awk script prior to building)
200
201 Good Practices
202 --------------
203 Use DALI_TEST_EQUALS to test actual value against expected value, like this:
204
205     DALI_TEST_EQUALS( actor.GetProperty< float >( Actor::Property::COLOR_ALPHA ), 0.9f, TEST_LOCATION );
206
207 This will speed up debugging in case the test some day fails. There is also a variant to test that value is greater than expected:
208
209     DALI_TEST_GREATER( textureBindIndex[1], textureBindIndex[2], TEST_LOCATION );
210
211 When doing negative tests where your code uses DALI_ASSERT_ALWAYS, use the DALI_TEST_ASSERTION macro, like below:
212
213     DALI_TEST_ASSERTION(
214     {
215         animation.AnimateTo( Property( actor, Actor::Property::PARENT_ORIGIN ), targetParentOrigin );
216     }, "IsPropertyAnimatable( index )" );
217
218 This macro will catch the DALi Exception and check that the correct assert message was included. It will also fail the test in case the assert did not occur. It also reduces the amount of false positive error logging whilst the  is being thrown making it easier to see the real errors.
219
220 Note, DALI_ASSERT_DEBUG cannot be tested as tests execute against release version of the code.
221
222 Use additional scope to control the life of stack allocated objects, such as DALi handles
223
224     // try reparenting an orphaned child
225     {
226         Actor temporaryParent = Actor::New();
227         temporaryParent.Add( child );
228         DALI_TEST_EQUALS( parent2.GetChildCount(), 0u, TEST_LOCATION );
229     }
230     // temporaryParent has now died, reparent the orphaned child
231     parent2.Add( child );
232     DALI_TEST_EQUALS( parent2.GetChildCount(), 1u, TEST_LOCATION );
233
234 Always test the output of your test by making your code fail!!!
235
236 Debugging
237 =========
238
239 On desktop, you can debug the tests by running gdb on the test program:
240
241     $ cd automated-tests
242     $ gdb build/src/dali-adaptor/tct-dali-adaptor-core
243     gdb> r <TestCase>
244
245 replace `<TestCase>` with the name of the failing testcase.
246
247 For example, using testcase UtcDaliLoadCompletion from the dali-platform-abstraction test suite:
248
249     $ gdb build/src/dali-platform-abstraction/tct-dali-platform-abstraction-core
250     gdb> r UtcDaliLoadCompletion
251
252
253 On target, you can re-install the test RPM and associated debug RPMs manually using
254
255     sdb push <test-package>.rpm /tmp
256
257 After installing the rpm and it's debug RPMs, you can find the executable in /opt/usr/bin/tct-dali-core. First ensure you have smack permissions set:
258
259     chsmack -e "^" /usr/bin/gdb
260     chsmack -e "^" /opt/usr/bin/tct-dali-adaptor-core/tct-dali-adaptor-core
261
262 then run it under gdb as above.
263
264
265 Troubleshooting
266 ===============
267
268 If when running tct-mgr tests, if "Health-Check get" fails and leaves a white screen on the device, you will need to run `tct-config-device.sh` from your `web-tct/tools` directory (wherever you untarred it) and power cycle your handset. If that still fails, you can work-around the issue by running "`mkdir –p /opt/usr/media/Documents/tct/`" on target – you may also need to kill the getCapabilities app from App Manager on the handset)
269
270 If the test results show that the test cases fail with "Undefined reference to XXX", it means you have probably failed to update the dali packages on target.
271
272 If all the tests are failing then make sure that you have enabled the engineering mode on the target with the 'change-booting-mode.sh --update' command in sdb shell, as the tests may not have installed correctly.