Skip to main content

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.3:

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).
CHECKER File Shell command that will be used to check correctness of result.

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, fork this repository, add any changes you think are necessary, push, and create pull request. They will appear on PyPI as soon as your PR is merged.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vival-3.5.0.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

vival-3.5.0-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file vival-3.5.0.tar.gz.

File metadata

  • Download URL: vival-3.5.0.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for vival-3.5.0.tar.gz
Algorithm Hash digest
SHA256 d61e2d6b173f5a205b54fee13da6bfe68166cda9632193467116c041e2c3d621
MD5 1ab92e13c55518382c0ef62756e5076b
BLAKE2b-256 eef1de65098703fc0e0a036a8fa05deaf12eab19efb6fb0588ac114cab014537

See more details on using hashes here.

File details

Details for the file vival-3.5.0-py3-none-any.whl.

File metadata

  • Download URL: vival-3.5.0-py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for vival-3.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8980477d32b7a95ba9f98fe8e08da95a918db8f5ce8df9f32bdf13300edc3896
MD5 f4a4235560dde63b5d625c86261907e3
BLAKE2b-256 91094e5b84b770b2cda919f85db2c20fc4bf8b9c25393269fd47bcabe53413f9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page