Skip to main content
https://img.shields.io/github/actions/workflow/status/nicoretti/frysk/ci.yaml https://img.shields.io/coverallsCoverage/github/Nicoretti/frysk https://img.shields.io/badge/imports-isort-ef8336.svg https://img.shields.io/badge/code%20style-black-000000.svg https://img.shields.io/pypi/v/frysk https://img.shields.io/badge/docs-available-blue.svg

frysk is a fork of the popular snapshot testing tool Cram. Even though Cram is pretty complete and mature for everyday use, frysk wants to continue pushing its development forward.

frysk tests look like snippets of interactive shell sessions. frysk runs each command and compares the command output in the test with the command’s actual output.

Here’s a snippet from frysk’s own test suite:

Set up frysk alias and example tests:

  $ . "$TESTDIR"/setup.sh

Usage:

  $ frysk -h
  [Uu]sage: frysk \[OPTIONS\] TESTS\.\.\. (re)

  [Oo]ptions: (re)
    -h, --help          show this help message and exit
    -V, --version       show version information and exit
    -q, --quiet         don't print diffs
    -v, --verbose       show filenames and test status
    -i, --interactive   interactively merge changed test output
    -d, --debug         write script output directly to the terminal
    -y, --yes           answer yes to all questions
    -n, --no            answer no to all questions
    -E, --preserve-env  don't reset common environment variables
    --keep-tmpdir       keep temporary directories
    --shell=PATH        shell to use for running tests (default: /bin/sh)
    --shell-opts=OPTS   arguments to invoke shell with
    --indent=NUM        number of spaces to use for indentation (default: 2)
    --xunit-file=PATH   path to write xUnit XML output
    --dos2unix          convert DOS/Windows line endings to UNIX line endings
    --color             mode which shall be used for coloring the output

The format in a nutshell:

  • frysk tests use the .t file extension.

  • Lines beginning with two spaces, a dollar sign ($), and a space are run in the shell.

  • Lines beginning with two spaces, a greater than sign (>), and a space allow multi-line commands.

  • All other lines beginning with two spaces are considered command output.

  • Output lines ending with a space and the keyword (re) are matched as Perl-compatible regular expressions.

  • Lines ending with a space and the keyword (glob) are matched with a glob-like syntax. The only special characters supported are * and ?. Both characters can be escaped using \, and the backslash can be escaped itself.

  • Output lines ending with either of the above keywords are always first matched literally with actual command output.

  • Lines ending with a space and the keyword (no-eol) will match actual output that doesn’t end in a newline.

  • Actual output lines containing unprintable characters are escaped and suffixed with a space and the keyword (esc). Lines matching unprintable output must also contain the keyword.

  • Anything else is a comment.

Usage

frysk will print a dot for each passing test. If a test fails, a unified context diff is printed showing the test’s expected output and the actual output. Skipped tests (empty tests and tests that exit with return code 80) are marked with s instead of a dot.

For example, if we run frysk on its own example tests:

.s.!
--- examples/fail.t
+++ examples/fail.t.err
@@ -3,21 +3,22 @@
   $ echo 1
   1
   $ echo 1
-  2
+  1
   $ echo 1
   1

 Invalid regex:

   $ echo 1
-  +++ (re)
+  1

 Offset regular expression:

   $ printf 'foo\nbar\nbaz\n\n1\nA\n@\n'
   foo
+  bar
   baz

   \d (re)
   [A-Z] (re)
-  #
+  @
s.
# Ran 6 tests, 2 skipped, 1 failed.

frysk will also write the test with its actual output to examples/fail.t.err, allowing you to use other diff tools. This file is automatically removed the next time the test passes.

When you’re first writing a test, you might just write the commands and run the test to see what happens. If you run frysk with -i or --interactive, you’ll be prompted to merge the actual output back into the test. This makes it easy to quickly prototype new tests.

Is the same as invoking frysk with --verbose and --indent=4.

Note that the following environment variables are reset before tests are run:

  • TMPDIR, TEMP, and TMP are set to the test runner’s tmp directory. In test output, occurrences of this directory are replaced by $TMPDIR.

  • LANG, LC_ALL, and LANGUAGE are set to C.

  • TZ is set to GMT.

  • COLUMNS is set to 80. (Note: When using --shell=zsh, this cannot be reset. It will reflect the actual terminal’s width.)

  • CDPATH and GREP_OPTIONS are set to an empty string.

frysk also provides the following environment variables to tests:

  • frysk_TEMP, set to the test runner’s temporary directory.

  • TESTDIR, set to the directory containing the test file.

  • TESTFILE, set to the basename of the current test file.

  • TESTSHELL, set to the value specified by --shell.

Also note that care should be taken with commands that close the test shell’s stdin. For example, if you’re trying to invoke ssh in a test, try adding the -n option to prevent it from closing stdin. Similarly, if you invoke a daemon process that inherits stdout and fails to close it, it may cause frysk to hang while waiting for the test shell’s stdout to be fully closed.

Release files for frysk 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for frysk 0.2.0
File Size Uploaded
frysk-0.2.0.tar.gz 74.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for frysk 0.2.0
File Interpreter ABI Platform
frysk-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 162.6 kB

Release files / frysk-0.2.0.tar.gz

Download URL frysk-0.2.0.tar.gz
Size 74.0 kB
Tags Source
SHA-256 checksum
How to use checksums
ab6d3748ef5928cb06293f2705cc06ccc127ebee618a18c76fe599cd24a86215
BLAKE2b-256 checksum
How to use checksums
761a996f8fc334a3ee984bf62ecd0daf91e85ed61abb4c87af5a7cf7cfd8fa45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.6.1 CPython/3.12.0 Darwin/23.0.0

Release files / frysk-0.2.0-py3-none-any.whl

Download URL frysk-0.2.0-py3-none-any.whl
Size 88.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
d7a57724751c165d6dd032a977b7a2654b921cd366e36ea3e1c7bc72b8409151
BLAKE2b-256 checksum
How to use checksums
318254875e103987b73110bead579fe10da5f3ffcf671cbc2692b8e7f1d7d6fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.6.1 CPython/3.12.0 Darwin/23.0.0

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page