generated from exercism/generic-test-runner
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrun.sh
executable file
·61 lines (47 loc) · 2.15 KB
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env sh
# Synopsis:
# Run the test runner on a solution.
# Arguments:
# $1: exercise slug
# $2: path to solution folder
# $3: path to output directory
# Output:
# Writes the test results to a results.json file in the passed-in output directory.
# The test results are formatted according to the specifications at https://github.com/exercism/docs/blob/main/building/tooling/test-runners/interface.md
# Example:
# ./bin/run.sh two-fer path/to/solution/folder/ path/to/output/directory/
# If any required arguments is missing, print the usage and exit
if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ]; then
echo "usage: ./bin/run.sh exercise-slug path/to/solution/folder/ path/to/output/directory/"
exit 1
fi
slug="$1"
solution_dir=$(realpath "${2%/}")
output_dir=$(realpath "${3%/}")
results_file="${output_dir}/results.json"
# Create the output directory if it doesn't exist
mkdir -p "${output_dir}"
echo "${slug}: testing..."
start_dir="$(pwd)"
cd "${solution_dir}" || exit 1
# Run the tests for the provided implementation file and redirect stdout and stderr to capture it.
# We also redirect the global cache from some default global directory to the output directory.
test_output=$(scarb --global-cache-dir "$output_dir/.cache" cairo-test --include-ignored 2>&1)
exit_code=$?
cd "${start_dir}" || exit 1
# Write the results.json file based on the exit code of the command that was
# just executed that tested the implementation file
if [ ${exit_code} -eq 0 ]; then
jq -n '{version: 1, status: "pass"}' >"${results_file}"
else
# Try to distinguish between failing tests and errors
if echo "$test_output" | grep -q "error:"; then
status="error"
sanitized_test_output=$(echo "$test_output" | sed -n "/Compiling.*$/d ; s@$solution_dir@@g ; /error: could not compile/q;p")
else
status="fail"
sanitized_test_output=$(echo "$test_output" | sed -n '1,/failures:/d ; /Error: test result/q;p' | sed 's/[[:space:]]\{3\}.\+:://g ; /./G')
fi
jq -n --arg output "${sanitized_test_output}" --arg status "${status}" '{version: 1, status: $status, message: $output}' >"${results_file}"
fi
echo "$slug: generated $results_file"