core/pkgs/build-support/trivial-builders/test/write-text-file.nix

69 lines
1.7 KiB
Nix
Raw Normal View History

2024-05-13 21:24:10 +00:00
/* To run:
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
cd nixpkgs
nix-build -A tests.trivial-builders.writeTextFile
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
or to run an individual test case
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
cd nixpkgs
nix-build -A tests.trivial-builders.writeTextFile.foo
2024-05-02 00:46:19 +00:00
*/
{ lib, runCommand, runtimeShell, writeTextFile }:
let
2024-05-13 21:24:10 +00:00
veryWeirdName =
''here's a name with some "bad" characters, like spaces and quotes'';
in lib.recurseIntoAttrs {
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
different-exe-name = let
pkg = writeTextFile {
name = "bar";
destination = "/bin/foo";
executable = true;
text = ''
#!${runtimeShell}
echo hi
2024-05-02 00:46:19 +00:00
'';
2024-05-13 21:24:10 +00:00
};
in assert pkg.meta.mainProgram == "foo";
assert baseNameOf (lib.getExe pkg) == "foo";
assert pkg.name == "bar";
runCommand "test-writeTextFile-different-exe-name" { } ''
PATH="${lib.makeBinPath [ pkg ]}:$PATH"
x=$(foo)
[[ "$x" == hi ]]
touch $out
'';
2024-05-02 00:46:19 +00:00
weird-name = writeTextFile {
name = "weird-names";
destination = "/etc/${veryWeirdName}";
2024-05-13 21:24:10 +00:00
text = "passed!";
2024-05-02 00:46:19 +00:00
checkPhase = ''
# intentionally hardcode everything here, to make sure
# Nix does not mess with file paths
name="here's a name with some \"bad\" characters, like spaces and quotes"
fullPath="$out/etc/$name"
if [ -f "$fullPath" ]; then
echo "[PASS] File exists!"
else
echo "[FAIL] File was not created at expected path!"
exit 1
fi
content=$(<"$fullPath")
expected="passed!"
if [ "$content" = "$expected" ]; then
echo "[PASS] Contents match!"
else
echo "[FAIL] File contents don't match!"
echo " Expected: $expected"
echo " Got: $content"
exit 2
fi
'';
};
}