A simple commandline app for testing standard input/output applications.
Project description
VIVAL
Command line app to validate standard I/O applications on series of tests.
Installation
Everything should work on Linux, Windows and MacOS with Python 3.6+ versions. Also having C/C++ compiler installed is recommended but isn't required.
Using Pip
$ pip install vival
Manual
$ git clone https://github.com/ViktorooReps/vival
$ cd vival
$ python setup.py install
Usage
Testing
VIVAL supports compiling C/C++ source code with gcc/g++ compilers. Make sure you have them installed and available through CLI.
vival <executable or source code> -t <path/tests.txt>
Here are some flags you may find useful:
-t <path/tests.txt>
to specify path to text file with tests (required).-nt <INTEGER>
to set the number of failed tests displayed.-o <path/output.txt>
if specified, will write all tests to output.txt (recommended in fill mode).
Creating your own tests
All the tests file structure condenses to pairs (tag, tagged text), where tag specifies the use of it's text.
Tags and their meaning (some tags might not be available on earlier versions of VIVAL) for v3.1:
Tag | Category | Tagged text meaning |
---|---|---|
INPUT | Test | What will executed program get on stdin. |
CMD | Test | Command line arguments with which the program will be executed. |
OUTPUT | Test | Expected contents of stdout. |
COMMENT | Test | Some commentary on test that will be displayed if program fails it. |
MAIN | File | Some auxillary code (usually just int main() { ... } ) that will be compiled and linked with given source code (ignored if executable is given as argument). |
FLAGS | File | Flags that will be passed to compiler. |
DESCRIPTION | File | Description of tests file. |
STARTUP | Test | Shell commands that will be executed before test. |
CLEANUP | Test | Shell commands that will be executed after test. |
TIMEOUT | File | Sets time limit in seconds for all tests in the file (default is 2.0 sec). |
The body of tests file consists of repeating sections of "wild space" and bracketed text: <...WS...>/{<...text...>}/ . Wild space is mostly skipped apart from tags that will define meaning of text in brackets. The text in brackets stays unformatted.
So, for example:
The text that is going to be skipped
INPUT
This will be skipped as well /{1 2 3}/
Will be converted to pair (INPUT, "1 2 3")
.
If there are multiple tags only the last one will define bracketed text's meaning.
There are two categories of tags: the ones that define some features of a particular test and the ones that define features of an entire tests file. Only one definition of each feature is allowed, so when multiple File feature definitions are present in file, the last one is used. Redifinitions of Test features mark the beginning of a new test.
For example, file with such contents:
DESCRIPTION /{Description 1}/
DESCRIPTION /{Description 2}/ <- DESCRIPTION is redefined
COMMENT /{Empty test}/
MAIN /{int sum(int a, int b) { return a + b; }}/
COMMENT <- the start of a new test
/{Some other test}/
INPUT
/{1}/
OUTPUT
/{}/
Will be translated to File features: {(DESCRIPTION, "Description 2"), (MAIN, "int sum(int a, int b) { return a + b; }")}
, and two tests: {(COMMENT, "Empty test")}
and {(COMMENT, "Some other test"), (INPUT, "1"), (OUTPUT, "")}
Tests without OUTPUT
feature are considered unfilled and VIVAL wont't run given program on them. These tests can be filled in manually or using another executable.
Filling in
Fill mode activates with flag -m
:
vival <executable or source code> -t <path/tests.txt> -m fill
VIVAL in fill mode runs given executable on unfilled tests, saving the output from stdout.
But it will be lost unless -o <path/output.txt>
is specified:
vival <executable or source code> -t <path/tests.txt> -m fill -o <path/output.txt>
In which case executable's output on a test will be saved as OUTPUT
feature of test and then resulting filled tests will be written to output.txt
.
Contribution
If you found a bug or just isn't sure how to use VIVAL, please consider creating an issue describing your problem. It might help other users as well as future project development.
If you want to fix any known bug or add new functionality, clone this repository, branch out from dev
branch, add any changes you think are necessary, push, and create pull request to merge your changes into dev
branch. They will later be added to master
branch as well as PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file vival-3.1.14.tar.gz
.
File metadata
- Download URL: vival-3.1.14.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/52.0.0 requests-toolbelt/0.8.0 tqdm/4.57.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77ae207563a095b7451fc77ca0f6345131875549a76cd520c9f74a88e99db457 |
|
MD5 | 07c2512faded6d2ff4ce5a4d49d88057 |
|
BLAKE2b-256 | 7b782fc06e3b0ae8b4096c7b4ed56606aebe2e18f0d75ca2008ea6b897577dfb |
File details
Details for the file vival-3.1.14-py3-none-any.whl
.
File metadata
- Download URL: vival-3.1.14-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/52.0.0 requests-toolbelt/0.8.0 tqdm/4.57.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44f86d1c500991c143c26ee560e96342361ecf5fdf8c02d5e31e86be9d336f57 |
|
MD5 | bd6ffe7d730fc6b159f82a3b36f3499b |
|
BLAKE2b-256 | 4a394a471001a4620fa3ff7db2067f4654d5aa7e0712a218c09b03591390177f |