Test for script result.
Project description
Cli_results
Simple lib to test results or script runs from command line.
Install
Install from pypi:
pip install cli_result
Or install from github repo:
pip install git+https://github.com/ayasyrev/cli_result.git
Usage.
Main purpose test results of examples run. We run all scripts in examples folder and compare results with expected results. Check it at different python versions. So we can be sure that all scripts work and has similar behaviors in different python versions. It's not suitable to run script that supposed to run for a long time or resources are limited. But it's good for quick tests, to check configs and shorts demos (examples).
Put your script in examples folder and expected results in results folder.
Arguments for tests at file name same as script name + __args.txt.
from cli_result import check_examples, Cfg
errors = check_examples()
This run all scripts in examples folder with arguments from __args.txt
file and compare with results at results/
folder.
assert errors is None
Examples
We can change examples folder.
cfg = Cfg(examples_path="../examples/examples_extra/")
Check examples at folder:
from cli_result import get_examples
examples = get_examples(cfg=cfg)
We got list of examples as named tuple example_name, files
example = examples[0]
# name
print(example.name) # or example[0]
# files
print(example.files[0])
print(example[1][1])
output
example_extra_1 ../examples/examples_extra/example_extra_1.py ../examples/examples_extra/example_extra_1__alter.py
Run script
We can run script and look at result.
from cli_result import run_script
result = run_script(
filename=example[1][0],
args="--help",
)
print(result.stdout)
output
usage: example_extra_1.py [-h] [--echo ECHO]options: -h, --help show this help message and exit --echo ECHO
assert result.stderr == ""
Load expected result.
from cli_result import read_result, get_args
Load arguments for example.
get_args
returns list of Args
args = get_args(example.name, cfg)
print(args[0])
output
Args(name='help', list=['--help'])
expected = read_result(
name=example.name,
arg_name=args[0].name, # or args[0][0]
cfg=cfg,
)
Now we can compare results.
assert result == expected
Check one example.
We can check one example.
from cli_result import run_check_example
errors = run_check_example(
example_name=example.name,
file_list=example.files,
cfg=cfg,
)
assert errors is None
Alternatively we can check one as:
errors = check_examples(
names=example.name, # we can send list of names as [name1, name2, ...]
cfg=cfg,
)
assert errors is None
Check all examples.
Or check all examples.
errors = check_examples(cfg=cfg)
assert errors is None
Check errors
Lets look at example with error.
cfg = Cfg(examples_path="../tests/examples/examples_errors/")
errors = check_examples(cfg=cfg)
assert errors is not None
print(f"Examples with errors: {len(errors)}, {examples[0].name}: {len(errors[0].list)} errors")
output
Examples with errors: 1, example_extra_1: 10 errors
Let look at one of errors. We got file name that has error, result of run and expected result. Now we can look for what is wrong.
example_error = errors[0]
print(example_error.name)
output
example_1
error = example_error.list[4]
print(error.argname)
print(error.filename)
output
empty_str ../tests/examples/examples_errors/example_1__err_1.py
We can compare result with expected result.
print(error.res)
output
usage: example_1__err_1.py [-h] [--e E] example_1__err_1.py: error: unrecognized arguments: ""
And expected is:
print(error.exp)
output
usage: example_1.py [-h] [--echo ECHO] example_1.py: error: unrecognized arguments: ""
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 cli_result-0.3.4.tar.gz
.
File metadata
- Download URL: cli_result-0.3.4.tar.gz
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72c25152896d237fc0173f2b017cf91e25b7e7f46be4ce51e4a9298019e57cdf |
|
MD5 | a40e2c5596f24681e1e8d495d96430bc |
|
BLAKE2b-256 | 8d2c710107b0d58189f66ae80512899f8f1a4ee9e977f396589c8d8baedb5a78 |
File details
Details for the file cli_result-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: cli_result-0.3.4-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d93692a9bb42e2f25e6942dfe5485308ae5a2191de667b2b573462b081c3b079 |
|
MD5 | d921ec7055149a2335e3ed4a90eee63c |
|
BLAKE2b-256 | bcacc038d79c606554ce4170d5f45428844253536b9dc866b41689b92fdc0718 |