61eebb29680434bf4e63d7b219dcec10f672d354
[nit.git] / src / testing / README.md
1 # Test unit generation and execution for Nit.
2
3 In Nit, unit testing can be achieved in two ways:
4
5 * using `DocUnits` in code comments
6 * using `TestSuites` with test unit files
7
8 DocUnits are executable pieces of code found in the documentation of modules,
9 classes and properties.
10 They are used for documentation purpose, they should be kept simple and illustrative.
11 More advanced unit testing can be done using TestSuites.
12
13 TestSuites are test files coupled to a tested module.
14 They contain a list of test methods called TestCase.
15
16 ## Working with `DocUnits`
17
18 With DocUnits, executable code can be placed in comments of modules, classes and properties.
19 The execution can be verified using `assert`
20
21 Example with a class:
22
23         module foo
24
25         #    var foo = new Foo
26         #    assert foo.bar == 10
27         class Foo
28                 var bar = 10
29         end
30
31 Everything used in the test must be declared.
32 To test a method you have to instanciate its class:
33
34         module foo
35
36         #    var foo = new Foo
37         #    assert foo.bar == 10
38         class Foo
39                 #    var foo = new Foo
40                 #    assert foo.baz(1, 2) == 3
41                 fun baz(a, b: Int): Int do return a + b
42         end
43
44 `nitunit` is used to test Nit files:
45
46 ~~~sh
47         $ nitunit foo.nit
48 ~~~
49
50 ## Working with `TestSuites`
51
52 TestSuites are Nit files that define a set of TestCase for a particular module.
53
54 The test suite module must be declared using the `test` annotation.
55 The structure of a test suite is the following:
56
57 ~~~nitish
58 # test suite for module `foo`
59 module test_foo is test
60
61 import foo # can be intrude to test private things
62
63 class TestFoo
64         test
65
66         # test case for `foo::Foo::baz`
67         fun baz is test do
68                 var subject = new Foo
69                 assert subject.baz(1, 2) == 3
70         end
71 end
72 ~~~
73
74 Test suite can be executed using the same `nitunit` command:
75
76 ~~~sh
77         $ nitunit foo.nit
78 ~~~
79
80 To be started automatically with nitunit, the module must be called `test_`
81 followed by the name of the module to test.
82 So for the module `foo.nit` the test suite will be called `test_foo.nit`.
83 Otherwise, you can use the `-t` option to specify the test suite module name:
84
85 ~~~sh
86         $ nitunit foo.nit -t my_test_suite.nit
87 ~~~
88
89 `nitunit` will execute a test for each method annotated with `test` in a class also annotated with `test`
90 so multiple tests can be executed for a single method:
91
92 ~~~nitish
93 class TestFoo
94         test
95
96         fun baz_1 is test do
97                 var subject = new Foo
98                 assert subject.baz(1, 2) == 3
99         end
100
101         fun baz_2 is test do
102                 var subject = new Foo
103                 assert subject.baz(1, -2) == -1
104         end
105 end
106 ~~~
107
108 `TestSuites` also provide methods to configure the test run:
109
110 `before` and `after` annotations can be added to methods that must be called before/after each test case.
111 They can be used to factorize repetitive tasks:
112
113 ~~~nitish
114 class TestFoo
115         test
116
117         var subject: Foo is noinit
118
119         # Method executed before each test
120         fun set_up is before do
121                 subject = new Foo
122         end
123
124         fun baz_1 is test do
125                 assert subject.baz(1, 2) == 3
126         end
127
128         fun baz_2 is test do
129                 assert subject.baz(1, -2) == -1
130         end
131 end
132 ~~~
133
134 When using custom test attributes, a empty init must be declared to allow automatic test running.
135
136 `before_all` and `after_all` annotations can be set on methods that must be called before/after each test suite.
137 They have to be declared at top level:
138
139         module test_bdd_connector
140
141         import bdd_connector
142
143         # Testing the bdd_connector
144         class TestConnector
145                 test
146                 # test cases using a server
147         end
148
149         # Method executed before testing the module
150         fun before_module is before_all do
151                 # start server before all test cases
152         end
153
154         # Method executed after testing the module
155         fun after_module is after_all do
156                 # stop server after all test cases
157         end
158
159 ## Generating test suites
160
161 Write test suites for big modules can be a pepetitive and boring task...
162 To make it easier, `nitunit` can generate test skeletons for Nit modules:
163
164 ~~~sh
165         $ nitunit --gen-suite foo.nit
166 ~~~
167
168 This will generate the test suite `test_foo` containing test case stubs for all public
169 methods found in `foo.nit`.
170
171 Useful options with `--gen-suite`:
172
173 * `--private`: also generate tests for protected and private methods
174 * `--force`: force generation of the skeleton (existing test suite will be overwritten)