Leia is a testing utility that tests code blocks in documentation. This makes tests easy to write and also ensures documentation is up to date and working. Behind the scenes documentation is parsed and run as a series of mocha
tests.
Leia will
- Consolidate code examples and tests into a single, easy to understand and write
markdown
file - Write functional tests quickly in an accessible and lowest common denominator language (eg
sh/bash/dash
etc) - Pass on exit status code
0
, fail on anything else - Work cross platform, with some caveats
- Keep Lando honest so he can be a real hero who doesn't betray his friends again
# With npm
npm install @lando/leia
# With yarn
yarn add @lando/leia
A very basic example of a valid Leia test is below. It must have a single H1 header, at least one H2 header and then a code block where the comment is the human readable test description and the command below is the test.
# Some Example
## Testing
# A description of my test
the command i am running
You can invoke leia
as a command line tool or directly require
it in a module.
yarn leia
Cleverly converts markdown files into mocha cli tests
USAGE
$ leia <files> <patterns> [options]
ARGUMENTS
TESTS files or patterns to scan for test
OPTIONS
-c, --cleanup-header=cleanup-header [default: Clean,Tear,Burn] sections that start with these headers are cleanup commands
-h, --help show CLI help
-i, --ignore=ignore files or patterns to ignore
-r, --retry=retry [default: 1] the amount of retries a failing test should get
-s, --setup-header=setup-header [default: Start,Setup,This is the dawning] sections that start with these headers are setup commands
-t, --test-header=test-header [default: Test,Validat,Verif] sections that start with these headers are tests
-v, --version show CLI version
--debug show debug output
--shell=shell the shell to use for the tests, default is autodetected
--stdin attach stdin when the test is run
EXAMPLES
leia README.md
leia README.md "examples/**/*.md" --retry 6 --test-header Tizzestin
leia "examples/*.md" --ignore BUTNOTYOU.md test --stdin
leia README.md --shell cmd
# Instantiate a new leia
const Leia = require('@lando/leia');
const leia = new Leia();
// Find some tests
const files = leia.find(['examples/**.md']);
// Parse those files into leia test metadata
const sources = leia.parse(files);
// Generate the mocha tests
const tests = leia.generate(sources);
// Run the tests
const runner = leia.run(tests);
runner.run((failures) => process.exitCode = failures ? 1 : 0);
For more details on specific options check out the code docs
In order for your markdown
file to be recognized as containing functional tests it needs to have at least the following
# Something to identify these tests
By default our parser will look for a section that beings with the word "Testing". This section will contain your tests.
## Testing
You can customize the word(s) that leia
will look for to identify the testing section(s) using the --test-header
option. You can also run yarn leia --help
to get a list of default words.
Under the above h2 sections you need to have a triple tick markdown code block that contains at least one comment and one command. The comment will be the human readable description of what the test does.
Here is a basic code block that runs one test
# Should cat a file
cat test.txt
If you want to learn more about the syntax and how leia
puts together the above, check out this example
Leia also allows you to specify additional h2 sections in your markdown
for setup and cleanup commands that run before and after your core tests. You can tell leia
what words these headers should start with in order to be flagged as setup and cleanup commands using the --setup-header
and --cleanup-header
options.
Here is an example of a markdown file with Setup, Testing and Cleanup sections. And here is a whole directory of examples that we test on every commit.
If you have a question or would like some community support we recommend you join us on Slack. Note that this is the Slack community for Lando but we are more than happy to help with this module as well!
If you'd like to report a bug or submit a feature request then please use the issue queue in this repo.
We try to log all changes big and small in both THE CHANGELOG and the release notes.
git clone https://github.com/lando/leia.git && cd leia
yarn install
If you dont' want to install Node 14 or Yarn for whatever reason you can install Lando and use that:
git clone https://github.com/lando/leia.git && cd leia
# Install deps and get node
lando start
# Run commands
lando node
lando yarn
lando yarn leia
# Lint the code
yarn lint
# Run unit tests
yarn test:unit
yarn release
Made with contributors-img.
You can still install the older version of Leia eg leia-parser
.
yarn add leia-parser
And its documentation lives on here.