Skip to main content

SHell command MOCKer for integration testing

Project description

Travis build status image Coverage status Latest PyPI version

SHell command MOCK (SHMOCK)

Purpose

Tools for system administration typically call lots of programs on the command line. This makes automated testing quite tricky, since you may need to

  • run “sudo ….”, even though the build system is not allowed to use sudo

  • have tools like “uname” or “ifconfig” produce certain output for testing

shmock helps you by creating mock commands that supersede the system’s own commands due to a temporarily manipulated $PATH. Based on the command line parameters, mock commands can have different

  • output on STDOUT and STDERR

  • exit code

It is not possible to simulate slowness or commands that behave differently the second time you call them. Command line parsing is very limited, but that’s not a problem for auto-generated calls. However, these limitations make the implementation very simple.

Configuration

To configure which commands should be mocked (and how), use a dictionary like this:

commands_to_mock = {
    'saynay': 'Nay sayers say nay.',
    'jonny': {
        (): "walker",
        "foo": "bar",
        ("b", "goode"): "Go, Jonny, go!",
        ("be", "bad"): {"stderr": "yup", "returncode": 255},
        None: {
            "stdout": "You called me with some unknown parameters.",
            "stderr": "And I don't like that.",
            "returncode": 1
        }
    }
}

The first part uses the most simple way of defining a mocked command: A ‘saynay’ command is defined that always prints “Nay sayers say nay.” and exits successfully, regardless of command line options.

After that, a ‘jonny’ command is defined that illustrates the full feature set of the shmock module. The command is defined to

  • When called with no parameters, print “walker”.

  • When called with a single parameter “foo”, print “bar”.

  • When called with the two parameters “b” and “goode”, print “Go, Jonny, go!”.

  • When called with “be bad”, print “yup” to standard error and then exit with 255.

  • When called with any other parameters, print “You…” to standard out, print “And…” to standard error and then exit with 1.

Usage

The ShellCommandMock is intended to be used in “with” contexts as shown below:

import os
from shmock import ShellCommandMock
with ShellCommandMock(commands_to_mock):
    os.system("echo $PATH")

    os.system("jonny")
    os.system("jonny b goode")
    os.system("jonny be bad")
    os.system("jonny foobar")

os.system("echo $PATH")

Advanced Usage

Sometimes you want to keep the mocked shell commands for further testing/debugging. You can tell shmock to not clean up the mock environment with

from shmock import ShellCommandMock
with ShellCommandMock(commands_to_mock, keep_temp_dir=True):
    pass

shmock will print the location of the mock environment, so that you can add it to you $PATH.

When output is printed, shmock calls print(), and print() automatically appends a newline to the output. As a result, it is currently not possible to produce output that does not end in a newline. This will be fixed once it becomes a problem.

License

Copyright 2015 Immobilien Scout GmbH

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

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

shmock-1.0.0-31.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file shmock-1.0.0-31.tar.gz.

File metadata

  • Download URL: shmock-1.0.0-31.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for shmock-1.0.0-31.tar.gz
Algorithm Hash digest
SHA256 8f79863fe6286d6f9723618823fec311293327a79d354614c17ad412969d3062
MD5 0b97559e8fc6dc844a51155e1ca2b653
BLAKE2b-256 8baee222d17b002f6a89b2064048b10e0dc0cb52d457cae0c93ea0c26648ef7c

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