File tree 6 files changed +80
-32
lines changed
6 files changed +80
-32
lines changed Original file line number Diff line number Diff line change 4
4
5
5
on : [push, pull_request]
6
6
7
+ name : " Tests"
8
+ permissions : {}
9
+
7
10
jobs :
8
11
bats :
9
12
runs-on : ubuntu-latest
13
+ container : debian:latest
10
14
steps :
11
15
- uses : actions/checkout@v3
12
16
- name : install bats
13
- uses :
brokenpip3/[email protected]
17
+ run : |
18
+ apt-get update && apt-get install -y bats jq zstd git util-linux
14
19
- name : run bats
15
20
run : |
16
21
bats -x -r tests
Original file line number Diff line number Diff line change
1
+ SPDX-FileCopyrightText: Stefan Tatschner
2
+
3
+ SPDX-License-Identifier: CC0-1.0
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 6
6
7
7
set -u
8
8
set -o pipefail
9
+ set -x
9
10
10
11
PENRUN_DEFAULT_ARGS=()
11
12
PENRUN_PIPE_COMMAND=()
Original file line number Diff line number Diff line change @@ -11,35 +11,24 @@ setup() {
11
11
}
12
12
13
13
@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
45
34
}
You can’t perform that action at this time.
0 commit comments