1.\" Copyright (c) 2008 The NetBSD Foundation, Inc. 2.\" All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 13.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND 14.\" CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, 15.\" INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16.\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 17.\" IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY 18.\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 20.\" GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 21.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 22.\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 23.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 24.\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25.Dd March 6, 2017 26.Dt ATF-SH 3 27.Os 28.Sh NAME 29.Nm atf_add_test_case , 30.Nm atf_check , 31.Nm atf_check_equal , 32.Nm atf_config_get , 33.Nm atf_config_has , 34.Nm atf_expect_death , 35.Nm atf_expect_exit , 36.Nm atf_expect_fail , 37.Nm atf_expect_pass , 38.Nm atf_expect_signal , 39.Nm atf_expect_timeout , 40.Nm atf_fail , 41.Nm atf_get , 42.Nm atf_get_srcdir , 43.Nm atf_init_test_cases , 44.Nm atf_pass , 45.Nm atf_require_prog , 46.Nm atf_set , 47.Nm atf_skip , 48.Nm atf_test_case 49.Nd POSIX shell API to write ATF-based test programs 50.Sh SYNOPSIS 51.Nm atf_add_test_case 52.Qq name 53.Nm atf_check 54.Qq command 55.Nm atf_check_equal 56.Qq expected_expression 57.Qq actual_expression 58.Nm atf_config_get 59.Qq var_name 60.Nm atf_config_has 61.Qq var_name 62.Nm atf_expect_death 63.Qq reason 64.Qq ... 65.Nm atf_expect_exit 66.Qq exitcode 67.Qq reason 68.Qq ... 69.Nm atf_expect_fail 70.Qq reason 71.Qq ... 72.Nm atf_expect_pass 73.Qq 74.Nm atf_expect_signal 75.Qq signo 76.Qq reason 77.Qq ... 78.Nm atf_expect_timeout 79.Qq reason 80.Qq ... 81.Nm atf_fail 82.Qq reason 83.Nm atf_get 84.Qq var_name 85.Nm atf_get_srcdir 86.Nm atf_init_test_cases 87.Qq name 88.Nm atf_pass 89.Nm atf_require_prog 90.Qq prog_name 91.Nm atf_set 92.Qq var_name 93.Qq value 94.Nm atf_skip 95.Qq reason 96.Nm atf_test_case 97.Qq name 98.Qq cleanup 99.Sh DESCRIPTION 100ATF 101provides a simple but powerful interface to easily write test programs in 102the POSIX shell language. 103These are extremely helpful given that they are trivial to write due to the 104language simplicity and the great deal of available external tools, so they 105are often ideal to test other applications at the user level. 106.Pp 107Test programs written using this library must be run using the 108.Xr atf-sh 1 109interpreter by putting the following on their very first line: 110.Bd -literal -offset indent 111#! /usr/bin/env atf-sh 112.Ed 113.Pp 114Shell-based test programs always follow this template: 115.Bd -literal -offset indent 116atf_test_case tc1 117tc1_head() { 118 ... first test case's header ... 119} 120tc1_body() { 121 ... first test case's body ... 122} 123 124atf_test_case tc2 cleanup 125tc2_head() { 126 ... second test case's header ... 127} 128tc2_body() { 129 ... second test case's body ... 130} 131tc2_cleanup() { 132 ... second test case's cleanup ... 133} 134 135\&... additional test cases ... 136 137atf_init_test_cases() { 138 atf_add_test_case tc1 139 atf_add_test_case tc2 140 ... add additional test cases ... 141} 142.Ed 143.Ss Definition of test cases 144Test cases have an identifier and are composed of three different parts: 145the header, the body and an optional cleanup routine, all of which are 146described in 147.Xr atf-test-case 4 . 148To define test cases, one can use the 149.Nm atf_test_case 150function, which takes a first parameter specifying the test case's 151name and instructs the library to set things up to accept it as a valid 152test case. 153The second parameter is optional and, if provided, must be 154.Sq cleanup ; 155providing this parameter allows defining a cleanup routine for the test 156case. 157It is important to note that this function 158.Em does not 159set the test case up for execution when the program is run. 160In order to do so, a later registration is needed through the 161.Nm atf_add_test_case 162function detailed in 163.Sx Program initialization . 164.Pp 165Later on, one must define the three parts of the body by providing two 166or three functions (remember that the cleanup routine is optional). 167These functions are named after the test case's identifier, and are 168.Nm \*(Ltid\*(Gt_head , 169.Nm \*(Ltid\*(Gt_body 170and 171.Nm \*(Ltid\*(Gt_cleanup . 172None of these take parameters when executed. 173.Ss Program initialization 174The test program must define an 175.Nm atf_init_test_cases 176function, which is in charge of registering the test cases that will be 177executed at run time by using the 178.Nm atf_add_test_case 179function, which takes the name of a test case as its single parameter. 180This main function should not do anything else, except maybe sourcing 181auxiliary source files that define extra variables and functions. 182.Ss Configuration variables 183The test case has read-only access to the current configuration variables 184through the 185.Nm atf_config_has 186and 187.Nm atf_config_get 188methods. 189The former takes a single parameter specifying a variable name and returns 190a boolean indicating whether the variable is defined or not. 191The latter can take one or two parameters. 192If it takes only one, it specifies the variable from which to get the 193value, and this variable must be defined. 194If it takes two, the second one specifies a default value to be returned 195if the variable is not available. 196.Ss Access to the source directory 197It is possible to get the path to the test case's source directory from 198anywhere in the test program by using the 199.Nm atf_get_srcdir 200function. 201It is interesting to note that this can be used inside 202.Nm atf_init_test_cases 203to silently include additional helper files from the source directory. 204.Ss Requiring programs 205Aside from the 206.Va require.progs 207meta-data variable available in the header only, one can also check for 208additional programs in the test case's body by using the 209.Nm atf_require_prog 210function, which takes the base name or full path of a single binary. 211Relative paths are forbidden. 212If it is not found, the test case will be automatically skipped. 213.Ss Test case finalization 214The test case finalizes either when the body reaches its end, at which 215point the test is assumed to have 216.Em passed , 217or at any explicit call to 218.Nm atf_pass , 219.Nm atf_fail 220or 221.Nm atf_skip . 222These three functions terminate the execution of the test case immediately. 223The cleanup routine will be processed afterwards in a completely automated 224way, regardless of the test case's termination reason. 225.Pp 226.Nm atf_pass 227does not take any parameters. 228.Nm atf_fail 229and 230.Nm atf_skip 231take a single string parameter that describes why the test case failed or 232was skipped, respectively. 233It is very important to provide a clear error message in both cases so that 234the user can quickly know why the test did not pass. 235.Ss Expectations 236Everything explained in the previous section changes when the test case 237expectations are redefined by the programmer. 238.Pp 239Each test case has an internal state called 240.Sq expect 241that describes what the test case expectations are at any point in time. 242The value of this property can change during execution by any of: 243.Bl -tag -width indent 244.It Nm atf_expect_death Qo reason Qc Qo ... Qc 245Expects the test case to exit prematurely regardless of the nature of the 246exit. 247.It Nm atf_expect_exit Qo exitcode Qc Qo reason Qc Qo ... Qc 248Expects the test case to exit cleanly. 249If 250.Va exitcode 251is not 252.Sq -1 , 253the runtime engine will validate that the exit code of the test case 254matches the one provided in this call. 255Otherwise, the exact value will be ignored. 256.It Nm atf_expect_fail Qo reason Qc 257Any failure raised in this mode is recorded, but such failures do not report 258the test case as failed; instead, the test case finalizes cleanly and is 259reported as 260.Sq expected failure ; 261this report includes the provided 262.Fa reason 263as part of it. 264If no error is raised while running in this mode, then the test case is 265reported as 266.Sq failed . 267.Pp 268This mode is useful to reproduce actual known bugs in tests. 269Whenever the developer fixes the bug later on, the test case will start 270reporting a failure, signaling the developer that the test case must be 271adjusted to the new conditions. 272In this situation, it is useful, for example, to set 273.Fa reason 274as the bug number for tracking purposes. 275.It Nm atf_expect_pass 276This is the normal mode of execution. 277In this mode, any failure is reported as such to the user and the test case 278is marked as 279.Sq failed . 280.It Nm atf_expect_signal Qo signo Qc Qo reason Qc Qo ... Qc 281Expects the test case to terminate due to the reception of a signal. 282If 283.Va signo 284is not 285.Sq -1 , 286the runtime engine will validate that the signal that terminated the test 287case matches the one provided in this call. 288Otherwise, the exact value will be ignored. 289.It Nm atf_expect_timeout Qo reason Qc Qo ... Qc 290Expects the test case to execute for longer than its timeout. 291.El 292.Ss Helper functions for common checks 293.Bl -tag -width indent 294.It Nm atf_check Qo [options] Qc Qo command Qc Qo [args] Qc 295Executes a command, performs checks on its exit code and its output, and 296fails the test case if any of the checks is not successful. 297This function is particularly useful in integration tests that verify the 298correct functioning of a binary. 299.Pp 300Internally, this function is just a wrapper over the 301.Xr atf-check 1 302tool (whose manual page provides all details on the calling syntax). 303You should always use the 304.Nm atf_check 305function instead of the 306.Xr atf-check 1 307tool in your scripts; the latter is not even in the path. 308.It Nm atf_check_equal Qo expected_expression Qc Qo actual_expression Qc 309This function takes two expressions, evaluates them and, if their 310results differ, aborts the test case with an appropriate failure message. 311The common style is to put the expected value in the first parameter and the 312actual value in the second parameter. 313.El 314.Sh EXAMPLES 315The following shows a complete test program with a single test case that 316validates the addition operator: 317.Bd -literal -offset indent 318atf_test_case addition 319addition_head() { 320 atf_set "descr" "Sample tests for the addition operator" 321} 322addition_body() { 323 atf_check_equal 0 $((0 + 0)) 324 atf_check_equal 1 $((0 + 1)) 325 atf_check_equal 1 $((1 + 0)) 326 327 atf_check_equal 2 $((1 + 1)) 328 329 atf_check_equal 300 $((100 + 200)) 330} 331 332atf_init_test_cases() { 333 atf_add_test_case addition 334} 335.Ed 336.Pp 337This other example shows how to include a file with extra helper functions 338in the test program: 339.Bd -literal -offset indent 340\&... definition of test cases ... 341 342atf_init_test_cases() { 343 . $(atf_get_srcdir)/helper_functions.sh 344 345 atf_add_test_case foo1 346 atf_add_test_case foo2 347} 348.Ed 349.Pp 350This example demonstrates the use of the very useful 351.Nm atf_check 352function: 353.Bd -literal -offset indent 354# Check for silent output 355atf_check -s exit:0 -o empty -e empty 'true' 356 357# Check for silent output and failure 358atf_check -s exit:1 -o empty -e empty 'false' 359 360# Check for known stdout and silent stderr 361echo foo >expout 362atf_check -s exit:0 -o file:expout -e empty 'echo foo' 363 364# Generate a file for later inspection 365atf_check -s exit:0 -o save:stdout -e empty 'ls' 366grep foo ls || atf_fail "foo file not found in listing" 367 368# Or just do the match along the way 369atf_check -s exit:0 -o match:"^foo$" -e empty 'ls' 370.Ed 371.Sh SEE ALSO 372.Xr atf-check 1 , 373.Xr atf-sh 1 , 374.Xr atf-test-program 1 , 375.Xr atf-test-case 4 376