Skip to content

Commit f9b238b

Browse files
committed
Fix test
1 parent b6a7833 commit f9b238b

File tree

6 files changed

+80
-32
lines changed

6 files changed

+80
-32
lines changed

.github/workflows/bats.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,18 @@
44

55
on: [push, pull_request]
66

7+
name: "Tests"
8+
permissions: {}
9+
710
jobs:
811
bats:
912
runs-on: ubuntu-latest
13+
container: debian:latest
1014
steps:
1115
- uses: actions/checkout@v3
1216
- name: install bats
13-
uses: brokenpip3/[email protected]
17+
run: |
18+
apt-get update && apt-get install -y bats jq zstd git util-linux
1419
- name: run bats
1520
run: |
1621
bats -x -r tests

flake.lock

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.lock.license

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SPDX-FileCopyrightText: Stefan Tatschner
2+
3+
SPDX-License-Identifier: CC0-1.0

flake.nix

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# SPDX-FileCopyrightText: Stefan Tatschner
2+
#
3+
# SPDX-License-Identifier: CC0-1.0
4+
5+
{
6+
inputs = {
7+
nixpkgs.url = "github:nixos/nixpkgs";
8+
};
9+
10+
outputs = { self, nixpkgs }:
11+
with import nixpkgs { system = "x86_64-linux"; };
12+
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
13+
in {
14+
devShell.x86_64-linux = pkgs.mkShell {
15+
buildInputs = with pkgs; [
16+
bats
17+
];
18+
shellHook = ''
19+
LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath [stdenv.cc.cc]}
20+
'';
21+
};
22+
formatter.x86_64-linux = pkgs.nixpkgs-fmt;
23+
};
24+
}

penrun

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
set -u
88
set -o pipefail
9+
set -x
910

1011
PENRUN_DEFAULT_ARGS=()
1112
PENRUN_PIPE_COMMAND=()

tests/0001-invocation.bats

+20-31
Original file line numberDiff line numberDiff line change
@@ -11,35 +11,24 @@ setup() {
1111
}
1212

1313
@test "invoke penrun without parameters" {
14-
local tmpdir
15-
tmpdir="$(mktemp -d)"
16-
(
17-
cd "$tmpdir"
18-
penrun -c /dev/null ls -lah
19-
if [[ ! -d "ls" ]]; then
20-
echo "output directory is missing"
21-
return 1
22-
fi
23-
24-
mapfile -t meta < "ls/LATEST/META.json"
25-
for line in "${meta[@]}"; do
26-
local cmd
27-
local exit_code
28-
if [[ "$line" =~ EXIT:(.+) ]]; then
29-
exit_code="${BASH_REMATCH[1]}"
30-
if ((exit_code != 0)); then
31-
return 1
32-
fi
33-
fi
34-
if [[ "$line" =~ COMMAND:(.+)\s$ ]]; then
35-
cmd="${BASH_REMATCH[1]}"
36-
if [[ "$cmd" != "ls -lah" ]]; then
37-
echo "$cmd"
38-
return 1
39-
fi
40-
fi
41-
done
42-
43-
rm -rf "$tmpdir"
44-
)
14+
cd "$BATS_TEST_TMPDIR"
15+
16+
mkdir foo
17+
18+
penrun -c /dev/null ls -lah
19+
20+
if [[ ! -d "ls" ]]; then
21+
echo "output directory is missing"
22+
return 1
23+
fi
24+
25+
if (( "$(jq ".exit_code" < ls/LATEST/META.json)" != "0" )); then
26+
echo "exit_code in META != 0"
27+
return 1
28+
fi
29+
30+
if [[ "$(jq -r '.command | join(" ")' < ls/LATEST/META.json)" != "ls -lah" ]]; then
31+
echo "command != ls -lah"
32+
return 1
33+
fi
4534
}

0 commit comments

Comments
 (0)