2263bd3fa96e781155fef08fedaa0376e9a28c62
[nit.git] / share / man / nitunit.md
1 # NAME
2
3 nitunit - executes the unit tests from Nit source files.
4
5 # SYNOPSIS
6
7 nitunit [*options*] FILE...
8
9 # DESCRIPTION
10
11 Unit testing in Nit can be achieved in two ways:
12
13 * using `DocUnits` in code comments or in markdown files
14 * using `TestSuites` with test unit files
15
16 `DocUnits` are executable pieces of code found in the documentation of groups, modules,
17 classes and properties.
18 They are used for documentation purpose, they should be kept simple and illustrative.
19 More advanced unit testing can be done using TestSuites.
20
21 `DocUnits` can also be used in any markdown files.
22
23 `TestSuites` are test files coupled to a tested module.
24 They contain a list of test methods called TestCase.
25
26 ## Working with `DocUnits`
27
28 DocUnits are blocks of executable code placed in comments of modules, classes and properties.
29 The execution can be verified using `assert`.
30
31 Example with a class:
32
33 ~~~
34 module foo
35 #    var foo = new Foo
36 #    assert foo.bar == 10
37 class Foo
38     var bar = 10
39 end
40 ~~~
41
42 Everything used in the test must be declared.
43 To test a method you have to instantiate its class:
44
45 ~~~
46 module foo
47 #    var foo = new Foo
48 #    assert foo.bar == 10
49 class Foo
50     #    var foo = new Foo
51     #    assert foo.baz(1, 2) == 3
52     fun baz(a, b: Int) do return a + b
53 end
54 ~~~
55
56 In a single piece of documentation, each docunit is considered a part of a single module, thus regrouped when
57 tested.
58 Therefore, it is possible (and recommended) to split docunits in small parts if it make the explanation easier.
59
60 ~~~~
61 # Some example of grouped docunits
62 #
63 # Declare and initialize a variable `a`.
64 #
65 #     var a = 1
66 #
67 # So the value of `a` can be used
68 #
69 #     assert a == 1
70 #
71 # even in complex operations
72 #
73 #     assert a + 1 == 2
74 fun foo do end
75 ~~~~
76
77 Sometime, some blocks of code has to be included in documentation but not considered by `nitunit`.
78 Those blocks are distinguished by their tagged fences (untagged fences or fences tagged `nit` are considered to be docunits).
79
80 ~~~~
81 # Some ASCII drawing
82 #
83 # ~~~~raw
84 #   @<
85 # <__)
86 # ~~~~
87 fun foo do end
88 ~~~~
89
90 The special fence-tag `nitish` could also be used to indicate pseudo-nit that will be ignored by nitunit but highlighted by nitdoc.
91 Such `nitish` piece of code can be used to enclose examples that cannot compile or that one do not want to be automatically executed.
92
93 ~~~~
94 # Some pseudo-nit
95 #
96 # ~~~~nitish
97 # var a: Int = someting
98 # # ...
99 # if a == 1 then something else something-else
100 # ~~~~
101 #
102 # Some code to not try to execute automatically
103 #
104 # ~~~~nitish
105 # system("rm -rf /")
106 # ~~~~
107 ~~~~
108
109 The `nitunit` command is used to test Nit files:
110
111     $ nitunit foo.nit
112
113 Groups (directories) can be given to test the documentation of the group and of all its Nit files:
114
115     $ nitunit lib/foo
116
117 Finally, standard markdown documents can be checked with:
118
119     $ nitunit foo.md
120
121 When testing, the environment variable `NIT_TESTING` is set to `true`.
122 This flag can be used by libraries and program to prevent (or limit) the execution of dangerous pieces of code.
123
124 ~~~~~
125 # NIT_TESTING is automatically set.
126 #
127 #     assert "NIT_TESTING".environ == "true"
128 ~~~~
129
130 ## Working with `TestSuites`
131
132 TestSuites are Nit modules that define a set of TestCases.
133
134 A test suite is a module that uses the annotation `is test`.
135
136 It is common that a test suite focuses on testing a single module.
137 In this case, the name of the test suite is often `test_foo.nit` where `foo.nit` is the tested module.
138
139 The structure of a test suite is the following:
140
141 ~~~~
142 # test suite for module `foo`
143 module test_foo is test
144
145 import foo # can be intrude to test private things
146
147 class TestFoo
148     test
149
150     # test case for `foo::Foo::baz`
151     fun baz is test do
152         var subject = new Foo
153         assert subject.baz(1, 2) == 3
154     end
155 end
156 ~~~~
157
158 Test suite can be executed using the same `nitunit` command:
159
160     $ nitunit foo.nit
161
162 `nitunit` will execute a test for each method with the `test` annotation in a class
163 also annotated with `test` so multiple tests can be executed for a single method:
164
165 ~~~~
166 class TestFoo
167     test
168
169     fun baz_1 is test do
170         var subject = new Foo
171         assert subject.baz(1, 2) == 3
172     end
173     fun baz_2 is test do
174         var subject = new Foo
175         assert subject.baz(1, -2) == -1
176     end
177 end
178 ~~~~
179
180 ## Black Box Testing
181
182 Sometimes, it is easier to validate a `TestCase` by comparing its output with a text file containing the expected result.
183
184 For each TestCase `test_bar` of a TestSuite `test_mod.nit`, a corresponding file with the expected output is looked for:
185
186 * "test_mod.sav/test_bar.res". I.e. test-cases grouped by test-suites.
187
188         This is the default and is useful if there is a lot of test-suites and test-cases in a directory
189
190 * "sav/test_bar.res". I.e. all test-cases grouped in a common sub-directory.
191
192         Useful if there is a lot of test-suites OR test-cases in a directory.
193
194 * "test_bar.res" raw in the directory.
195
196         Useful is there is a few test-suites and test-cases in a directory.
197
198 All 3 are exclusive. If more than one exists, the test-case is failed.
199
200 If a corresponding file then the output of the test-case is compared with the file.
201
202 The `diff(1)` command is used to perform the comparison.
203 The test is failed if non-zero is returned by `diff`.
204
205 ~~~
206 module test_mod is test
207
208 class TestFoo
209         test
210
211         fun bar is test do
212                 print "Hello!"
213         end
214 end
215 ~~~
216
217 Where `test_mod.sav/test_bar.res` contains
218
219 ~~~raw
220 Hello!
221 ~~~
222
223 If no corresponding `.res` file exists, then the output of the TestCase is ignored.
224
225 To helps the management of the expected results, the option `--autosav` can be used to automatically create and update them.
226
227
228 ## Configuring TestSuites
229
230 `TestSuite`s also provide annotations to configure the test run:
231 `before` and `after` annotations can be applied to methods that must be called before/after each test case.
232 They can be used to factorize repetitive tasks:
233
234 ~~~~
235 class TestFoo
236     test
237
238     var subject: Foo
239
240     # Mandatory empty init
241     init do end
242
243     # Method executed before each test
244     fun set_up is before do
245         subject = new Foo
246     end
247     fun baz_1 is test do
248         assert subject.baz(1, 2) == 3
249     end
250     fun baz_2 is test do
251         assert subject.baz(1, -2) == -1
252     end
253 end
254 ~~~~
255
256 When using custom test attributes, an empty `init` must be declared to allow automatic test running.
257
258 `before_all` and `after_all` annotations can be applied to methods that must be called before/after each test suite.
259 They have to be declared at top level:
260
261 ~~~~
262 module test_bdd_connector
263 import bdd_connector
264 # Testing the bdd_connector
265 class TestConnector
266     # test cases using a server
267 end
268 # Method executed before testing the module
269 fun before_module do
270     # start server before all test cases
271 end
272 # Method executed after testing the module
273 fun after_module do
274     # stop server after all test cases
275 end
276 ~~~~
277
278 ## Accessing the test suite environment
279
280 The `NIT_TESTING_PATH` environment variable contains the current test suite
281 file path.
282 Nitunit define this variable before the execution of each test suite.
283 It can be used to access files based on the current test suite location:
284
285 ~~~
286 class TestWithPath
287     test
288
289     fun test_suite_path do
290         assert "NIT_TESTING_PATH".environ != ""
291     end
292 end
293 ~~~
294
295 ## Generating test suites
296
297 Write test suites for big modules can be a repetitive and boring task...
298 To make it easier, `nitunit` can generate test skeletons for Nit modules:
299
300     $ nitunit --gen-suite foo.nit
301
302 This will generate the test suite `test_foo` containing test case stubs for all public
303 methods found in `foo.nit`.
304
305
306 # OPTIONS
307
308 ### `--full`
309 Process also imported modules.
310
311 By default, only the modules indicated on the command line are tested.
312
313 With the `--full` option, all imported modules (even those in standard) are also precessed.
314
315 ### `-o`, `--output`
316 Output name (default is 'nitunit.xml').
317
318 `nitunit` produces a XML file compatible with JUnit.
319
320 ### `--dir`
321 Working directory (default is 'nitunit.out').
322
323 In order to execute the tests, nit files are generated then compiled and executed in the giver working directory.
324
325 In case of success, the directory is removed.
326 In case of failure, it is kept as is so files can be investigated.
327
328 ### `--nitc`
329 nitc compiler to use.
330
331 By default, nitunit tries to locate the `nitc` program with the environment variable `NITC` or heuristics.
332 The option is used to indicate a specific nitc binary.
333
334 ### `--no-act`
335 Does not compile and run tests.
336
337 ### `-p`, `--pattern`
338 Only run test case with name that match pattern.
339
340 Examples: `TestFoo`, `TestFoo*`, `TestFoo::test_foo`, `TestFoo::test_foo*`, `test_foo`, `test_foo*`
341
342 ### `--autosav`
343 Automatically create/update .res files for black box testing.
344
345 If a black block test fails because a difference between the expected result and the current result then the expected result file is updated (and the test is passed).
346
347 If a test-case of a test-suite passes but that some output is generated, then an expected result file is created.
348
349 It is expected that the created/updated files are checked since the tests are considered passed.
350 A VCS like `git` is often a good tool to check the creation and modification of those files.
351
352 ### `--no-time`
353 Disable time information in XML.
354
355 This is used to have reproducible XML results.
356
357 This option is automatically activated if `NIT_TESTING` is set.
358
359 ## SUITE GENERATION
360
361 ### `--gen-suite`
362 Generate test suite skeleton for a module.
363
364 ### `-f`, `--force`
365 Force test generation even if file exists.
366
367 Any existing test suite will be overwritten.
368
369 ### `--private`
370 Also generate test case for private methods.
371
372 ### `--only-show`
373 Only display the skeleton, do not write any file.
374
375
376 # ENVIRONMENT VARIABLES
377
378 ### `NITC`
379
380 Indicate the specific Nit compiler executable to use. See `--nitc`.
381
382 ### `NIT_TESTING`
383
384 The environment variable `NIT_TESTING` is set to `true` during the execution of program tests.
385 Some libraries of programs can use it to produce specific reproducible results; or just to exit their executions.
386
387 Unit-tests may unset this environment variable to retrieve the original behavior of such piece of software.
388
389 ### `SRAND`
390
391 In order to maximize reproducibility, `SRAND` is set to 0.
392 This make the pseudo-random generator no random at all.
393 See `Sys::srand` for details.
394
395 To retrieve the randomness, unit-tests may unset this environment variable then call `srand`.
396
397 ### `NIT_TESTING_ID`
398
399 Parallel executions can cause some race collisions on named resources (e.g. DB table names).
400 To solve this issue, `NIT_TESTING_ID` is initialized with a distinct integer identifier that can be used to give unique names to resources.
401
402 Note: `rand` is not a recommended way to get a distinct identifier because its randomness is disabled by default. See `SRAND`.
403
404 ### `NIT_TESTING_PATH`
405
406 Only available for test suites.
407 Contains the module test suite path.
408
409 # SEE ALSO
410
411 The Nit language documentation and the source code of its tools and libraries may be downloaded from <http://nitlanguage.org>