Getting started
Bombadil runs on your development machine if you’re on macOS or Linux. You can use it to validate changes to TypeScript specifications, and to run short tests while working on your system. Then you’ll have something like GitHub Actions to run longer tests on your main branch or in nightlies.
Installation
The most straightforward way for you to get started is downloading the executable for your platform:
npm
Install as a development dependency in your project:
npm install --save-dev @antithesishq/bombadilAdd a script to your package.json to run
Bombadil:
{
"scripts": {
"test": "bombadil test https://your-app.example.com"
}
}Then run it with npm test. This also provides
TypeScript type definitions for writing specifications.
macOS
Download the bombadil binary using
curl (or wget) and make it
executable:
curl -L -o bombadil https://github.com/antithesishq/bombadil/releases/download/v0.5.0/bombadil-aarch64-darwin
chmod +x bombadilPut the binary somewhere on your PATH, like in
~/.local/bin if that is configured.
mv ./bombadil ~/.local/bin/bombadilYou should now be able to run it:
bombadil --versionDo not download the executable with your web browser. It will be blocked by GateKeeper.
Linux
Download the bombadil binary and make it
executable:
curl -L -o bombadil https://github.com/antithesishq/bombadil/releases/download/v0.5.0/bombadil-x86_64-linux
chmod +x bombadilPut the binary somewhere on your PATH, like in
~/.local/bin if that is configured.
mv ./bombadil ~/.local/bin/bombadilYou should now be able to run it:
bombadil --versionNix (flake)
nix run github:antithesishq/bombadilNot yet available, but coming soon:
- Docker images
- a GitHub Action, ready to be used in your CI configuration
If you want to compile from source, see Contributing.
TypeScript support
When writing specifications in TypeScript, you’ll want the types available. If you installed Bombadil via npm, you already have them — skip ahead to Your first test.
Otherwise, install the package with your package manager of choice:
npm
npm install --save-dev @antithesishq/bombadilYarn
yarn add --dev @antithesishq/bombadilBun
bun add --development @antithesishq/bombadilOr use the files provided in the release package.
Your first test
With the CLI installed, let’s run a test just to see that things are working:
bombadil test https://en.wikipedia.org --output-path my-testThis will run until you shut it down using
CTRL+C. Any property violations will be
logged as errors, and with the --output-path option
you will get results to inspect afterwards.
Launch the Bombadil Inspect tool to see what happened in the test you just ran:
bombadil inspect my-testThis will open a web application in your browser, which has some features to highlight:
- This interface is focused on state transitions, i.e. the state before and after each action.
- On the left is the actions list, which you can use to navigate the state transitions by clicking the actions.
- In the bottom you’ll see the timeline, which you can scrub (click and drag) with your mouse. The timeline also shows the currently selected state transition.
- If there were any violations found in the test, they’ll be shown as exclamation mark icons in the timeline.
No violations? That’s fine, Wikipedia is pretty solid! This confirms that Bombadil runs and produces results.
Reproducing violations
If Bombadil finds a bug in a project you’re working on, you might want to reproduce that test case when working on a bug fix. That is, have Bombadil perform the same sequence of actions to reach the same state.
Use the --reproduce option and point it to the
output directory of the original test run:
bombadil test --reproduce=my-test http://example.comReproductions are not guaranteed to succeed; if they diverge,
Bombadil fails with an error. For reproductions to succeed, it’s
important to use the same options as in the original test. After
a test run, Bombadil prints both the inspect and
--reproduce commands you can use.