0028456: BRepBuilderAPI_MakeFace modifies the input shape
[occt.git] / dox / dev_guides / tests / tests.md
1  Automated Testing System  {#occt_dev_guides__tests}
2 ======================================
3
4 @tableofcontents
5
6 @section testmanual_intro Introduction
7
8 This document provides OCCT developers and contributors with an overview and practical guidelines for work with OCCT automatic testing system.
9
10 Reading the Introduction should be sufficient for developers to use the test system to control non-regression of the modifications they implement in OCCT. Other sections provide a more in-depth description of the test system, required for modifying the tests and adding new test cases. 
11
12 @subsection testmanual_intro_basic Basic Information
13
14 OCCT automatic testing system is organized around @ref occt_user_guides__test_harness "DRAW Test Harness", a console application based on Tcl (a scripting language) interpreter extended by OCCT-related commands.
15
16 Standard OCCT tests are included with OCCT sources and are located in subdirectory *tests* of the OCCT root folder. Other test folders can be included in the test system, e.g. for testing applications based on OCCT.
17
18 The tests are organized in three levels:
19
20   * Group: a group of related test grids, usually testing a particular OCCT functionality (e.g. blend);
21   * Grid: a set of test cases within a group, usually aimed at testing some particular aspect or mode of execution of the relevant functionality (e.g. buildevol);
22   * Test case: a script implementing an individual test (e.g. K4).
23   
24 See @ref testmanual_5_1 "Test Groups" chapter for the current list of available test groups and grids.
25
26 @note Many tests involve data files (typically CAD models) which are located separately and (except a few) are not included with OCCT code. 
27 These tests will be skipped if data files are not available.
28
29 @subsection testmanual_1_2 Intended Use of Automatic Tests
30
31 Each modification made in OCCT code must be checked for non-regression 
32 by running the whole set of tests. The developer who makes the modification 
33 is responsible for running and ensuring non-regression for the tests available to him.
34
35 Note that many tests are based on data files that are confidential and thus available only at OPEN CASCADE. 
36 The official certification testing of each change before its integration to master branch of official OCCT Git repository (and finally to the official release) is performed by OPEN CASCADE to ensure non-regression on all existing test cases and supported platforms.
37
38 Each new non-trivial modification (improvement, bug fix, new feature) in OCCT should be accompanied by a relevant test case suitable for verifying that modification. This test case is to be added by the developer who provides the modification.
39
40 If a modification affects the result of an existing test case, either the modification should be corrected (if it causes regression) or the affected test cases should be updated to account for the modification. 
41
42 The modifications made in the OCCT code and related test scripts should be included in the same integration to the master branch.
43
44 @subsection testmanual_1_3 Quick Start
45
46 @subsubsection testmanual_1_3_1 Setup
47
48 Before running tests, make sure to define environment variable *CSF_TestDataPath* pointing to the directory containing test data files. 
49
50 For this it is recommended to add a file *DrawAppliInit* in the directory which is current at the moment of starting DRAWEXE (normally it is OCCT root directory, <i>$CASROOT </i>). This file is evaluated automatically at the DRAW start. 
51
52 Example (Windows)
53
54 ~~~~~{.tcl}
55 set env(CSF_TestDataPath) $env(CSF_TestDataPath)\;d:/occt/test-data
56 ~~~~~
57
58 Note that variable *CSF_TestDataPath* is set to default value at DRAW start, pointing at the folder <i>$CASROOT/data</i>. 
59 In this example, subdirectory <i>d:/occt/test-data</i> is added to this path. Similar code could be used on Linux and Mac OS X except that on non-Windows platforms colon ":" should be used as path separator instead of semicolon ";".
60
61 All tests are run from DRAW command prompt (run *draw.bat* or *draw.sh* to start it).
62
63 @subsubsection testmanual_1_3_2 Running Tests
64
65 To run all tests, type command *testgrid* 
66
67 Example:
68
69 ~~~~~
70 Draw[]> testgrid
71 ~~~~~
72
73 To run only a subset of test cases, give masks for group, grid, and test case names to be executed.
74 Each argument is a list of file masks separated with commas or spaces; by default "*" is assumed.
75
76 Example:
77
78 ~~~~~
79 Draw[]> testgrid bugs caf,moddata*,xde
80 ~~~~~
81
82 As the tests progress, the result of each test case is reported. 
83 At the end of the log a summary of test cases is output, 
84 including the list of detected regressions and improvements, if any. 
85
86
87 Example:
88
89 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.tcl}
90     Tests summary
91
92     CASE 3rdparty export A1: OK 
93     ...
94     CASE pipe standard B1: BAD (known problem)
95     CASE pipe standard C1: OK
96     No regressions 
97     Total cases: 208 BAD, 31 SKIPPED, 3 IMPROVEMENT, 1791 OK
98     Elapsed time: 1 Hours 14 Minutes 33.7384512019 Seconds
99     Detailed logs are saved in D:/occt/results_2012-06-04T0919
100 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
101
102 The tests are considered as non-regressive if only OK, BAD (i.e. known problem), and SKIPPED (i.e. not executed, typically because of lack of a data file) statuses are reported. See @ref testmanual_details_results "Interpretation of test results" for details.
103
104 The results and detailed logs of the tests are saved by default to a new subdirectory of the subdirectory *results* in the current folder, whose name is generated automatically using the current date and time, prefixed by Git branch name (if Git is available and current sources are managed by Git).
105 If necessary, a non-default output directory can be specified using option <i> -outdir</i> followed by a path to the directory. This directory should be new or empty; use option <i>-overwrite</i> to allow writing results in the existing non-empty directory. 
106
107 Example:
108 ~~~~~
109 Draw[]> testgrid -outdir d:/occt/last_results -overwrite
110 ~~~~~
111 In the output directory, a cumulative HTML report <i>summary.html</i> provides links to reports on each test case. An additional report in JUnit-style XML format can be output for use in Jenkins or other continuous integration system.
112
113 To re-run the test cases, which were detected as regressions on the previous run, option <i>-regress dirname</i> should be used.
114 <i>dirname</i> is a path to the directory containing the results of the previous run. Only the test cases with *FAILED* and *IMPROVEMENT* statuses will be tested.
115
116 Example:
117 ~~~~~
118 Draw[]> testgrid -regress d:/occt/last_results
119 ~~~~~
120
121 Type <i>help testgrid</i> in DRAW prompt to get help on options supported by *testgrid* command:
122
123 ~~~~~
124 Draw[3]> help testgrid
125 testgrid: Run all tests, or specified group, or one grid
126     Use: testgrid [groupmask [gridmask [casemask]]] [options...]
127     Allowed options are:
128     -parallel N: run N parallel processes (default is number of CPUs, 0 to disable)
129     -refresh N: save summary logs every N seconds (default 60, minimal 1, 0 to disable)
130     -outdir dirname: set log directory (should be empty or non-existing)
131     -overwrite: force writing logs in existing non-empty directory
132     -xml filename: write XML report for Jenkins (in JUnit-like format)
133     -beep: play sound signal at the end of the tests
134     -regress dirname: re-run only a set of tests that have been detected as regressions on the previous run.
135                       Here "dirname" is a path to the directory containing the results of the previous run.
136     Groups, grids, and test cases to be executed can be specified by the list of file 
137     masks separated by spaces or commas; default is all (*).
138 ~~~~~
139
140 @subsubsection testmanual_1_3_3 Running a Single Test
141
142 To run a single test, type command *test* followed by names of group, grid, and test case. 
143
144 Example:
145
146 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.tcl}
147     Draw[1]> test blend simple A1
148     CASE blend simple A1: OK
149     Draw[2]>
150 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
151
152 Note that normally an intermediate output of the script is not shown. The detailed log of the test can be obtained after the test execution by running command <i>"dlog get"</i>. 
153
154 To see intermediate commands and their output during the test execution, add one more argument 
155 <i>"echo"</i> at the end of the command line. Note that with this option the log is not collected and summary is not produced.
156
157 Type <i>help test</i> in DRAW prompt to get help on options supported by *test* command:
158
159 ~~~~~
160 Draw[3]> help test
161 test: Run specified test case
162  Use: test group grid casename [options...]
163  Allowed options are:
164  -echo: all commands and results are echoed immediately,
165         but log is not saved and summary is not produced
166         It is also possible to use "1" instead of "-echo"
167         If echo is OFF, log is stored in memory and only summary
168         is output (the log can be obtained with command "dlog get")
169  -outfile filename: set log file (should be non-existing),
170         it is possible to save log file in text file or
171         in html file(with snapshot), for that "filename"
172         should have ".html" extension
173  -overwrite: force writing log in existing file
174  -beep: play sound signal at the end of the test
175  -errors: show all lines from the log report that are recognized as errors
176         This key will be ignored if the "-echo" key is already set.
177 ~~~~~
178
179 @subsubsection testmanual_intro_quick_create Creating a New Test
180
181 The detailed rules of creation of new tests are given in @ref testmanual_3 "Creation and modification of tests" chapter. The following short description covers the most typical situations:
182
183 Use prefix <i>bug</i> followed by Mantis issue ID and, if necessary, additional suffixes, for naming the test script, data files, and DRAW commands specific for this test case.
184
185 1.      If the test requires C++ code, add it as new DRAW command(s) in one of files in *QABugs* package. 
186 2.      Add script(s) for the test case in the subfolder corresponding to the relevant OCCT module of the group *bugs* <i>($CASROOT/tests/bugs)</i>. See @ref testmanual_5_2 "the correspondence map".
187 3.      In the test script:
188         *       Load all necessary DRAW modules by command *pload*.
189         *       Use command *locate_data_file* to get a path to data files used by test script. (Make sure to have this command not inside catch statement if it is used.)
190         *       Use DRAW commands to reproduce the tested situation.
191         *       Make sure that in case of failure the test produces a message containing word "Error" or other recognized by the test system as error (add new error patterns in file parse.rules if necessary).
192         *       If the test case reports error due to an existing problem and the fix is not available, add @ref testmanual_3_6 "TODO" statement for each error to mark it as a known problem. The TODO statements must be specific so as to match the actually generated messages but not all similar errors.
193         *       To check expected output which should be obtained as the test result, add @ref testmanual_3_7 "REQUIRED" statement for each line of output to mark it as required.
194         *       If the test case produces error messages (contained in parse.rules), which are expected in that test and should not be considered as its failure (e.g. test for *checkshape* command), add REQUIRED statement for each error to mark it as required output.
195 4.      If the test uses data file(s) that are not yet present in the test database, it is possible to put them to (sub)directory pointed out by *CSF_TestDataPath* variable for running test. The files should be attached to the Mantis issue corresponding to the tested modification.
196 5.      Check that the test case runs as expected (test for fix: OK with the fix, FAILED without the fix; test for existing problem: BAD), and integrate it to the Git branch created for the issue.
197
198 Example:
199
200 * Added files:
201
202 ~~~~~
203 git status -short
204 A tests/bugs/heal/data/bug210_a.brep
205 A tests/bugs/heal/data/bug210_b.brep
206 A tests/bugs/heal/bug210_1
207 A tests/bugs/heal/bug210_2
208 ~~~~~
209
210 * Test script
211
212 ~~~~~{.tcl}
213 puts "OCC210 (case 1): Improve FixShape for touching wires"
214
215 restore [locate_data_file bug210_a.brep] a 
216
217 fixshape result a 0.01 0.01
218 checkshape result
219 ~~~~~
220
221 @section testmanual_2 Organization of Test Scripts
222
223 @subsection testmanual_2_1 General Layout
224
225 Standard OCCT tests are located in subdirectory tests of the OCCT root folder ($CASROOT).
226
227 Additional test folders can be added to the test system by defining environment variable *CSF_TestScriptsPath*. This should be list of paths separated by semicolons (*;*) on Windows 
228 or colons (*:*) on Linux or Mac. Upon DRAW launch, path to *tests* subfolder of OCCT is added at the end of this variable automatically. 
229
230 Each test folder is expected to contain:
231   * Optional file *parse.rules* defining patterns for interpretation of test results, common for all groups in this folder
232   * One or several test group directories. 
233
234 Each group directory contains:
235
236   * File *grids.list* that identifies this test group and defines list of test grids in it.
237   * Test grids (sub-directories), each containing set of scripts for test cases, and optional files *cases.list*, *parse.rules*, *begin* and *end*.
238   * Optional sub-directory data
239
240 By convention, names of test groups, grids, and cases should contain no spaces and be lower-case. 
241 The names *begin, end, data, parse.rules, grids.list* and *cases.list* are reserved. 
242
243 General layout of test scripts is shown in Figure 1.
244
245 @image html /dev_guides/tests/images/tests_image001.png "Layout of tests folder"
246 @image latex /dev_guides/tests/images/tests_image001.png "Layout of tests folder"
247
248
249 @subsection testmanual_2_2 Test Groups
250
251 @subsubsection testmanual_2_2_1 Group Names
252
253 The names of directories of test groups containing systematic test grids correspond to the functionality tested by each group.
254
255 Example:
256
257 ~~~~~
258   caf
259   mesh
260   offset
261 ~~~~~
262
263 Test group *bugs* is used to collect the tests coming from bug reports. Group *demo* collects tests of the test system, DRAW, samples, etc.
264
265 @subsubsection testmanual_2_2_2 File "grids.list" 
266
267 This test group contains file *grids.list*, which defines an ordered list of grids in this group in the following format:
268
269 ~~~~~~~~~~~~~~~~~
270 001 gridname1
271 002 gridname2
272 ...
273 NNN gridnameN
274 ~~~~~~~~~~~~~~~~~
275
276 Example:
277
278 ~~~~~~~~~~~~~~~~~
279     001 basic
280     002 advanced
281 ~~~~~~~~~~~~~~~~~
282
283 @subsubsection testmanual_2_2_3 File "begin"
284
285 This file is a Tcl script. It is executed before every test in the current group. 
286 Usually it loads necessary Draw commands, sets common parameters and defines 
287 additional Tcl functions used in test scripts.
288
289 Example:
290
291 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.tcl}
292     pload TOPTEST ;# load topological command
293     set cpulimit 300 ;# set maximum time allowed for script execution
294 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
295
296 @subsubsection testmanual_2_2_4 File "end"
297
298 This file is a TCL script. It is executed after every test in the current group. Usually it checks the results of script work, makes a snap-shot of the viewer and writes *TEST COMPLETED* to the output.
299
300 Note: *TEST COMPLETED* string should be present in the output to indicate that the test is finished without crash. 
301
302 See @ref testmanual_3 "Creation and modification of tests" chapter for more information.
303
304 Example:
305 ~~~~~
306     if { [isdraw result] } {
307         checkshape result
308     } else {
309         puts "Error: The result shape can not be built"
310     }
311     puts "TEST COMPLETED"
312 ~~~~~
313
314 @subsubsection testmanual_2_2_5 File "parse.rules"
315
316 The test group may contain *parse.rules* file. This file defines patterns used for analysis of the test execution log and deciding the status of the test run. 
317
318 Each line in the file should specify a status (single word), followed by a regular expression delimited by slashes (*/*) that will be matched against lines in the test output log to check if it corresponds to this status.
319
320 The regular expressions should follow <a href="http://www.tcl.tk/man/tcl/TclCmd/re_syntax.htm">Tcl syntax</a>, with a special exception that "\b" is considered as word limit (Perl-style), in addition to "\y" used in Tcl.
321
322 The rest of the line can contain a comment message, which will be added to the test report when this status is detected.
323
324 Example:
325
326 ~~~~~
327     FAILED /\b[Ee]xception\b/ exception
328     FAILED /\bError\b/ error
329     SKIPPED /Cannot open file for reading/ data file is missing
330     SKIPPED /Could not read file .*, abandon/ data file is missing
331 ~~~~~
332
333 Lines starting with a *#* character and blank lines are ignored to allow comments and spacing.
334
335 See @ref testmanual_details_results "Interpretation of test results" chapter for details.
336
337 If a line matches several rules, the first one applies. Rules defined in the grid are checked first, then rules in the group, then rules in the test root directory. This allows defining some rules on the grid level with status *IGNORE* to ignore messages that would otherwise be treated as errors due to the group level rules.
338
339 Example:
340
341 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.tcl}
342     FAILED /\\bFaulty\\b/ bad shape
343     IGNORE /^Error [23]d = [\d.-]+/ debug output of blend command
344     IGNORE /^Tcl Exception: tolerance ang : [\d.-]+/ blend failure
345 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
346
347 @subsubsection testmanual_2_2_6  Directory "data"
348 The test group may contain subdirectory *data*, where test scripts shared by different test grids can be put. See also @ref testmanual_2_3_5 "Directory data".
349
350 @subsection testmanual_2_3 Test Grids
351
352 @subsubsection testmanual_2_3_1 Grid Names
353
354 The folder of a test group  can have several sub-directories (Grid 1… Grid N) defining test grids. 
355 Each directory contains a set of related test cases. The name of a directory should correspond to its contents.
356
357 Example:
358
359 ~~~~~
360 caf
361    basic
362    bugs
363    presentation
364 ~~~~~
365
366 Here *caf* is the name of the test group and *basic*, *bugs*, *presentation*, etc. are the names of grids.
367
368 @subsubsection testmanual_2_3_2 File "begin"
369
370 This file is a TCL script executed before every test in the current grid. 
371
372 Usually it sets variables specific for the current grid.
373
374 Example:
375
376 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.tcl}
377     set command bopfuse ;# command tested in this grid
378 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
379
380 @subsubsection testmanual_2_3_3 File "end"
381
382 This file is a TCL script executed after every test in current grid. 
383
384 Usually it executes a specific sequence of commands common for all tests in the grid.
385
386 Example:
387
388 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.tcl}
389     vdump $imagedir/${casename}.png ;# makes a snap-shot of AIS viewer
390 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
391
392 @subsubsection testmanual_2_3_4 File "cases.list"
393
394 The grid directory can contain an optional file cases.list 
395 defining an alternative location of the test cases. 
396 This file should contain a single line defining the relative path to the collection of test cases.
397
398 Example:
399
400 ~~~~~
401 ../data/simple
402 ~~~~~
403
404 This option is used for creation of several grids of tests with the same data files and operations but performed with differing parameters. The common scripts are usually located place in the common 
405 subdirectory of the test group, <i>data/simple</i> for example.
406
407 If file *cases.list*  exists, the grid directory should not contain any test cases. 
408 The specific parameters and pre- and post-processing commands 
409 for test execution in this grid should be defined in the files *begin* and *end*.
410
411
412 @subsubsection testmanual_2_3_5  Directory "data"
413
414 The test grid may contain subdirectory *data*, containing data files used in tests (BREP, IGES, STEP, etc.) of this grid.
415
416 @subsection testmanual_2_4 Test Cases
417
418 The test case is a TCL script, which performs some operations using DRAW commands 
419 and produces meaningful messages that can be used to check the validity of the result.
420
421 Example:
422
423 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.tcl}
424     pcylinder c1 10 20 ;# create first cylinder
425     pcylinder c2 5 20 ;# create second cylinder
426     ttranslate c2 5 0 10 ;# translate second cylinder to x,y,z
427     bsection result c1 c2 ;# create a section of two cylinders
428     checksection result ;# will output error message if result is bad
429 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
430
431 The test case can have any name (except for the reserved names *begin, end, data, cases.list* and  *parse.rules*). 
432 For systematic grids it is usually a capital English letter followed by a number.
433
434 Example:
435
436 ~~~~~
437     A1
438     A2
439     B1
440     B2
441 ~~~~~
442
443 Such naming facilitates compact representation of tests execution results in tabular format within HTML reports.
444
445
446 @section testmanual_3 Creation And Modification Of Tests
447
448 This section describes how to add new tests and update existing ones.
449
450 @subsection testmanual_3_1 Choosing Group, Grid, and Test Case Name
451
452 The new tests are usually added in the frame of processing issues in OCCT Mantis tracker. 
453 Such tests in general should be added to group bugs, in the grid 
454 corresponding to the affected OCCT functionality. See @ref testmanual_5_2 "Mapping of OCCT functionality to grid names in group bugs".
455
456 New grids can be added as necessary to contain tests for the functionality not yet covered by existing test grids. 
457 The test case name in the bugs group should be prefixed by the ID of the corresponding issue in Mantis (without leading zeroes) with prefix *bug*. It is recommended to add a suffix providing a hint on the tested situation. If more than one test is added for a bug, they should be distinguished by suffixes; either meaningful or just ordinal numbers.
458
459 Example:
460
461 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.tcl}
462     bug12345_coaxial
463     bug12345_orthogonal_1
464     bug12345_orthogonal_2
465 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
466
467 If the new test corresponds to a functionality already covered by the existing systematic test grid (e.g. group *mesh* for *BRepMesh* issues), this test can be added (or moved later by OCC team) to that grid. 
468
469 @subsection testmanual_3_2 Adding Data Files Required for a Test
470
471 It is advisable to make self-contained test scripts whenever possible, so as they could be used in the  environments where data files are not available. For that simple geometric objects and shapes can be created using DRAW commands in the test script itself.
472
473 If the test requires a data file, it should be put to the directory listed in environment variable *CSF_TestDataPath*.
474 Alternatively, it can be put to subdirectory *data* of the test grid. 
475 It is recommended to prefix the data file with the corresponding issue id prefixed by *bug*, e.g. *bug12345_face1.brep*, to avoid possible conflicts with names of existing data files. 
476
477 Note that when the test is integrated to the master branch, OCC team will move the data file to the data files repository, to keep OCCT sources repository clean from data files.
478
479 When you prepare a test script, try to minimize the size of involved data model. For instance, if the problem detected on a big shape can be reproduced on a single face extracted from that shape, use only that face in the test.
480
481
482 @subsection testmanual_3_3 Adding new DRAW commands
483
484 If the test cannot be implemented using available DRAW commands, consider the following possibilities:
485 * If the existing DRAW command can be extended to enable possibility required for a test in a natural way (e.g. by adding an option to activate a specific mode of the algorithm), this way is recommended. This change should be appropriately documented in a relevant Mantis issue.
486 * If the new command is needed to access OCCT functionality not exposed to DRAW previously, and this command can be potentially reused (for other tests), it should be added to the package where similar commands are implemented (use *getsource* DRAW command to get the package name). The name and arguments of the new command should be chosen to keep similarity with the existing commands. This change should be documented in a relevant Mantis issue.
487 * Otherwise the new command implementing the actions needed for this particular test should be added in *QABugs* package. The command name should be formed by the Mantis issue ID prefixed by *bug*, e.g. *bug12345*.
488
489 Note that a DRAW command is expected to return 0 in case of a normal completion, and 1 (Tcl exception) if it is incorrectly used (e.g. a wrong number of input arguments). Thus if the new command needs to report a test error, this should be done by outputting an appropriate error message rather than by returning a non-zero value.
490 File names must be encoded in the script rather than in the DRAW command and passed to the DRAW command as an argument.
491
492 @subsection testmanual_3_4 Script Implementation
493
494 The test should run commands necessary to perform the tested operations, in general assuming a clean DRAW session. The required DRAW modules should be loaded by *pload* command, if it is not done by *begin* script. The messages produced by commands in a standard output should include identifiable messages on the discovered problems if any. 
495
496 Usually the script represents a set of commands that a person would run interactively to perform the operation and see its results, with additional comments to explain what happens.
497
498 Example:
499 ~~~~~
500 # Simple test of fusing box and sphere
501 box b 10 10 10 
502 sphere s 5
503 bfuse result b s
504 checkshape result
505 ~~~~~
506
507 Make sure that file *parse.rules* in the grid or group directory contains a regular expression to catch possible messages indicating the failure of the test. 
508
509 For instance, for catching errors reported by *checkshape* command relevant grids define a rule to recognize its report by the word *Faulty*:
510
511 ~~~~~
512 FAILED /\bFaulty\b/ bad shape
513 ~~~~~
514
515 For the messages generated in the script it is recommended to use the word 'Error' in the error message.
516
517 Example:
518
519 ~~~~~
520 set expected_length 11
521 if { [expr $actual_length - $expected_length] > 0.001 } {
522     puts "Error: The length of the edge should be $expected_length"
523 }
524 ~~~~~
525
526 At the end, the test script should output *TEST COMPLETED* string to mark a successful completion of the script. This is often done by the *end* script in the grid.
527
528 When the test script requires a data file, use Tcl procedure *locate_data_file* to get a path to it, instead of putting the path explicitly. This will allow easy move of the data file from OCCT sources repository to the data files repository without the need to update the test script.
529
530 Example:
531
532 ~~~~~
533 stepread [locate_data_file CAROSKI_COUPELLE.step] a *
534 ~~~~~
535
536 When the test needs to produce some snapshots or other artefacts, use Tcl variable *imagedir* as the location where such files should be put. 
537 * Command *testgrid* sets this variable to the subdirectory of the results folder corresponding to the grid. 
538 * Command *test* by default creates a dedicated temporary directory in the system temporary folder (normally the one specified by environment variable *TempDir*, *TEMP*, or *TMP*) for each execution, and sets *imagedir* to that location. 
539
540 However if variable *imagedir* is defined on the top level of Tcl interpretor, command *test* will use it instead of creating a new directory.
541
542 Use Tcl variable *casename* to prefix all files produced by the test. 
543 This variable is set to the name of the test case.
544
545 The test system can recognize an image file (snapshot) and include it in HTML log and differences if its name starts with the name of the test case (use variable *casename*), optionally followed by underscore or dash and arbitrary suffix.
546
547 The image format (defined by extension) should be *png*.
548
549 Example:
550 ~~~~~
551 xwd $imagedir/${casename}.png
552 vdisplay result; vfit
553 vdump $imagedir/${casename}-axo.png
554 vfront; vfit
555 vdump $imagedir/${casename}-front.png
556 ~~~~~
557
558 would produce:
559 ~~~~~
560 A1.png
561 A1-axo.png
562 A1-front.png
563 ~~~~~
564
565 Note that OCCT must be built with FreeImage support to be able to produce usable images.
566
567 Other Tcl variables defined during the test execution are:
568 - *groupname*: name of the test group;
569 - *gridname*: name of the test grid;
570 - *dirname*: path to the root directory of the current set of test scripts.
571
572 In order to ensure that the test works as expected in different environments, observe the following additional rules:
573 * Avoid using external commands such as *grep, rm,* etc., as these commands can be absent on another system (e.g. on Windows); use facilities provided by Tcl instead.
574 * Do not put call to *locate_data_file* in catch statement -- this can prevent correct interpretation of the missing data file by the test system.
575 * Do not use commands *decho* and *dlog* in the test script, to avoid interference with use of these commands by the test system.
576
577 @subsection testmanual_details_results Interpretation of test results
578
579 The result of the test is evaluated by checking its output against patterns defined in the files *parse.rules* of the grid and group.
580
581 The OCCT test system recognizes five statuses of the test execution:
582 * SKIPPED: reported if a line matching SKIPPED pattern is found (prior to any FAILED pattern). This indicates that the test cannot be run in the current environment; the most typical case is the absence of the required data file.
583 * FAILED: reported if a line matching pattern with status FAILED is found (unless it is masked by the preceding IGNORE pattern or a TODO or REQUIRED statement), or if message TEST COMPLETED or at least one of REQUIRED patterns is not found. This indicates that the test has produced a bad or unexpected result, and usually means a regression.
584 * BAD: reported if the test script output contains one or several TODO statements and the corresponding number of matching lines in the log. This indicates a known problem. The lines matching TODO statements are not checked against other patterns and thus will not cause a FAILED status.  
585 * IMPROVEMENT: reported if the test script output contains a TODO statement for which no corresponding line is found. This is a possible indication of improvement (a known problem has disappeared).
586 * OK: reported if none of the above statuses have been assigned. This means that the test has passed without problems.
587
588 Other statuses can be specified in *parse.rules* files, these will be classified as FAILED.
589
590 For integration of the change to OCCT repository, all tests should return either OK or BAD status.
591 The new test created for an unsolved problem should return BAD. The new test created for a fixed problem should return FAILED without the fix, and OK with the fix.
592
593 @subsection testmanual_3_6 Marking BAD cases
594
595 If the test produces an invalid result at a certain moment then the corresponding bug should be created in the OCCT issue tracker located at http://tracker.dev.opencascade.org, and the problem should be marked as TODO in the test script.
596
597 The following statement should be added to such a test script:
598 ~~~~~
599 puts "TODO BugNumber ListOfPlatforms: RegularExpression"
600 ~~~~~
601
602 Here:
603 * *BugNumber* is the bug ID in the tracker. For example: #12345.
604 * *ListOfPlatforms* is a list of platforms, at which the bug is reproduced (Linux, Windows, MacOS, or All). Note that the platform name is custom for the OCCT test system; Use procedure *checkplatform* to get the platform name.
605
606 Example:
607 ~~~~~
608 Draw[2]> checkplatform
609 Windows
610 ~~~~~
611
612 * RegularExpression is a regular expression, which should be matched against the line indicating the problem in the script output. 
613
614 Example:
615 ~~~~~
616 puts "TODO #22622 Mandriva2008: Abort .* an exception was raised"
617 ~~~~~
618
619 The parser checks the test output and if an output line matches the *RegularExpression* then it will be assigned a BAD status instead of FAILED.
620
621 A separate TODO line must be added for each output line matching an error expression to mark the test as BAD. If not all TODO messages are found in the test log, the test will be considered as possible improvement.
622
623 To mark the test as BAD for an incomplete case (when the final *TEST COMPLETE* message is missing) the expression *TEST INCOMPLETE* should be used instead of the regular expression. 
624
625 Example:
626
627 ~~~~~
628 puts "TODO OCC22817 All: exception.+There are no suitable edges"
629 puts "TODO OCC22817 All: \\*\\* Exception \\*\\*"
630 puts "TODO OCC22817 All: TEST INCOMPLETE"
631 ~~~~~
632
633 @subsection testmanual_3_7 Marking required output
634
635 To check the obtained test output matches the expected results considered correct, add REQUIRED statement for each specific message.
636 For that, the following statement should be added to the corresponding test script:
637
638 ~~~~~
639 puts "REQUIRED ListOfPlatforms: RegularExpression"
640 ~~~~~
641
642 Here *ListOfPlatforms* and *RegularExpression* have the same meaning as in TODO statements described above.
643
644 The REQUIRED statement can also be used to mask the message that would normally be interpreted as error (according to the rules defined in *parse.rules*) but should not be considered as such within the current test.
645
646 Example:
647 ~~~~~
648 puts "REQUIRED Linux: Faulty shapes in variables faulty_1 to faulty_5"
649 ~~~~~
650
651 This statement notifies test system that errors reported by *checkshape* command are expected in that test case, and test should be considered as OK if this message appears, despite of presence of general rule stating that 'Faulty' signals failure.
652
653 If output does not contain required statement, test case will be marked as FAILED.
654
655 @section testmanual_4 Advanced Use
656
657 @subsection testmanual_4_1 Running Tests on Older Versions of OCCT
658
659 Sometimes it might be necessary to run tests on the previous versions of OCCT (<= 6.5.4) that do not include this test system. This can be done by adding DRAW configuration file *DrawAppliInit* in the directory, which is current by the moment of DRAW start-up, to load test commands and to define the necessary environment.
660
661 Note: in OCCT 6.5.3, file *DrawAppliInit* already exists in <i>$CASROOT/src/DrawResources</i>, new commands should be added to this file instead of a new one in the current directory.
662
663 For example, let us assume that *d:/occt* contains an up-to-date version of OCCT sources with tests, and the test data archive is unpacked to *d:/test-data*):
664
665 ~~~~~
666 set env(CASROOT) d:/occt
667 set env(CSF_TestScriptsPath) $env(CASROOT)/tests
668 source $env(CASROOT)/src/DrawResources/TestCommands.tcl
669 set env(CSF_TestDataPath) $env(CASROOT)/data;d:/test-data
670 return
671 ~~~~~
672
673 Note that on older versions of OCCT the tests are run in compatibility mode and thus not all output of the test command can be captured; this can lead to absence of some error messages (can be reported as either a failure or an improvement).
674
675 @subsection testmanual_4_2 Adding custom tests
676
677 You can extend the test system by adding your own tests. For that it is necessary to add paths to the directory where these tests are located, and one or more additional data directories, to the environment variables *CSF_TestScriptsPath* and *CSF_TestDataPath*. The recommended way for doing this is using DRAW configuration file *DrawAppliInit* located in the directory which is current by the moment of DRAW start-up.
678
679 Use Tcl command <i>_path_separator</i> to insert a platform-dependent separator to the path list.
680
681 For example:
682 ~~~~~
683 set env(CSF_TestScriptsPath) \
684   $env(TestScriptsPath)[_path_separator]d:/MyOCCTProject/tests
685 set env(CSF_TestDataPath) \
686   d:/occt/test-data[_path_separator]d:/MyOCCTProject/data
687 return ;# this is to avoid an echo of the last command above in cout
688 ~~~~~
689
690 @subsection testmanual_4_3 Parallel execution of tests
691
692 For better efficiency, on computers with multiple CPUs the tests can be run in parallel mode. This is default behavior for command *testgrid* : the tests are executed in parallel processes (their number is equal to the number of CPUs available on the system). In order to change this behavior, use option  parallel followed by the number of processes to be used (1 or 0 to run sequentially).
693
694 Note that the parallel execution is only possible if Tcl extension package *Thread* is installed. 
695 If this package is not available, *testgrid* command will output a warning message.
696
697 @subsection testmanual_4_4 Checking non-regression of performance, memory, and visualization
698
699 Some test results are very dependent on the characteristics of the workstation, where they are performed, and thus cannot be checked by comparison with some predefined values. These results can be checked for non-regression (after a change in OCCT code) by comparing them with the results produced by the version without this change. The most typical case is comparing the result obtained in a branch created for integration of a fix (CR***) with the results obtained on the master branch before that change is made.
700
701 OCCT test system provides a dedicated command *testdiff* for comparing CPU time of execution, memory usage, and images produced by the tests.
702
703 ~~~~~
704 testdiff dir1 dir2 [groupname [gridname]] [options...]
705 ~~~~~
706 Here *dir1* and *dir2* are directories containing logs of two test runs.
707
708 Possible options are:
709 * <i>-save \<filename\> </i> -- saves the resulting log in a specified file (<i>$dir1/diff-$dir2.log</i> by default). HTML log is saved with the same name and extension .html;
710 * <i>-status {same|ok|all}</i> -- allows filtering compared cases by their status:
711         * *same* -- only cases with same status are compared (default);
712         * *ok*   -- only cases with OK status in both logs are compared;
713         * *all*  -- results are compared regardless of status;
714 * <i>-verbose \<level\> </i> -- defines the scope of output data:
715         * 1 -- outputs only differences;
716         * 2 -- additionally outputs the list of logs and directories present in one of directories only;
717         * 3 -- (by default) additionally outputs progress messages;
718 * <i>-image [filename]</i> - compare images and save the resulting log in specified file (<i>$dir1/diffimage-$dir2.log</i> by default)
719 * <i>-cpu [filename]</i> - compare overall CPU and save the resulting log in specified file (<i>$dir1/diffcpu-$dir2.log</i> by default)
720 * <i>-memory [filename]</i> - compare memory delta and save the resulting log in specified file (<i>$dir1/diffmemory-$dir2.log</i> by default)
721 * <i>-highlight_percent \<value\></i> - highlight considerable (>value in %) deviations of CPU and memory (default value is 5%)
722
723 Example:
724
725 ~~~~~
726 Draw[]> testdiff results/CR12345-2012-10-10T08:00 results/master-2012-10-09T21:20 
727 ~~~~~
728
729 Particular tests can generate additional data that need to be compared by *testdiff* command.
730 For that, for each parameter to be controlled, the test should produce the line containing keyword "COUNTER* followed by arbitrary name of the parameter, then colon and numeric value of the parameter.
731
732 Example of test code:
733
734 ~~~~~
735 puts "COUNTER Memory heap usage at step 5: [meminfo h]"
736 ~~~~~
737
738 @section testmanual_5 APPENDIX
739
740 @subsection testmanual_5_1 Test groups
741
742 @subsubsection testmanual_5_1_1 3rdparty
743
744 This group allows testing the interaction of OCCT and 3rdparty products.
745
746 DRAW module: VISUALIZATION.
747
748 | Grid  | Commands      | Functionality |
749 | :---- | :----- | :------- | 
750 | export        | vexport       | export of images to different formats |
751 | fonts  | vtrihedron, vcolorscale, vdrawtext   | display of fonts |
752
753
754 @subsubsection testmanual_5_1_2 blend
755
756 This group allows testing blends (fillets) and related operations.
757
758 DRAW module: MODELING.
759
760 | Grid  | Commands      | Functionality |
761 | :---- | :----- | :------- | 
762 | simple        | blend | fillets on simple shapes |
763 | complex       | blend         | fillets on complex shapes, non-trivial geometry |
764 | tolblend_simple       | tolblend, blend | |
765 | buildevol     | buildevol     | |
766 | tolblend_buildvol |   tolblend, buildevol |   use of additional command tolblend |
767 | bfuseblend    | bfuseblend    | | 
768 | encoderegularity      | encoderegularity      | | 
769
770 @subsubsection testmanual_5_1_3 boolean
771
772 This group allows testing Boolean operations.
773
774 DRAW module: MODELING (packages *BOPTest* and *BRepTest*).
775
776 Grids names are based on name of the command used, with suffixes: 
777 * <i>_2d</i> -- for tests operating with 2d objects (wires, wires, 3d objects, etc.); 
778 * <i>_simple</i> -- for tests operating on simple shapes (boxes, cylinders, toruses, etc.);
779 * <i>_complex</i> -- for tests dealing with complex shapes.
780
781 | Grid  | Commands      | Functionality |
782 | :---- | :----- | :------- | 
783 | bcommon_2d    | bcommon       | Common operation (old algorithm), 2d |
784 | bcommon_complex       | bcommon       | Common operation (old algorithm), complex shapes |
785 | bcommon_simple        | bcommon       | Common operation (old algorithm), simple shapes |
786 | bcut_2d       | bcut | Cut operation (old algorithm), 2d |
787 | bcut_complex  | bcut  | Cut operation (old algorithm), complex shapes |
788 | bcut_simple   | bcut |        Cut operation (old algorithm), simple shapes |
789 | bcutblend     | bcutblend     | | 
790 | bfuse_2d      | bfuse | Fuse operation (old algorithm), 2d |
791 | bfuse_complex | bfuse |       Fuse operation (old algorithm), complex shapes |
792 | bfuse_simple  | bfuse | Fuse operation (old algorithm), simple shapes |
793 | bopcommon_2d  | bopcommon |   Common operation, 2d |
794 | bopcommon_complex     | bopcommon     | Common operation, complex shapes | 
795 | bopcommon_simple      | bopcommon     | Common operation, simple shapes |
796 | bopcut_2d |   bopcut |        Cut operation, 2d |
797 | bopcut_complex |      bopcut |        Cut operation, complex shapes |
798 | bopcut_simple | bopcut        | Cut operation, simple shapes |
799 | bopfuse_2d    | bopfuse       | Fuse operation, 2d |
800 | bopfuse_complex       | bopfuse       | Fuse operation, complex shapes |
801 | bopfuse_simple        | bopfuse       | Fuse operation, simple shapes |
802 | bopsection    | bopsection    | Section |
803 | boptuc_2d     | boptuc        | |
804 | boptuc_complex        | boptuc        | |
805 | boptuc_simple | boptuc        | |
806 | bsection |    bsection        | Section (old algorithm) |
807
808 @subsubsection testmanual_5_1_4 bugs
809
810 This group allows testing cases coming from Mantis issues.
811
812 The grids are organized following OCCT module and category set for the issue in the Mantis tracker. 
813 See @ref testmanual_5_2 "Mapping of OCCT functionality to grid names in group bugs" chapter for details.
814
815 @subsubsection testmanual_5_1_5 caf
816
817 This group allows testing OCAF functionality.
818
819 DRAW module: OCAFKERNEL.
820
821 | Grid  | Commands      | Functionality |
822 | :---- | :----- | :------- | 
823 | basic | |     Basic attributes |
824 | bugs  | |     Saving and restoring of document |
825 | driver        | |     OCAF drivers |
826 | named_shape   | |     *TNaming_NamedShape* attribute |
827 | presentation  | | *AISPresentation* attributes |
828 | tree  | |     Tree construction attributes |
829 | xlink  | |    XLink attributes |
830
831 @subsubsection testmanual_5_1_6 chamfer
832
833 This group allows testing chamfer operations.
834
835 DRAW module: MODELING.
836
837 The test grid name is constructed depending on the type of the tested chamfers. Additional suffix <i>_complex</i> is used for test cases involving complex geometry (e.g. intersections of edges forming a chamfer); suffix <i>_sequence</i> is used for grids where chamfers are computed sequentially.
838
839 | Grid  | Commands      | Functionality |
840 | :---- | :----- | :------- | 
841 | equal_dist    | |     Equal distances from edge |
842 | equal_dist_complex    | |     Equal distances from edge, complex shapes |
843 | equal_dist_sequence   | |     Equal distances from edge, sequential operations |
844 | dist_dist     | |     Two distances from edge |
845 | dist_dist_complex     | |     Two distances from edge, complex shapes |
846 | dist_dist_sequence    | |     Two distances from edge, sequential operations |
847 | dist_angle    | |     Distance from edge and given angle |
848 | dist_angle_complex    | |     Distance from edge and given angle |
849 | dist_angle_sequence   | |     Distance from edge and given angle |
850
851 @subsubsection testmanual_5_1_7 demo
852
853 This group allows demonstrating how testing cases are created, and testing DRAW commands and the test system as a whole.
854
855 | Grid  | Commands      | Functionality |
856 | :---- | :----- | :------- | 
857 | draw  |  getsource, restore   | Basic DRAW commands |
858 | testsystem    | |     Testing system |
859 | samples       | |     OCCT samples | 
860
861
862 @subsubsection testmanual_5_1_8 draft
863
864 This group allows testing draft operations.
865
866 DRAW module: MODELING.
867
868 | Grid  | Commands      | Functionality |
869 | :---- | :----- | :------- | 
870 | Angle | depouille     | Drafts with angle (inclined walls) |
871
872
873 @subsubsection testmanual_5_1_9 feat
874
875 This group allows testing creation of features on a shape.
876
877 DRAW module: MODELING (package *BRepTest*).
878
879 | Grid  | Commands      | Functionality |
880 | :---- | :----- | :------- | 
881 | featdprism            | | |
882 | featlf                | | |
883 | featprism             | | |
884 | featrevol             | | | 
885 | featrf                | | |
886
887 @subsubsection testmanual_5_1_10 heal
888
889 This group allows testing the functionality provided by *ShapeHealing* toolkit.
890
891 DRAW module: XSDRAW
892
893 | Grid  | Commands      | Functionality |
894 | :---- | :----- | :------- | 
895 | fix_shape     | fixshape      | Shape healing | 
896 | fix_gaps      | fixwgaps      | Fixing gaps between edges on a wire |
897 | same_parameter        | sameparameter | Fixing non-sameparameter edges |
898 | same_parameter_locked | sameparameter | Fixing non-sameparameter edges |
899 | fix_face_size | DT_ApplySeq   | Removal of small faces |
900 | elementary_to_revolution      | DT_ApplySeq   | Conversion of elementary surfaces to revolution |
901 | direct_faces  | directfaces   | Correction of axis of elementary surfaces | 
902 | drop_small_edges      | fixsmall      | Removal of small edges | 
903 | split_angle   | DT_SplitAngle |       Splitting periodic surfaces by angle |
904 | split_angle_advanced | DT_SplitAngle  | Splitting periodic surfaces by angle |
905 | split_angle_standard | DT_SplitAngle  | Splitting periodic surfaces by angle |
906 | split_closed_faces |  DT_ClosedSplit  | Splitting of closed faces |
907 | surface_to_bspline |  DT_ToBspl       | Conversion of surfaces to b-splines |
908 | surface_to_bezier | DT_ShapeConvert | Conversion of surfaces to bezier |
909 | split_continuity      | DT_ShapeDivide | Split surfaces by continuity criterion |
910 | split_continuity_advanced | DT_ShapeDivide | Split surfaces by continuity criterion |
911 | split_continuity_standard | DT_ShapeDivide | Split surfaces by continuity criterion |
912 | surface_to_revolution_advanced |      DT_ShapeConvertRev      | Convert elementary surfaces to revolutions, complex cases |
913 | surface_to_revolution_standard |      DT_ShapeConvertRev      | Convert elementary surfaces to revolutions, simple cases |
914 | update_tolerance_locked       | updatetolerance       | Update the tolerance of shape so that it satisfy the rule: toler(face)<=toler(edge)<=toler(vertex) |
915
916 @subsubsection testmanual_5_1_11 mesh
917
918 This group allows testing shape tessellation (*BRepMesh*) and shading.
919
920 DRAW modules: MODELING (package *MeshTest*), VISUALIZATION (package *ViewerTest*)
921
922 | Grid  | Commands      | Functionality |
923 | :---- | :----- | :------- | 
924 | advanced_shading      | vdisplay      | Shading, complex shapes |
925 | standard_shading      | vdisplay      | Shading, simple shapes |
926 | advanced_mesh | mesh |        Meshing of complex shapes |
927 | standard_mesh | mesh |        Meshing of simple shapes |
928 | advanced_incmesh      | incmesh       | Meshing of complex shapes |
929 | standard_incmesh      | incmesh       | Meshing of simple shapes |
930 | advanced_incmesh_parallel | incmesh | Meshing of complex shapes, parallel mode |
931 | standard_incmesh_parallel | incmesh | Meshing of simple shapes, parallel mode |
932
933 @subsubsection testmanual_5_1_12 mkface
934
935 This group allows testing creation of simple surfaces.
936
937 DRAW module: MODELING (package *BRepTest*)
938
939 | Grid  | Commands      | Functionality |
940 | :---- | :----- | :------- | 
941 | after_trim | mkface   | |
942 | after_offset | mkface | |
943 | after_extsurf_and_offset      | mkface  | |   
944 | after_extsurf_and_trim | mkface       | | 
945 | after_revsurf_and_offset | mkface     | | 
946 | mkplane | mkplane     | |
947
948 @subsubsection testmanual_5_1_13 nproject
949
950 This group allows testing normal projection of edges and wires onto a face.
951
952 DRAW module: MODELING (package *BRepTest*) 
953
954 | Grid  | Commands      | Functionality |
955 | :---- | :----- | :------- | 
956 | Base  | nproject      |  |
957
958 @subsubsection testmanual_5_1_14 offset
959
960 This group allows testing offset functionality for curves and surfaces.
961
962 DRAW module: MODELING (package *BRepTest*) 
963
964 | Grid  | Commands      | Functionality |
965 | :---- | :----- | :------- | 
966 | compshape     | offsetcompshape       | Offset of shapes with removal of some faces | 
967 | faces_type_a  | offsetparameter, offsetload, offsetperform | Offset on a subset of faces with a fillet |
968 | faces_type_i  | offsetparameter, offsetload, offsetperform |  Offset on a subset of faces with a sharp edge |
969 | shape_type_a  | offsetparameter, offsetload, offsetperform |  Offset on a whole shape with a fillet |
970 | shape_type_i  | offsetparameter, offsetload, offsetperform |  Offset on a whole shape with a fillet |
971 | shape  | offsetshape  | |
972 | wire_closed_outside_0_005, wire_closed_outside_0_025, wire_closed_outside_0_075, wire_closed_inside_0_005, wire_closed_inside_0_025, wire_closed_inside_0_075, wire_unclosed_outside_0_005, wire_unclosed_outside_0_025, wire_unclosed_outside_0_075  |       mkoffset | 2d offset of closed and unclosed planar wires with different offset step and directions of offset ( inside / outside ) |
973         
974 @subsubsection testmanual_5_1_15 pipe
975
976 This group allows testing construction of pipes (sweeping of a contour along profile).
977
978 DRAW module: MODELING (package *BRepTest*) 
979
980 | Grid  | Commands      | Functionality |
981 | :---- | :----- | :------- | 
982 | Standard      | pipe  | |
983
984 @subsubsection testmanual_5_1_16 prism
985
986 This group allows testing construction of prisms.
987
988 DRAW module: MODELING (package *BRepTest*) 
989
990 | Grid  | Commands      | Functionality |
991 | :---- | :----- | :------- | 
992 | seminf | prism        | |
993
994 @subsubsection testmanual_5_1_17 sewing
995
996 This group allows testing sewing of faces by connecting edges.
997
998 DRAW module: MODELING (package *BRepTest*) 
999
1000 | Grid  | Commands      | Functionality |
1001 | :---- | :----- | :------- | 
1002 | tol_0_01      | sewing | Sewing faces with tolerance 0.01 |
1003 | tol_1 | sewing | Sewing faces with tolerance 1 |
1004 | tol_100 | sewing | Sewing faces with tolerance 100 | 
1005
1006 @subsubsection testmanual_5_1_18 thrusection
1007
1008 This group allows testing construction of shell or a solid passing through a set of sections in a given sequence (loft).
1009
1010 | Grid  | Commands      | Functionality |
1011 | :---- | :----- | :------- | 
1012 | solids        | thrusection | Lofting with resulting solid | 
1013 | not_solids | thrusection      | Lofting with resulting shell or face | 
1014
1015 @subsubsection testmanual_5_1_19 xcaf
1016
1017 This group allows  testing extended data exchange packages.
1018
1019 | Grid  | Commands      | Functionality |
1020 | :---- | :----- | :------- | 
1021 | dxc, dxc_add_ACL, dxc_add_CL, igs_to_dxc, igs_add_ACL, brep_to_igs_add_CL, stp_to_dxc, stp_add_ACL, brep_to_stp_add_CL, brep_to_dxc, add_ACL_brep, brep_add_CL        | | Subgroups are divided by format of source file, by format of result file and by type of document modification. For example, *brep_to_igs* means that the source shape in brep format was added to the document, which was saved into igs format after that. The postfix *add_CL* means that colors and layers were initialized in the document before saving and the postfix *add_ACL* corresponds to the creation of assembly and initialization of colors and layers in a document before saving. |
1022         
1023
1024 @subsection testmanual_5_2 Mapping of OCCT functionality to grid names in group *bugs*
1025
1026 | OCCT Module / Mantis category | Toolkits      | Test grid in group bugs |
1027 | :---------- | :--------- | :---------- | 
1028 | Application Framework | PTKernel, TKPShape, TKCDF, TKLCAF, TKCAF, TKBinL, TKXmlL, TKShapeSchema, TKPLCAF, TKBin, TKXml, TKPCAF, FWOSPlugin, TKStdLSchema, TKStdSchema, TKTObj, TKBinTObj, TKXmlTObj | caf |
1029 | Draw  | TKDraw, TKTopTest, TKViewerTest, TKXSDRAW, TKDCAF, TKXDEDRAW, TKTObjDRAW, TKQADraw, DRAWEXE, Problems of testing system |     draw | 
1030 | Shape Healing | TKShHealing | heal |
1031 | Mesh  | TKMesh, TKXMesh | mesh |
1032 | Data Exchange | TKIGES        | iges |
1033 | Data Exchange |       TKSTEPBase, TKSTEPAttr, TKSTEP209, TKSTEP |     step |
1034 | Data Exchange |       TKSTL, TKVRML   | stlvrml |
1035 | Data Exchange | TKXSBase, TKXCAF, TKXCAFSchema, TKXDEIGES, TKXDESTEP, TKXmlXCAF, TKBinXCAF | xde |
1036 | Foundation Classes |  TKernel, TKMath | fclasses |
1037 | Modeling_algorithms | TKGeomAlgo, TKTopAlgo, TKPrim, TKBO, TKBool, TKHLR, TKFillet, TKOffset, TKFeat, TKXMesh |       modalg |
1038 | Modeling Data | TKG2d, TKG3d, TKGeomBase, TKBRep      | moddata |
1039 | Visualization | TKService, TKV2d, TKV3d, TKOpenGl, TKMeshVS, TKNIS    | vis |
1040
1041
1042 @subsection testmanual_5_3 Recommended approaches to checking test results
1043
1044 @subsubsection testmanual_5_3_1 Shape validity
1045
1046 Run command *checkshape* on the result (or intermediate) shape and make sure that *parse.rules* of the test grid or group reports bad shapes (usually recognized by word "Faulty") as error.
1047
1048 Example
1049 ~~~~~
1050 checkshape result
1051 ~~~~~
1052
1053 To check the number of faults in the shape command *checkfaults* can be used.
1054
1055 Use: checkfaults shape source_shape [ref_value=0]
1056
1057 The default syntax of *checkfaults* command:
1058 ~~~~~
1059 checkfaults results a_1
1060 ~~~~~
1061
1062 The command will check the number of faults in the source shape (*a_1*) and compare it
1063 with number of faults in the resulting shape (*result*). If shape *result* contains
1064 more faults, you will get an error:
1065 ~~~~~
1066 checkfaults results a_1
1067 Error : Number of faults is 5
1068 ~~~~~
1069 It is possible to set the reference value for comparison (reference value is 4):
1070
1071 ~~~~~
1072 checkfaults results a_1 4
1073 ~~~~~
1074
1075 If number of faults in the resulting shape is unstable, reference value should be set to "-1".
1076 As a result command *checkfaults* will return the following error:
1077
1078 ~~~~~
1079 checkfaults results a_1 -1
1080 Error : Number of faults is UNSTABLE
1081 ~~~~~
1082
1083 @subsubsection testmanual_5_3_2 Shape tolerance
1084
1085 The maximal tolerance of sub-shapes of each kind of the resulting shape can be extracted from output of tolerance command as follows:
1086
1087 ~~~~~
1088 set tolerance [tolerance result]
1089 regexp { *FACE +: +MAX=([-0-9.+eE]+)} $tolerance dummy max_face
1090 regexp { *EDGE +: +MAX=([-0-9.+eE]+)} $tolerance dummy max_edgee
1091 regexp { *VERTEX +: +MAX=([-0-9.+eE]+)} $tolerance dummy max_vertex
1092 ~~~~~
1093
1094 It is possible to use command *checkmaxtol* to check maximal tolerance of shape and compare it with reference value.
1095
1096 Use: checkmaxtol shape [options...]
1097
1098 Allowed options are:
1099  *   <i>-ref</i> -- reference value of maximum tolerance;
1100  *   <i>-source</i> -- list of shapes to compare with;
1101  *   <i>-min_tol</i> -- minimum tolerance for comparison;
1102  *   <i>-multi_tol</i> -- tolerance multiplier.
1103
1104 The default syntax of *checkmaxtol* command for comparison with the reference value:
1105 ~~~~~
1106 checkmaxtol result -ref 0.00001
1107 ~~~~~
1108
1109 There is an opportunity to compare max tolerance of resulting shape with max tolerance of source shape.
1110 In the following example command *checkmaxtol* gets max tolerance among objects *a_1* and *a_2*.
1111 Then it chooses the maximum value between founded tolerance and value -min_tol (0.000001)
1112 and multiply it on the coefficient -multi_tol (i.e. 2):
1113
1114 ~~~~~
1115 checkmaxtol result -source {a_1 a_2} -min_tol 0.000001 -multi_tol 2
1116 ~~~~~
1117
1118 If the value of maximum tolerance more than founded tolerance for comparison, the command will return an error.
1119
1120 Also, command *checkmaxtol* can be used to get max tolerance of the shape:
1121
1122 ~~~~~
1123 set maxtol [checkmaxtol result]
1124 ~~~~~
1125
1126 @subsubsection testmanual_5_3_3 Shape volume, area, or length
1127
1128 Use command *vprops, sprops,* or *lprops* to correspondingly measure volume, area, or length of the shape produced by the test. The value can be extracted from the result of the command by *regexp*.
1129
1130 Example:
1131 ~~~~~
1132 # check area of shape result with 1% tolerance
1133 regexp {Mass +: +([-0-9.+eE]+)} [sprops result] dummy area
1134 if { abs($area - $expected) > 0.1 + 0.01 * abs ($area) } {
1135     puts "Error: The area of result shape is $area, while expected $expected"
1136 }
1137 ~~~~~
1138
1139 @subsubsection testmanual_5_3_4 Memory leaks
1140
1141 The test system measures the amount of memory used by each test case. Considerable deviations (as well as the overall difference) in comparison with reference results can be reported by command *testdiff*  (see @ref testmanual_4_4).
1142
1143 To check memory leak on a particular operation, run it in a cycle, measure the memory consumption at each step and compare it with a threshold value.
1144 The command *checktrend* (defined in *tests/bugs/begin*) can be used to analyze a sequence of memory measurements and to get a statistically based evaluation of the leak presence.
1145
1146 Example: 
1147 ~~~~~
1148 set listmem {}
1149 for {set i 1} {$i < 100} {incr i} {
1150     # run suspect operation 
1151     â€¦
1152     # check memory usage (with tolerance equal to half page size)
1153     lappend listmem [expr [meminfo w] / 1024]
1154     if { [checktrend $listmem 0 256 "Memory leak detected"] } {
1155         puts "No memory leak, $i iterations"
1156         break
1157     }
1158 }
1159 ~~~~~
1160
1161 @subsubsection testmanual_5_3_5 Visualization
1162
1163 The following command sequence allows you to take a snapshot of the viewer, give it the name of the test case, and save in the directory indicated by Tcl variable *imagedir*. 
1164
1165 ~~~~~
1166 vinit
1167 vclear
1168 vdisplay result
1169 vsetdispmode 1
1170 vfit
1171 vzfit
1172 vdump $imagedir/${casename}_shading.png
1173 ~~~~~
1174
1175 This image will be included in the HTML log produced by *testgrid* command and will be checked for non-regression through comparison of images by command *testdiff*.
1176
1177 Also it is possible to use command *checkview* to make a snapshot of the viewer.
1178
1179 Use: checkview [options...]
1180 Allowed options are:
1181 *   <i>-display shapename </i>  -- displays shape with name *shapename*;
1182 *   <i>-3d </i> -- displays shape in 3d viewer;
1183 *   <i>-2d [ v2d / smallview ] </i> - displays shape in 2d viewer (the default viewer is *smallview*);
1184 *   <i>-path PATH</i> -- sets the location of the saved viewer screenshot;
1185 *   <i>-vdispmode N</i> -- sets *vdispmode* for 3d viewer (default value is 1)
1186 *   <i>-screenshot</i> -- makes a screenshot of already created viewer
1187 *   The procedure can check a property of shape (length, area or volume) and compare it with value *N*:
1188         * <i>-l [N]</i>
1189         * <i>-s [N]</i>
1190         * <i>-v [N]</i>
1191         * If the current property is equal to value *N*, the shape is marked as valid in the procedure.
1192         * If value *N* is not given, the procedure will mark the shape as valid if the current property is non-zero.
1193 *   <i>-with {a b c}</i> -- displays shapes *a, b* and *c* together with the shape (if the shape is valid)
1194 *   <i>-otherwise {d e f}</i> -- displays shapes *d, e* and *f* instead of the shape (if the shape is NOT valid)
1195
1196 Note that is required to use either option <i> -2d </i> or option <i> -3d</i>.
1197
1198 Examples:
1199 ~~~~~
1200 checkview -display result -2d -path ${imagedir}/${test_image}.png
1201 checkview -display result -3d -path ${imagedir}/${test_image}.png
1202 checkview -display result_2d -2d v2d -path ${imagedir}/${test_image}.png
1203 ~~~~~
1204
1205 ~~~~~
1206 box a 10 10 10
1207 box b 5 5 5 10 10 10
1208 bcut result b a
1209 set result_vertices [explode result v]
1210 checkview -display result -2d -with ${result_vertices} -otherwise { a b } -l -path ${imagedir}/${test_image}.png
1211 ~~~~~
1212
1213 ~~~~~
1214 box a 10 10 10
1215 box b 5 5 5 10 10 10
1216 bcut result b a
1217 vinit
1218 vdisplay a b
1219 vfit
1220 checkview -screenshot -3d -path ${imagedir}/${test_image}.png
1221 ~~~~~
1222
1223 @subsubsection testmanual_5_3_6 Number of free edges
1224
1225 Procedure *checkfreebounds* compares the number of free edges with a reference value.
1226
1227 Use: checkfreebounds shape ref_value [options...]
1228
1229 Allowed options are:
1230  * <i>-tol N</i> -- used tolerance (default -0.01);
1231  * <i>-type N</i> -- used type, possible values are "closed" and "opened" (default "closed").
1232
1233 ~~~~~
1234 checkfreebounds result 13
1235 ~~~~~
1236
1237 Option <i>-tol N</i> defines tolerance for command *freebounds*, which is used within command *checkfreebounds*.
1238
1239 Option <i>-type N</i> is used to select the type of counted free edges: closed or open.
1240
1241 If the number of free edges in the resulting shape is unstable, the reference value should be set to "-1".
1242 As a result command *checkfreebounds* will return the following error:
1243
1244 ~~~~~
1245 checkfreebounds result -1
1246 Error : Number of free edges is UNSTABLE
1247 ~~~~~
1248
1249 @subsubsection testmanual_5_3_7 Compare numbers
1250
1251 Procedure *checkreal* checks the equality of two reals with a tolerance (relative and absolute).
1252
1253 Use: checkreal name value expected tol_abs tol_rel
1254
1255 ~~~~~
1256 checkreal "Some important value" $value 5 0.0001 0.01
1257 ~~~~~
1258
1259 @subsubsection testmanual_5_3_8 Check number of sub-shapes
1260
1261 Procedure *checknbshapes* compares the number of sub-shapes in "shape" with the given reference data.
1262
1263 Use: checknbshapes shape [options...]
1264
1265 Allowed options are:
1266  * <i>-vertex N
1267  * -edge N
1268  * -wire N
1269  * -face N
1270  * -shell N
1271  * -solid N
1272  * -compsolid N
1273  * -compound N
1274  * -shape N
1275  * -t</i> -- compares the number of sub-shapes in "shape" counting
1276       the same sub-shapes with different location as different sub-shapes.
1277  * <i>-m msg</i> -- prints "msg" in case of error
1278
1279 ~~~~~
1280 checknbshapes result -vertex 8 -edge 4
1281 ~~~~~
1282
1283 @subsubsection testmanual_5_3_9 Check pixel color
1284
1285 Command *checkcolor* can be used to check pixel color.
1286
1287 Use: checkcolor x y red green blue
1288
1289 where:
1290  * <i>x, y</i> -- pixel coordinates;
1291  * <i>red green blue</i> -- expected pixel color (values from 0 to 1).
1292
1293 This procedure checks color with tolerance (5x5 area).
1294
1295 Next example will compare color of point with coordinates x=100 y=100 with RGB color R=1 G=0 B=0.
1296 If colors are not equal, procedure will check the nearest ones points (5x5 area)
1297 ~~~~~
1298 checkcolor 100 100 1 0 0
1299 ~~~~~
1300
1301 @subsubsection testmanual_5_3_10 Compute length, area and volume of input shape
1302
1303 Procedure *checkprops* computes length, area and volume of the input shape.
1304
1305 Use: checkprops shapename [options...]
1306
1307 Allowed options are:
1308  * <i>-l LENGTH</i> -- command *lprops*, computes the mass properties of all edges in the shape with a linear density of 1;
1309  * <i>-s AREA</i> -- command *sprops*, computes the mass properties of all faces with a surface density of 1; 
1310  * <i>-v VOLUME</i> -- command *vprops*, computes the mass properties of all solids with a density of 1;
1311  * <i>-eps EPSILON</i> -- the epsilon defines relative precision of computation;
1312  * <i>-deps DEPSILON</i> -- the epsilon defines relative precision to compare corresponding values;
1313  * <i>-equal SHAPE</i> -- compares area, volume and length of input shapes. Puts error if they are not equal;
1314  * <i>-notequal SHAPE</i> -- compares area, volume and length of input shapes. Puts error if they are equal.
1315
1316 Options <i> -l, -s </i> and <i> -v</i> are independent and can be used in any order. Tolerance *epsilon* is the same for all options.
1317
1318 ~~~~~
1319 checkprops result -s 6265.68 
1320 checkprops result -s -equal FaceBrep
1321 ~~~~~
1322
1323 @subsubsection testmanual_5_3_11 Parse output dump and compare it with reference values
1324
1325 Procedure *checkdump* is used to parse output dump and compare it with reference values.
1326
1327 Use: checkdump shapename [options...]
1328
1329 Allowed options are:
1330  * <i>-name NAME</i> -- list of parsing parameters (e.g. Center, Axis, etc.);
1331  * <i>-ref VALUE</i> -- list of reference values for each parameter in *NAME*; 
1332  * <i>-eps EPSILON</i> -- the epsilon defines relative precision of computation.
1333
1334 ~~~~~
1335 checkdump result -name {Center Axis XAxis YAxis Radii} -ref {{-70 0} {-1 -0} {-1 -0} {0 -1} {20 10}} -eps 0.01
1336 ~~~~~
1337
1338 @subsubsection testmanual_5_3_12 Compute length of input curve
1339
1340 Procedure *checklength* computes length of the input curve.
1341
1342 Use: checklength curvename [options...]
1343   
1344 Allowed options are:
1345  * <i>-l LENGTH</i> -- command *length*, computes the length of the input curve with precision of computation;
1346  * <i>-eps EPSILON</i> -- the epsilon defines a relative precision of computation;
1347  * <i>-equal CURVE</i> -- compares the length of input curves. Puts error if they are not equal;
1348  * <i>-notequal CURVE</i> -- compares the length of input curves. Puts error if they are equal.
1349
1350 ~~~~~
1351 checklength cp1 -l 7.278
1352 checklength res -l -equal ext_1
1353 ~~~~~
1354 @subsubsection testmanual_5_3_13 Check maximum deflection, number of triangles and nodes in mesh
1355
1356 Command *checktrinfo* can be used to to check the maximum deflection, as well as the number of nodes and triangles in mesh.
1357
1358 Use: checktrinfo shapename [options...]
1359
1360 Allowed options are:
1361  * <i>-tri [N]</i> --  compares the current number of triangles in *shapename* mesh with the given reference data.
1362       If reference value N is not given and the current number of triangles is equal to 0, procedure *checktrinfo* will print an error.
1363  * <i>-nod [N]</i> --  compares the current number of nodes in *shapename* mesh with the given reference data.
1364       If reference value N is not given and the current number of nodes is equal to 0, procedure *checktrinfo* will print an error.
1365  * <i>-defl [N]</i> -- compares the current value of maximum deflection in *shapename* mesh with the given reference data.
1366       If reference value N is not given and current maximum deflection is equal to 0, procedure *checktrinfo* will print an error.
1367  * <i>-max_defl N</i> --     compares the current value of maximum deflection in *shapename* mesh with the max possible value.
1368  * <i>-tol_abs_tri N</i> --  absolute tolerance for comparison of number of triangles (default value 0).
1369  * <i>-tol_rel_tri N</i> --  relative tolerance for comparison of number of triangles (default value 0).
1370  * <i>-tol_abs_nod N</i> --  absolute tolerance for comparison of number of nodes (default value 0).
1371  * <i>-tol_rel_nod N</i> --  relative tolerance for comparison of number of nodes (default value 0).
1372  * <i>-tol_abs_defl N</i> -- absolute tolerance for deflection comparison (default value 0).
1373  * <i>-tol_rel_defl N</i> -- relative tolerance for deflection comparison (default value 0).
1374  * <i>-ref [trinfo a]</i> -- compares deflection, number of triangles and nodes in *shapename* and *a*.
1375
1376 Note that options <i> -tri, -nod </i> and <i> -defl </i> do not work together with option <i> -ref</i>.
1377
1378 Examples:
1379
1380 Comparison with some reference values:
1381 ~~~~~
1382 checktrinfo result -tri 129 -nod 131 -defl 0.01
1383 ~~~~~
1384
1385 Comparison with another mesh:
1386 ~~~~~
1387 checktrinfo result -ref [tringo a]
1388 ~~~~~
1389
1390 Comparison of deflection with the max possible value:
1391 ~~~~~
1392 checktrinfo result -max_defl 1
1393 ~~~~~
1394
1395 Check that the current values are not equal to zero:
1396 ~~~~~
1397 checktrinfo result -tri -nod -defl
1398 ~~~~~
1399
1400 Check that the number of triangles and the number of nodes are not equal to some specific values:
1401 ~~~~~
1402 checktrinfo result -tri !10 -nod !8
1403 ~~~~~
1404
1405 It is possible to compare current values with reference values with some tolerances.
1406 Use options <i>-tol_\* </i> for that.
1407 ~~~~~
1408 checktrinfo result -defl 1 -tol_abs_defl 0.001
1409 ~~~~~