Skip to main content

Sample Tester

Version: 0.7.7

PRE-RELEASE: This surface is not guaranteed to be stable. Breaking changes may still be applied.

Setup

  1. Activate your preferred virtual environment.

    . PATH/TO/YOUR/VENV/bin/activate
    
  2. Install the necessary requirements. This needs to be done first even if you pip-install the sample-tester.

    pip install pyyaml
    
  3. Install this sample-tester package in ONE of the following two ways:

2.1 Install from PyPI (recommended):

  ```shell
  pip install sample-tester
  ```

This will put the command sample-tester in your path.

2.2 Clone this GitHub repo (if you're going to be modifying it):

  ```shell
  git clone https://github.com/googleapis/sample-tester.git
  ```

At the top level, there is a sample-tester command.

  1. To run against Google APIs, ensure you have credentials set up:

    export GOOGLE_APPLICATION_CREDENTIALS=/path/to/your/creds.json
    

Setting up the test

Set up the test plan as in ./examples/lang_region/language.test.yaml. That sample test has three equivalent representations of the same test, one with absolute artifact paths in the imperative style, the second with canonical artifact paths in the imperative style, and the third with canonical artifact paths in the declarative style. (See NOTES below). Some features that may not be obvious from that test file:

  1. You can have any number of test suites.
  2. Each test suite can have setup, teardown, and cases sections.
  3. The cases section is a list of test cases. For each test case, setup is executed before running the test case and teardown is executed after.
  4. setup, teardown and each cases[...].spec is a list of directives and arguments. The directives can be any of the following YAML directives:
    • log: print the arguments, printf style
    • uuid: return a uuid (if called from yaml, assign it to the variable names as an argument)
    • shell: run in the shell the command specified in the argument
    • call: call the artifact named in the argument, error if the call fails
    • call_may_fail: call the artifact named in the argument, do not error even if the call fails
    • assert_contains: require the given variable to contain a string
    • assert_not_contains: require the given variable to not contain a string
    • assert_success: require that the exit code of the last call_may_fail was 0. If the preceding call was a just a call, it would have already failed on a non-zero exit code.
    • assert_failure: require that the exit code of the last call_may_fail or call was NOT 0. Note, though, that if we're executing this after just a call, it must have succeeded so this assertion will fail.
    • env: assign the value of an environment variable to a testcase variable
    • code: execute the argument as a chunk of Python code. The other directives above are available as Python calls with the names above. In addition, the following functions are available inside Python code only:
      • fail: mark the test as having failed, but continue executing
      • abort: mark the test as having failed and stop executing
      • assert_that: if the condition in the first argument is false, abort the test
  5. In the usual case, you will be using the "manifest" convention. Thus, you will need one or more manifest files (*.manifest.yaml) listing the path and identifiers for each sample. See convention/manifest/sample.manifest.yaml for an explanation of the structure of the *.manifest.yaml files.

Manifest File

A manifest file is a YAML file that associates each artifact (sample) of interest on disk with a series of tags that can be used to uniquely identify that artifact. Right now only version "1" of the manifest file format is supported, but we have the version as the first field in the file to support different schemas in the future.

The fundamental unit in a manifest is the "item", which is a collection of label name/value pairs; each unit should correspond to exactly one artifact on disk. Some labels are of special interest to the sample test runner, such as those named language, path, bin, and region_tag. These four are interpreted, respectively, as the programming language of the given artifact, the path to that artifact on disk, the binary used to execute the artifact (if the artifact is not itself executable), and the unique region tag by which to quickly identify the artifact for the given language. In particular, artifacts with the same region_tag but different languages are taken to represent the same conceptual sample, but implemented in the different programming languages; this allows a test specification to refer to the region_tags only and the runner will then run that test for each of the languages available.

Since a lot of the artifacts will share part or all of some labels (for example, the initial directory components, or the binary used to execute them), "items" are grouped into "sets". Each set may define its own label name/value pairs. These pairs are applied to each of the items inside the set as follows:

  1. If the item does not define a given label name, then the label name/value pair in its set is applied to the item.
  2. If the item does define a given label name, then the corresponding label value specified in the set is prepended to the corresponding value specified in the item. This is particularly useful in the case of paths: the set may define the common path for all of its items, and each item specifies its unique trailing directories and filename.

See ./sample.manifest.yaml for a concrete, commented example.

Running tests

The common usage is:

./sampletester TEST.yaml [TEST.yaml ...] [MANIFEST.manifest.yaml ...]
               [--envs=REGEX] [--suites=REGEX] [--cases=REGEX]
               [--fail-fast]
               [--convention CONVENTION:ARG,ARGS]

where:

  • there can be any number of TEST.yaml test plan files
  • there can be any number of MANIFEST.manifest.yaml manifest files
  • --envs, --suites, and --cases are Python-style regular expressions (beware shell-escapes!) to select which environments, suites, and cases to run, based on their names. All the environemnts, suites, or cases will be selected to run by default if the corresponding flag is not set. Note that if an environment is not selected, its suites are not selected regardless of --suites; if a suite is not selected, its testcases are not selected regardless of --cases.
  • --fail-fast makes execution stop as soon as a failing test case is encountered, without executing any remaining test cases.
  • --convention (or -c) can be used to specify both a particular convention to resolve the sample IDs to disk artifacts, and a list of comma-separated arguments to that convention. The default convention is tag:region_tag, which uses the region_tag key in the manifest files. To use, say, the target key in the manifest, simply pass -c tag:target.

For example, my own invocation to run a test on the fake samples under testdata/ is

./sample-tester examples/convention-tag/language.test.yaml examples/convention-tag/language.manifest.yaml 

Output

In all cases, sample-tester exits with a non-zero code if there were any errors in the flags, test config, or test execution.

In addition, by default sampletester prints the status of test cases to stdout. This output is controlled by the following flags:

  • --verbosity (-v): controls how much output to show for passing tests. The default is a "summary" view, but "quiet" (no output) and "detailed" (full case output) options are available.
  • --suppress_failures (-f): Overrides the default behavior of showing output for failing test cases, regardless of the --verbosity setting

The flag --xunit=FILE outputs a test summary in xUnit format to FILE (use - for stdout).

Advanced usage

If you want to change the convention in use, you can pass the --convention=NAME flag. You can provide any number of paths to the convention. (In the default case, the paths are just manifest files, but these could be anything).

./sampletester TEST.yaml [--convention=CONVENTION] [TEST.yaml ...] [USERPATH ...]

If you want to define your own convention, just add a package or module (whose name will become the convention name) under convention/. Have that package or module export a function test_environments which returns an array of instance of child classes of testenv.Base.

Development

During development, run the devcheck script to run all tests and examples and verify they work as expected.

Disclaimer

This is not an official Google product.

Download files

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

Source Distribution

sample-tester-0.7.7.tar.gz (33.1 kB view details)

Uploaded Source

File details

Details for the file sample-tester-0.7.7.tar.gz.

File metadata

  • Download URL: sample-tester-0.7.7.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.5

File hashes

Hashes for sample-tester-0.7.7.tar.gz
Algorithm Hash digest
SHA256 991c50d5d08626f09195f24ddfb6a644a38722cb8ecbb0b4ff5cc77d2dda24fe
MD5 b6afd6c033bfe06ecb6ccb344c2768b8
BLAKE2b-256 abc255b9d03ce079876a388da3acca3587d6d45a5fe45c1a9d61ad539c41a6c7

See more details on using hashes here.

Release history Release notifications | RSS feed

0.16.3

1 file

0.16.2

1 file

0.16.1

1 file

0.16.0

1 file

0.15.3

1 file

0.15.2

1 file

0.15.1

1 file

0.15.0

1 file

0.14.0

1 file

0.13.1

1 file

0.13.0

1 file

0.12.0

1 file

0.11.1

1 file

0.11.0

1 file

0.10.0

1 file

0.9.0

1 file

0.8.1

1 file

0.8.0

1 file

0.7.8

1 file

0.7.7.1

1 file

This release

0.7.7 This release

1 file

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