1: [[!meta title="Kyua: An introduction for NetBSD users"]]
2: [[!toc levels=2]]
3:
4: The [Automated Testing Framework](ATF), or ATF for short, is a software
5: package composed of two parts: the *ATF libraries* and the *ATF tools*.
6: The ATF libraries provide a toolkit for developers to implement test cases
7: in a variety of languages: C, C++ and POSIX shell. The ATF tools provide
8: the utilities to run such test cases in an automated way and to generate
9: reports.
10:
11: The ATF tools have some
12: [design and, particularly, implementation problems](http://mail-index.netbsd.org/atf-devel/2010/11/13/msg000206.html)
13: that make it hard to add support for highly desired features such as
14: parallel execution of test cases, unified dashboards covering multiple test
15: runs ([like this one](http://releng.netbsd.org/test-results.html)), the
16: ability to run legacy or third-party test programs that do not use the ATF
17: libraries, and the ability to tune the timeout of test cases.
18:
19: *Kyua's current goal is to reimplement _only_ the ATF tools* while
20: maintaining backwards compatibility with the tests written with the ATF
21: libraries (i.e. with the NetBSD test suite).
22:
23: Because Kyua is a replacement of some ATF components, the end goal is to
24: integrate Kyua into the NetBSD base system (just as ATF is) and remove the
25: deprecated ATF components. Removing the deprecated components will allow
26: us to make the above-mentioned improvements to Kyua, as well as many
27: others, without having to deal with the obsolete ATF code base.
28: *Discussing how and when this transition might happen is out of the scope
29: of this document at the moment.*
30:
31: This page provides instructions on how to use Kyua with the current NetBSD
32: test suite so that you can experiment with the tool, familiarize yourself
33: with it and provide feedback early on.
34:
35: **If you would like more details on how the import of Kyua into NetBSD will
36: happen, please see [[Kyua: The way into NetBSD|/kyua/import]].**
37:
38: # What's in the name?
39:
40: You should really think of Kyua as ATF 2.x. Then, why isn't it just ATF
41: 2.x?
42:
43: To be honest, I never liked the ATF name: it was picked for me as part of
44: the Google Summer of Code 2007 program and I did not think about changing
45: it at that time. A year later, I learned that the ATF acronym is severely
46: overloaded, which makes it hard to find the project on popular search
47: engines, and has unpopular connotations in specific countries.
48:
49: So, as part of the rewrite, I decided to choose a new name: a name that is
50: not an acronym and thus can be easily pronounced, and a name that is quite
51: unique in search results. The name is Kyua, which is just a play on the
52: pronounciation of the Q.A. acronym. Originally, my intention was to
53: pronounce Kyua as Q.A., but in reality this never happened. Today, just
54: read the name as your instinct would: "Kyu-ah".
55:
56: # Why is Kyua a third-party project?
57:
58: Kyua's main consumer is NetBSD. One could argue that Kyua should be
59: developed within NetBSD and maintained in the NetBSD source tree. However,
60: there is nothing in the Kyua project that inherently depends on NetBSD, and
61: maintaining it as a third-party package is a way to keep the developers
62: honest regarding portability.
63:
64: Ideally, other projects (such as FreeBSD) would make use of Kyua too for
65: their testing needs, and if that happened we would be able to share tests
66: with them pretty easily. Forcing a portable codebase in the upstream
67: repository helps in this. (Be aware that different individuals from
68: FreeBSD and Minix have shown interest in adopting Kyua for their respective
69: systems!)
70:
71: # Main differences (aka "what to expect")
72:
73: As of version 0.5, Kyua has (or is supposed to have) feature parity with
74: the ATF tools. That said, having feature parity does not imply that they
75: are the same. This section outlines a few of the differences that you
76: should be aware of before continuing.
77:
78: ## Results database
79:
80: Kyua collects the results of the execution of a test suite into an SQLite
81: database. User-friendly reports are later generated by extracting data
82: from this same database.
83:
84: In ATF, the results of the execution were written to an internal format
85: that only atf-report could understand. Despite of the database, Kyua still
86: maintains the separation of "tests execution" from "report generation".
87:
88: The contents of the database are immutable and incremental. This means
89: that, in the future, the Kyua tools will be able to provide historical data
90: for particular test cases, or for whole test runs (which is what other
91: NetBSD developers have ended up implementing multiple times outside of ATF
92: because the framework did not provide such functionality by itself).
93:
94: ## Support for multiple test interfaces
95:
96: Kyua has support for different "test interfaces", which means that Kyua can
97: execute test programs written using different paradigms and collect their
98: results into a single report. At the moment, two interfaces are supported:
99:
100: * The "atf" interface provides compatibility with those test programs that
101: use the ATF libraries. This is the only interface currently used by the
102: NetBSD test suite, as there is no way to run any other test program in an
103: automated manner.
104:
105: * The "plain" interface permits the execution of legacy test programs that
106: do not use any testing library. Such test programs are those that just
107: return 0 or non-0 to indicate the success or failure of the test
108: (respectively). This feature will allow the NetBSD test suite to
109: transparently execute third-party test suites (such as the IPF or GCC
110: test suites) without having to implement ATF-based wrappers. It will
111: also lower the barrier of entry to writing test programs for NetBSD, as
112: using the ATF libraries will become optional.
113:
114: ## Lua configuration files
115:
116: Kyua has two kind of configuration files: the Kyuafiles, which are the
117: files shipped with a test suite that describe what test programs need to be
118: run; and the user configuration files, which specify the run-time settings
119: of Kyua and the test suites. ATF had this same split of configuration
120: files, and they were written in a custom language, with a custom parser.
121:
122: The Kyua configuration files are all Lua scripts. The major advantage of
123: this at the moment is that their syntax will be familiar to end users, and
124: that the parser for these files is well-tested. In the future, the use of
125: Lua will allow the implementation of more-intelligent test (and maybe even
126: build) scripts.
127:
128: ## Direct HTML output
129:
130: All of the NetBSD continous build and testing systems provide status
131: reports through the releng web interface. In the case of ATF, this has
132: traditionally been tricky because ATF cannot generate HTML contents
133: directly; instead, `atf-report` generates XML output which later must be
134: postprocessed with `xsltproc` to create the HTML pages.
135:
136: Kyua has the ability to generate HTML reports straight from the tool,
137: without having to go through any XML toolchain. This means that NetBSD,
138: out of the box, can generate such reports and publish them with the builtin
139: httpd(8) server.
140:
141: ## Heavier code base
142:
143: If you take a look at the Kyua distribution file, you may notice that it is
144: about the same size as the distribution file of ATF, yet Kyua does not
145: currently replace the ATF libraries. This may be surprising because it
146: seems to imply that the codebase of Kyua is bigger because it "just"
147: reimplements atf-run and atf-report: i.e. by just reimplementing parts of
148: ATF, it is already as big as the whole of ATF.
149:
150: This is true, for two reasons.
151:
152: The first is that Kyua is more featureful and flexible: the features
153: outlined above have a cost in terms of implementation, and the codebase of
154: Kyua is more carefully crafted to allow for later growth. In particular,
155: all OS-specific details have been abstracted for easier portability, and
156: the SQLite and Lua libraries have been wrapped for safety.
157:
158: The second is that Kyua is much better tested (which is very important for
159: a software package that you will rely on to validate your own software!).
160: To give you some numbers, ATF 0.16 contains around 400 test cases for both
161: atf-run and atf-report while Kyua 0.5 contains around 1100 test cases.
162:
163: # Components
164:
165: Kyua, as a project, is made up of a variety of components (which *include*
166: ATF, because the ATF libraries are *not* being rewritten). All of these
167: components exist in pkgsrc, and are:
168:
169: * pkgsrc/devel/atf-libs: The C, C++ and POSIX shell libraries provided by
170: ATF. These are *NOT* meant to be replaced by Kyua.
171:
172: * pkgsrc/devel/atf: The ATF tools, namely atf-run and atf-report. These
173: are deprecated and this package should eventually disappear.
174:
175: * pkgsrc/devel/kyua-cli: The Kyua command-line interface, which provides a
176: superset of the functionality of atf-run and atf-report.
177:
178: * pkgsrc/devel/kyua-atf-compat: Drop-in replacements for atf-run and
179: atf-report that use kyua-cli in the backend.
180:
181: # Running the NetBSD test suite
182:
183: There are two ways to run the NetBSD test suite with Kyua. The easy (or
184: trivial) way is to use the backwards compatibility ATF tools, and the more
185: sophisticated way is to convert the test suite to Kyua and use the native
186: Kyua binary. This section explains both approaches.
187:
188: ## Using the ATF compatibility tools
189:
190: The easiest (but also the least "future-proof") way to run the NetBSD test
191: suite with Kyua is to use the backwards compatibility ATF tools provided by
192: the kyua-atf-compat module. First of all, install the package:
193:
194: $ cd /usr/pkgsrc/deve/kyua-atf-compat
195: $ make install && make clean
196:
197: And then, running the test suite is as easy as:
198:
199: $ cd /usr/tests
200: $ /usr/pkg/bin/atf-run | /usr/pkg/bin/atf-report
201:
202: Please be aware that if the atf-run and atf-report tools provided by
203: kyua-atf-compat appear in your PATH before the real atf-run and atf-report
204: tools shipped by NetBSD, you will experience test failures for all the
205: tests in /usr/tests/atf/atf-run and /usr/tests/atf/atf-report. This is
206: expected: while the compatibility tools behave similarly to the real tools
207: from a user's perspective, they are not fully interchangeable. (For
208: example, the serialization format between atf-run and atf-report is
209: different.)
210:
211: One property of the atf-run wrapper is that it uses the default results
212: database in ~/.kyua/store.db to record the execution of the tests. This
213: means that, once the execution of the tests is done with the compatibility
214: tools, you can still use the native Kyua binary to poke at the results
215: database. More on this below.
216:
217: ## Using the native Kyua command-line interface
218:
219: The preferred way to run the NetBSD test suite with Kyua is to use the
220: native Kyua command-line binary. This is the preferred method because it
221: trains you to use the new interface rather than relying on the old pipeline
222: and because it exposes you to all the new features of Kyua. Regardless,
223: this and the previous approach will yield the same results for a particular
224: execution.
225:
226: Using the native command-line interface is a multi-step process because
227: the existing NetBSD test suite is not prepared for Kyua. Let's take a look
228: at these steps.
229:
230: To get started, install the Kyua packages:
231:
232: $ cd /usr/pkgsrc/deve/kyua-cli
233: $ make install && make clean
234: $ cd /usr/pkgsrc/deve/kyua-atf-compat
235: $ make install && make clean
236:
237: Once this is done, configure Kyua in the same way ATF is configured "out of
238: the box" in NetBSD. Create the /usr/pkg/etc/kyua/kyua.conf file with these
239: contents:
240:
241: syntax('config', 1)
242: unprivileged_user = '_tests'
243:
244: The next step is to populate /usr/tests with Kyuafiles, as Kyua is unable
245: to read existing Atffiles. This is easy to do with the atf2kyua(1) tool
246: shipped in the kyua-atf-compat package:
247:
248: # atf2kyua /usr/tests
249:
250: And that is it. You can now execute the test suite using Kyua with any of
251: the following two forms:
252:
253: $ cd /usr/tests && kyua test
254: $ kyua test -k /usr/tests/Kyuafile
255:
256: Note that none of these will generate "pretty" reports. These commands
257: will only record the results of the execution into the database. In order
258: to generate reports, keep reading.
259:
260: # Generating reports
261:
262: Once you have ran the NetBSD test suite with any of the mechanisms above,
263: the results of the execution have been stored in the "Kyua store", which is
264: a database located in ~/.kyua/store.db by default. (This path can be
265: changed at any time with the --store flag.)
266:
267: To extract a report from the database using the results of the latest tests
268: run, you can run any of the following:
269:
270: $ kyua report -o my-report.txt
271: $ kyua html-report -o /var/www/results/
272:
273: # Support and feedback
274:
275: The Kyua manual is available in the GNU Info format and can be accessed by
276: running:
277:
278: $ info kyua
279:
280: Alternatively, use the help subcommand to get built-in documentation. The
281: following invocation will print all the available subcommands:
282:
283: $ kyua help
284:
285: And an invocation like this will show you all the possible options for a
286: given subcommand:
287:
288: $ kyua help report-html
289:
290: If you have gone through the instructions above and started playing with
291: Kyua, please do not hesitate to report your experiences (either good or
292: bad) to [Julio Merino](mailto:jmmv@NetBSD.org)! Any comments will be
293: highly appreciated and will be taken into account for the near future of
294: Kyua.
CVSweb for NetBSD wikisrc <wikimaster@NetBSD.org> software: FreeBSD-CVSweb