Skip to content

alexharv074/bash_placebo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Placebo for Bash

Build Status

The Bash Placebo library is inspired by Mitch Garnaat's Python library of the same name, although is more like Ruby's VCR in that any shell command can be stubbed, not only the AWS CLI commands.

It allows you to call commands and retrieve responses that look like real responses from a file-based data store. This makes creating mocks for your shell scripts easy.

Installation

The tool can be installed just by copying the script from the master branch into your path somewhere. E.g.

$ curl -o /usr/local/bin/placebo \
    https://raw.githubusercontent.com/alexharv074/bash_placebo/master/placebo

Quickstart

Using record mode to save responses from the AWS CLI in a file shunit2/fixtures/aws.sh:

. placebo
pill_attach command=aws data_path=shunit2/fixtures
pill_record

Reading those responses back in the context of your unit tests:

. placebo
pill_attach command=aws data_path=shunit2/fixtures
pill_playback

And to clean up:

pill_detach

Code example

A full working example of tests in the shunit2 framework that use this library can be found here.

Recording responses

Recording the responses you need to test the shell script you are working on is easy.

From the CLI:

$ . placebo
$ pill_attach command=aws data_path=shunit2/fixtures
$ pill_record

The first line includes the Placebo functions in the running shell, including an aws function that replaces the external Python AWS CLI script. Then we tell Placebo where to save the responses, and set it to record mode.

Next, we source the script under test into the running shell too, like this:

$ . script_under_test some_arg some_other_arg

The script will appear to run as normal, but afterwards, responses from its calls to the aws command are saved in the data path.

Mocking more than one command

If you wish to mock more than one command, separate them by commas like this:

$ . placebo
$ pill_attach command=aws,curl data_path=shunit2/fixtures
$ pill_record

Manual mocking

If you want to create fake responses manually that can be read in later by Placebo, it is quite simple. They are formatted as case statements. For example:

case "aws $*" in
'aws command subcommand some args')
  echo some_response
  ;;
'aws command subcommand some other args')
  echo some_other_response
  ;;
esac

Spies

A log of all commands can be obtained using the pill_log function, allowing the mocks to be "spies" on AWS CLI commands called. If using shunit2, for example:

testCommandsLogged() {
  . $script_under_test
  assertEquals "$(<expected_log)" "$(pill_log)"
}

Known issues

  • Cannot build mocks where the same command is called multiple times but returns different responses.
  • A command that emits a single newline of output will be confused with a program that emits no output (see unit test testDemonstrateEchoBug).
  • STDERR is ignored at present.
  • Only can stub external commands and not functions.

Contributing

PRs are welcome. To run the tests:

Ensure you have dependencies installed:

  • shellcheck
  • shunit2

Then run make:

$ make

Support is available so feel free to raise issues.

About

Shell command mocks inspired by Python Placebo

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published