Add integration tests

This commit is contained in:
Zhaofeng Li 2021-11-22 01:52:35 -08:00
parent ec51f5703f
commit 430a91cbad
8 changed files with 260 additions and 1 deletions

View file

@ -0,0 +1,15 @@
let
tools = import ../tools.nix {};
in tools.makeTest {
name = "colmena-exec";
bundle = ./.;
testScript = ''
logs = deployer.succeed("cd /tmp/bundle && ${tools.colmenaExec} exec -v --on @target -- echo output from '$(hostname)' 2>&1")
assert "output from alpha" in logs
assert "output from beta" in logs
assert "output from gamma" in logs
'';
}