|
NAMEcmdtest - blackbox testing of Unix command line toolsSYNOPSIScmdtest [-cCOMMAND] [--command=COMMAND] [--config=FILE] [--dump-config] [--dump-setting-names] [--generate-manpage=TEMPLATE] [-h] [--help] [--help-all] [--list-config-files] [--version] [--no-default-configs] [--dump-memory-profile=METHOD] [-k] [--keep] [--no-keep] [--log=FILE] [--log-keep=N] [--log-level=LEVEL] [--log-max=SIZE] [--log-mode=MODE] [--memory-dump-interval=SECONDS] [--output=FILE] [-tTEST] [--test=TEST] [--timings] [--no-timings] [FILE]...DESCRIPTIONcmdtest black box tests Unix command line tools. Given some test scripts, their inputs, and expected outputs, it verifies that the command line produces the expected output. If not, it reports problems, and shows the differences.Each test case foo consists of the following files:
Usually, a single test is not enough. All tests are put into the same directory, and they may share some setup and teardown code:
cmdtest is given the name of the directory with all the tests, or several such directories, and it does the following: • execute setup-once • for each test case (unique prefix foo): — execute setup — execute foo.setup — execute the command, by running foo.script, and redirecting standard input to come from foo.stdin, and capturing standard output and error and exit codes — execute foo.teardown — execute teardown — report result of test: does exit code match foo.exit, standard output match foo.stdout, and standard error match foo.stderr? • execute teardown-once Except for foo.script, all of these files are optional. If a setup or teardown script is missing, it is simply not executed. If one of the standard input, output, or error files is missing, it is treated as if it were empty. If the exit code file is missing, it is treated as if it specified an exit code of zero. The shell scripts may use the following environment variables:
OPTIONS
Configuration files and settings
Logging
Peformance
EXAMPLETo test that the echo(1) command outputs the expected string, create a file called echo-tests/hello.script containing the following content:
Also create the file echo-tests/hello.stdout containing:
Then you can run the tests:
If you change the stdout file to be something else, cmdtest will report the differences:
Furthermore, the echo-tests directory will contain the actual output files, and diffs from the expected files. If one of the actual output files is actually correct, you can actually rename it to be the expected file. Actually, that's a very convenient way of creating the expected output files: you run the test, fixing things, until you've manually checked the actual output is correct, then you rename the file. SEE ALSOcliapp(5). Visit the GSP FreeBSD Man Page Interface. |