testing: migrate case-hack.sh

Change-Id: I552dd596764a779e1485a6326363d4f4283110f3
This commit is contained in:
eldritch horrors
2026-02-27 17:42:17 +00:00
parent 4caa622d78
commit 8cf21fcf75
4 changed files with 51 additions and 20 deletions
-19
View File
@@ -1,19 +0,0 @@
source common.sh
clearStore
rm -rf $TEST_ROOT/case
opts="--option use-case-hack true"
# Check whether restoring and dumping a NAR that contains case
# collisions is round-tripping, even on a case-insensitive system.
nix-store $opts --restore $TEST_ROOT/case < case.nar
nix-store $opts --dump $TEST_ROOT/case > $TEST_ROOT/case.nar
cmp case.nar $TEST_ROOT/case.nar
[ "$(nix-hash $opts --type sha256 $TEST_ROOT/case)" = "$(nix-hash --flat --type sha256 case.nar)" ]
# Check whether we detect true collisions (e.g. those remaining after
# removal of the suffix).
touch "$TEST_ROOT/case/xt_CONNMARK.h~nix~case~hack~3"
(! nix-store $opts --dump $TEST_ROOT/case > /dev/null)
-1
View File
@@ -100,7 +100,6 @@ functional_tests_scripts = [
'eval-store.sh',
'derivation-json.sh',
'import-derivation.sh',
'case-hack.sh',
'placeholders.sh',
'ssh-relay.sh',
'build.sh',
+51
View File
@@ -0,0 +1,51 @@
from testlib.fixtures.nix import Nix
from testlib.fixtures.file_helper import CopyFile, with_files
files = {"case.nar": CopyFile("assets/case.nar")}
opts = ["--option", "use-case-hack", "true"]
expected = {
"x",
"x/FOO",
"x/Foo~nix~case~hack~1",
"x/foo~nix~case~hack~2",
"x/foo~nix~case~hack~2/A",
"x/foo~nix~case~hack~2/A/foo",
"x/foo~nix~case~hack~2/a~nix~case~hack~1",
"x/foo~nix~case~hack~2/a~nix~case~hack~1/foo",
"x/foo-1",
"x/foo0",
"xt_CONNMARK.h",
"xt_CONNmark.h~nix~case~hack~1",
"xt_connmark.h~nix~case~hack~2",
}
@with_files(files)
def test_case_hack(nix: Nix):
nar_path = nix.env.dirs.home / "case.nar"
nar = nar_path.read_bytes()
out = nix.env.dirs.home / "case"
# Check whether restoring and dumping a NAR that contains case
# collisions is round-tripping, even on a case-insensitive system.
nix.nix_store([*opts, "--restore", out]).with_stdin(nar).run().ok()
assert set({str(p.relative_to(out)) for p in out.rglob("*")}) == expected
dumped = nix.nix_store([*opts, "--dump", out]).run().ok().stdout
assert dumped == nar
out_hash = nix.nix([*opts, "--type", "sha256", out], nix_exe="nix-hash").run().ok().stdout_plain
nar_hash = (
nix.nix(["--flat", "--type", "sha256", nar_path], nix_exe="nix-hash")
.run()
.ok()
.stdout_plain
)
assert out_hash == nar_hash
# Check whether we detect true collisions (e.g. those remaining after
# removal of the suffix).
(out / "xt_CONNMARK.h~nix~case~hack~3").write_text("")
assert "file name collision" in nix.nix_store([*opts, "--dump", out]).run().expect(1).stderr_s