44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
BZLMOD_FLAG="${BZLMOD_FLAG:-}"
|
|
|
|
function run_test {
|
|
bazel run $BZLMOD_FLAG //lib/tests/write_source_files:write_symlinks
|
|
|
|
local expected_out="lib/tests/write_source_files/symlink_test/a/test.txt"
|
|
if [ ! -e "$expected_out" ]; then
|
|
echo "ERROR: expected $expected_out to exist"
|
|
exit 1
|
|
fi
|
|
if [ -x "$expected_out" ]; then
|
|
echo "ERROR: expected $expected_out to not be executable"
|
|
exit 1
|
|
fi
|
|
if [ -L "$expected_out" ]; then
|
|
echo "ERROR: expected $expected_out to not be a symlink"
|
|
exit 1
|
|
fi
|
|
|
|
local expected_out="lib/tests/write_source_files/symlink_test/b/test.txt"
|
|
if [ ! -e "$expected_out" ]; then
|
|
echo "ERROR: expected $expected_out to exist"
|
|
exit 1
|
|
fi
|
|
if [ -x "$expected_out" ]; then
|
|
echo "ERROR: expected $expected_out to not be executable"
|
|
exit 1
|
|
fi
|
|
if [ -L "$expected_out" ]; then
|
|
echo "ERROR: expected $expected_out to not be a symlink"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Run twice to make sure we can have permission to overwrite the outputs of a previous run
|
|
rm -f lib/tests/write_source_files/symlink_test/a/test.txt
|
|
rm -f lib/tests/write_source_files/symlink_test/b/test.txt
|
|
run_test
|
|
run_test
|
|
echo "All tests passed"
|