nitunit: set the envvar NIT_TESTING
[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 files that define a set of TestCases for a particular module.
133
134 The test suite must be called `test_` followed by the name of the module to test.
135 So for the module `foo.nit` the test suite will be called `test_foo.nit`.
136
137 The structure of a test suite is the following:
138
139 ~~~~
140 # test suite for module `foo`
141 module test_foo
142 import foo # can be intrude to test private things
143 class TestFoo
144     # test case for `foo::Foo::baz`
145     fun test_baz do
146         var subject = new Foo
147         assert subject.baz(1, 2) == 3
148     end
149 end
150 ~~~~
151
152 Test suite can be executed using the same `nitunit` command:
153
154     $ nitunit foo.nit
155
156 `nitunit` will execute a test for each method named `test_*` in a class named `Test*`
157 so multiple tests can be executed for a single method:
158
159 ~~~~
160 class TestFoo
161     fun test_baz_1 do
162         var subject = new Foo
163         assert subject.baz(1, 2) == 3
164     end
165     fun test_baz_2 do
166         var subject = new Foo
167         assert subject.baz(1, -2) == -1
168     end
169 end
170 ~~~~
171
172 `TestSuites` also provide methods to configure the test run:
173
174 `before_test` and `after_test`: methods called before/after each test case.
175 They can be used to factorize repetitive tasks:
176
177 ~~~~
178 class TestFoo
179     var subject: Foo
180     # Mandatory empty init
181     init do end
182     # Method executed before each test
183     fun before_test do
184         subject = new Foo
185     end
186     fun test_baz_1 do
187         assert subject.baz(1, 2) == 3
188     end
189     fun test_baz_2 do
190         assert subject.baz(1, -2) == -1
191     end
192 end
193 ~~~~
194
195 When using custom test attributes, an empty `init` must be declared to allow automatic test running.
196
197 `before_module` and `after_module`: methods called before/after each test suite.
198 They have to be declared at top level:
199
200 ~~~~
201 module test_bdd_connector
202 import bdd_connector
203 # Testing the bdd_connector
204 class TestConnector
205     # test cases using a server
206 end
207 # Method executed before testing the module
208 fun before_module do
209     # start server before all test cases
210 end
211 # Method executed after testing the module
212 fun after_module do
213     # stop server after all test cases
214 end
215 ~~~~
216
217 ## Generating test suites
218
219 Write test suites for big modules can be a repetitive and boring task...
220 To make it easier, `nitunit` can generate test skeletons for Nit modules:
221
222     $ nitunit --gen-suite foo.nit
223
224 This will generate the test suite `test_foo` containing test case stubs for all public
225 methods found in `foo.nit`.
226
227
228 # OPTIONS
229
230 ### `--full`
231 Process also imported modules.
232
233 By default, only the modules indicated on the command line are tested.
234
235 With the `--full` option, all imported modules (even those in standard) are also precessed.
236
237 ### `-o`, `--output`
238 Output name (default is 'nitunit.xml').
239
240 ### `nitunit` produces a XML file comatible with JUnit.
241
242 ### `--dir`
243 Working directory (default is '.nitunit').
244
245 In order to execute the tests, nit files are generated then compiled and executed in the giver working directory.
246
247 ### `--no-act`
248 Does not compile and run tests.
249
250 ### `-p`, `--pattern`
251 Only run test case with name that match pattern.
252
253 Examples: `TestFoo`, `TestFoo*`, `TestFoo::test_foo`, `TestFoo::test_foo*`, `test_foo`, `test_foo*`
254
255 ### `-t`, `--target-file`
256 Specify test suite location.
257
258 ## SUITE GENERATION
259
260 ### `--gen-suite`
261 Generate test suite skeleton for a module.
262
263 ### `-f`, `--force`
264 Force test generation even if file exists.
265
266 Any existing test suite will be overwritten.
267
268 ### `--private`
269 Also generate test case for private methods.
270
271 ### `--only-show`
272 Only display the skeleton, do not write any file.
273
274 # SEE ALSO
275
276 The Nit language documentation and the source code of its tools and libraries may be downloaded from <http://nitlanguage.org>