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
62
63
64
65
66
67
68
69
70
|
from pathlib import Path
from testlib.fixtures.nix import Nix
from testlib.fixtures.file_helper import CopyFile, Symlink, with_files, File
from testlib.utils import get_global_asset_pack
from testlib.fixtures.git import Git
@with_files(
{"flake1": {"flake.nix": CopyFile("assets/flake1.nix")}, "flake1_sym": Symlink("flake1")}
)
def test_symlink_points_to_flake(nix: Nix, files: Path) -> None:
result = nix.nix(["eval", f"{files}/flake1_sym#x"], flake=True).run().ok()
assert result.stdout_plain == "2"
@with_files(
{
"subdir": {"flake1": {"flake.nix": CopyFile("assets/flake1.nix")}},
"subdir_sym": Symlink("subdir"),
}
)
def test_symlink_points_to_flake_in_subdir(nix: Nix, files: Path) -> None:
result = nix.nix(["eval", f"{files}/subdir_sym/flake1#x"], flake=True).run().ok()
assert result.stdout_plain == "2"
@with_files(
{
"flake1": {"subdir": {"flake.nix": CopyFile("assets/flake1.nix")}},
"flake1_sym": Symlink("flake1/subdir"),
}
)
def test_symlink_points_to_dir_in_repo(nix: Nix, files: Path) -> None:
result = nix.nix(["eval", f"{files}/flake1_sym#x"], flake=True).run().ok()
assert result.stdout_plain == "2"
@with_files(
{
"repo1": get_global_asset_pack(".git")
| {"file": File("Hello"), "subdir": {"flake.nix": CopyFile("assets/flake2.nix")}},
"repo2": get_global_asset_pack(".git")
| {"file": File("World"), "flake1_sym": Symlink("../repo1/subdir")},
}
)
def test_symlink_from_repo_to_another(nix: Nix, files: Path, git: Git) -> None:
git(files / "repo1", "add", "subdir/flake.nix", "file")
result = nix.nix(["eval", f"{files}/repo1/subdir#x"], flake=True).run().ok()
assert result.stdout_plain == '"Hello"'
git(files / "repo2", "add", "flake1_sym", "file")
result = nix.nix(["eval", f"{files}/repo2/flake1_sym#x"], flake=True).run().ok()
assert result.stdout_plain == '"Hello"'
@with_files(
{
"repo1": get_global_asset_pack(".git")
| {"flake.nix": CopyFile("assets/flake_a.nix"), "subdir": {}},
"repo2": get_global_asset_pack(".git")
| {"flake.nix": CopyFile("assets/flake_b.nix"), "subdir_sym": Symlink("../repo1/subdir")},
}
)
def test_symlink_to_subdir_without_flake(nix: Nix, files: Path, git: Git) -> None:
git(files / "repo1", "add", "flake.nix", "subdir")
git(files / "repo2", "add", "flake.nix", "subdir_sym")
result = nix.nix(["eval", f"{files}/repo2/subdir_sym#x"], flake=True).run().ok()
assert result.stdout_plain == '"b"'
|