3.6 KiB
How To Make And Run Integration Tests For lazygit
Integration tests are located in test/integration
. Each test will run a bash script to prepare a test repo, then replay a recorded lazygit session from within that repo, and then the resultant repo will be compared to an expected repo that was created upon the initial recording. Each integration test lives in its own directory, and the name of the directory becomes the name of the test. Within the directory must be the following files:
test.json
An example of a test.json
is:
{ "description": "stage a file and commit the change", "speed": 20 }
The speed
key refers to the playback speed as a multiple of the original recording speed. So 20 means the test will run 20 times faster than the original recording speed. If a test fails for a given speed, it will drop the speed and re-test, until finally attempting the test at the original speed. If you omit the speed, it will default to 10.
setup.sh
This is a bash script containing the instructions for creating the test repo from scratch. For example:
#!/bin/sh
cd $1
git init
git config user.email "CI@example.com"
git config user.name "CI"
echo test1 > myfile1
git add .
git commit -am "myfile1"
Running tests
From a TUI
You can run/record/sandbox tests via a TUI with the following command:
go run test/lazyintegration/main.go
This TUI makes much of the following documentation redundant, but feel free to read through anyway!
From command line
To run all tests - assuming you're at the project root:
go test ./pkg/gui/
To run them in parallel
PARALLEL=true go test ./pkg/gui
To run a single test
go test ./pkg/gui -run /<test name>
# For example, to run the `tags` test:
go test ./pkg/gui -run /tags
To run a test at a certain speed
SPEED=2 go test ./pkg/gui -run /<test name>
To update a snapshot
MODE=updateSnapshot go test ./pkg/gui -run /<test name>
Creating a new test
To create a new test:
- Copy and paste an existing test directory and rename the new directory to whatever you want the test name to be. Update the test.json file's description to describe your test.
- Update the
setup.sh
any way you like - If you want to have a config folder for just that test, create a
config
directory to contain aconfig.yml
and optionally astate.yml
file. Otherwise, thetest/default_test_config
directory will be used. - From the lazygit root directory, run:
MODE=record go test ./pkg/gui -run /<test name>
- Feel free to re-attempt recording as many times as you like. In the absence of a proper testing framework, the more deliberate your keypresses, the better!
- Once satisfied with the recording, stage all the newly created files:
test.json
,setup.sh
,recording.json
and theexpected
directory that contains a copy of the repo you created.
The resulting directory will look like:
actual/ (the resulting repo after running the test, ignored by git)
expected/ (the 'snapshot' repo)
config/ (need not be present)
test.json
setup.sh
recording.json
Feel free to create a hierarchy of directories in the test/integration
directory to group tests by feature.
Sandboxing
The integration tests serve a secondary purpose of providing a setup for easy sandboxing. If you want to run a test in sandbox mode (meaning the session won't be recorded and we won't create/update snapshots), go:
MODE=sandbox go test ./pkg/gui -run /<test name>
Feedback
If you think this process can be improved, let me know! It shouldn't be too hard to change things.