Kryptostack
|
The central script is e2e.sh
. The syntax for calling it can be obtained with e2e.sh -h
The script is integrated into the makefile as targets named "e2e" and "dry".
make e2e
is the central command in the Gitlab pipeline to test the artifacts. It must succeed for a deployment.
A complete test consists of a colletion of test suites.
There are test suits for basic tests, regressions, vocabularies and edge cases.
A test suite is bundled in a directory named Suite*
.
Optionally there can be a file suite.inc
per test suite. This shell
script is sourced in, allowing you to set environment variables. These
environment variables can be used to configure the behavior of e2e.sh
.
SUITE_CHECKKSN=0|1 .....
controls whether to compare the parser output .ksn
file. The default value is 1.SUITE_BOOTKS=0|1 .......
controls whether to include the boot.ks
file. SUITE_WILDCARD=0|1 .....
controls whether to accept bash wildcards in test*.out
files. The default value is 0.SUITE_VOCABULARY=voc ...
controls whether to source in the vocabulary voc
. voc
can be a comma-separated list of names. Each test suite consists of multiple test cases. e2e.sh
always runs
all test cases within a given test suite directory.
Each test case consists of two or three files:
test*.ks
: contains the input for Kryptostack.test*.ksn
(optional): contains the expected output of the parser pass SUITE_CHECK_KSN=1
).test*.out
: contains the expected output of the interpreter.The first line of each .ks
file should contain a comment. This comment
is used for progress reporting during an e2e.sh
run.
e2e.sh
iterates through all Suite*
test suite directories provided on the command line.e2e.sh
test*.ks
file is executed as a Kryptostack program by the parser.test*.ksn
file (if it exists).test*.out
file.make generate a utest executable.
It used to test the system on a class and function level.
With build type PROFILE
utest generates additional data for the lcov
coverage statistics.
Following Usage Variants the "Static library usage variant" is applied.
The central script is Tools/dolcov.sh
.
The syntax for calling it can be obtained with Tools/dolcov.sh -h
The script is integrated into the makefile as target named "lcov".
Coverage tests runs with the build type PROFILE
.
The command make lcov
generates profile data by running
and using lcov
to generate HTML documents in ./public/lcov
.
A manual inspection of the HTML output is needed to assess the quality of the tests.
Following exclusion markers for lcov are in use. See man page of geninfo
.
A test run of all examples is part of the test stage in the pipelines.
One can execute this task manually with make examples
.
See EXAMPLES