-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtests.nix
More file actions
407 lines (360 loc) · 12.3 KB
/
tests.nix
File metadata and controls
407 lines (360 loc) · 12.3 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# RUN WITH: nix-unit ./tests.nix
let
with-inputs = import ./default.nix;
# Fake sourceInfo: has outPath but no real flake.nix → passes through mkInput unchanged.
mkSrc = outPath: { inherit outPath; };
# Fake pre-resolved flake input with .inputs (simulates dependency introspection).
mkFlake = inputs: outputs: { inherit inputs outputs; };
npins = import ./fixtures/npins;
in
{
# ── Sources ────────────────────────────────────────────────────────────────
sources.test-source-outPath-preserved = {
expr = (with-inputs { foo = mkSrc "/foo"; } { }).foo.outPath;
expected = "/foo";
};
# ── Direct decl values ─────────────────────────────────────────────────────
direct.test-local-checkout-outPath-preserved = {
# someLib.outPath = ./path → goes through mkInput (load flake if present);
# since /fake has no flake.nix the sourceInfo passes through unchanged.
expr = (with-inputs { } { someLib.outPath = "/fake"; }).someLib.outPath;
expected = "/fake";
};
direct.test-local-checkout-with-sub-input-follows-wired = {
# a = { outPath = ./path; inputs.nixpkgs.follows = "nixpkgs"; }
# Loads the local flake.nix and redirects its nixpkgs sub-input to ours.
# Verifies via the flake's outputs that the right nixpkgs was received.
expr =
let
result = with-inputs { nixpkgs = mkSrc "/our-nixpkgs"; } {
mylib = {
outPath = ./fixtures/fake-flake;
inputs.nixpkgs.follows = "nixpkgs";
};
};
in
result.mylib.usedNixpkgs.outPath;
expected = "/our-nixpkgs";
};
direct.test-direct-import-without-outPath = {
# someLib = import ./path → the value is used as-is (no outPath, not a spec).
expr =
(with-inputs { } {
someLib = {
lib = "hello";
};
}).someLib.lib;
expected = "hello";
};
direct.test-inputs-replaces-source = {
expr = (with-inputs { foo = mkSrc "/original"; } { foo = mkSrc "/override"; }).foo.outPath;
expected = "/override";
};
direct.test-pre-with-inputsd-flake-input-passes-through-unchanged = {
# A value already shaped as a flake input (_type present) is used as-is.
expr =
let
flakeInput = {
outPath = "/x";
_type = "flake";
inputs = { };
outputs = {
lib = "hello";
};
};
result = with-inputs { } { x = flakeInput; };
in
result.x.outputs.lib;
expected = "hello";
};
# ── Top-level follows ──────────────────────────────────────────────────────
top-follows.test-follows-aliases-source = {
expr = (with-inputs { a = mkSrc "/a"; } { b.follows = "a"; }).b.outPath;
expected = "/a";
};
top-follows.test-follows-aliases-decl-value = {
expr =
(with-inputs { } {
a = mkSrc "/a";
b.follows = "a";
}).b.outPath;
expected = "/a";
};
top-follows.test-follows-chain = {
# c.follows = "b" where b.follows = "a"
expr =
let
result = with-inputs { } {
a = mkSrc "/a";
b.follows = "a";
c.follows = "b";
};
in
result.c.outPath;
expected = "/a";
};
top-follows.test-nested-follows-one-level = {
# b.follows = "a/x" → allInputs.a.inputs.x
expr =
let
result = with-inputs { } {
a = mkFlake { x = mkSrc "/x"; } { };
b.follows = "a/x";
};
in
result.b.outPath;
expected = "/x";
};
top-follows.test-nested-follows-two-levels = {
# b.follows = "a/x/y" → allInputs.a.inputs.x.inputs.y
expr =
let
result = with-inputs { } {
a = mkFlake { x = mkFlake { y = mkSrc "/y"; } { }; } { };
b.follows = "a/x/y";
};
in
result.b.outPath;
expected = "/y";
};
top-follows.test-empty-follows-yields-empty-attrset = {
# b.follows = "" → intentionally disconnected, with-inputss to {}
expr = (with-inputs { } { b.follows = ""; }).b;
expected = { };
};
top-follows.test-missing-follows-target-is-null = {
# b.follows = "nonexistent" → null (guards sub-flake output evaluation)
expr = (with-inputs { } { b.follows = "nonexistent"; }).b == null;
expected = true;
};
top-follows.test-missing-nested-follows-path-is-null = {
expr =
let
result = with-inputs { } {
a = mkFlake { } { };
b.follows = "a/missing";
};
in
result.b == null;
expected = true;
};
# ── Per-sub-input follows (a.inputs.b.follows = "...") ─────────────────────
sub-follows.test-home-manager-nixpkgs-follows-uses-host-nixpkgs = {
# The canonical idiom: home-manager.inputs.nixpkgs.follows = "nixpkgs".
# Ensures home-manager uses the same nixpkgs as the host, not its own pin.
# The fixture flake.nix declares inputs.nixpkgs and exposes it via usedNixpkgs.
expr =
let
result =
with-inputs
{
nixpkgs = mkSrc "/our-nixpkgs";
home-manager = mkSrc ./fixtures/fake-flake;
}
{
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
in
result.home-manager.usedNixpkgs.outPath;
expected = "/our-nixpkgs";
};
sub-follows.test-source-kept-when-only-sub-input-spec-declared = {
# inputs.a = { inputs.dep.follows = "dep"; } is a pure meta-spec:
# no outPath means keep the source from sources, apply the sub-input override.
expr =
let
result =
with-inputs
{
nixpkgs = mkSrc "/our-nixpkgs";
mylib = mkSrc ./fixtures/fake-flake;
}
{
mylib.inputs.nixpkgs.follows = "nixpkgs";
};
in
result.mylib.usedNixpkgs.outPath;
expected = "/our-nixpkgs";
};
sub-follows.test-sub-input-follows-missing-target-skips-outputs = {
# utils.follows = "flake-utils" but flake-utils not pinned → utils = null.
# A real sub-flake needing 'utils' would have inputsOk=false → outputs={}.
expr =
(with-inputs { nixpkgs = mkSrc "/nixpkgs"; } { utils.follows = "flake-utils"; }).utils == null;
expected = true;
};
sub-follows.test-sub-input-nested-follows = {
# home-manager.inputs.nixpkgs.follows = "inputs/nixpkgs" → traverses inputs.inputs.nixpkgs
expr =
let
result =
with-inputs
{
inputs = mkFlake { nixpkgs = mkSrc "/nested-nixpkgs"; } { };
home-manager = mkSrc ./fixtures/fake-flake;
}
{
home-manager.inputs.nixpkgs.follows = "inputs/nixpkgs";
};
in
result.home-manager.usedNixpkgs.outPath;
expected = "/nested-nixpkgs";
};
# ── Indirect inputs (outputs function args not declared in inputs) ────────
indirect.test-outputs-accepts-indirect-input-override = {
# The flake at ./fixtures/indirect-flake has no inputs.nixpkgs declared,
# but its `outputs` takes a `nixpkgs` argument.
expr =
let
result = with-inputs {
nixpkgs = mkSrc "/our-nixpkgs";
mylib = mkSrc ./fixtures/indirect-flake;
} { };
in
result.mylib.usedNixpkgs.outPath;
expected = "/our-nixpkgs";
};
# ── Functor / self ─────────────────────────────────────────────────────────
functor-self.test-outputs-function-receives-with-inputsd-inputs = {
expr =
(with-inputs { foo = mkSrc "/foo"; } { } (inputs: {
v = inputs.foo.outPath;
})).v;
expected = "/foo";
};
functor-self.test-outputs-function-receives-inputs = {
expr =
(with-inputs { } { } (inputs: {
has = inputs ? self;
})).has;
expected = true;
};
functor-self.test-inputs-is-the-with-inputs-attrset = {
expr = (with-inputs { foo = mkSrc "/foo"; } { } (_: { })).inputs.foo.outPath;
expected = "/foo";
};
functor-self.test-outputs-is-the-raw-outputs-attrset = {
expr =
(with-inputs { } { } (_: {
marker = "hello";
})).outputs.marker;
expected = "hello";
};
functor-self.test-output-attrs-merged-on-self = {
# inputs.self.packages ≡ inputs.self.outputs.packages
expr =
(with-inputs { } { } (_: {
packages.default = "pkg";
})).packages.default;
expected = "pkg";
};
functor-self.test-inputs-self-is-self = {
# Circular but lazy-safe: inputs.self.inputs.self == inputs.self
expr =
let
result = with-inputs { } { } (_: { });
in
result.inputs.self == result;
expected = true;
};
# ── Input Overrides Function ────────────────────────────────────────────────
input-overrides.test-input-function-overrides-foo = {
expr =
(with-inputs { foo = mkSrc "/foo"; } (inputs: {
foo = mkSrc "/bar";
})).foo.outPath;
expected = "/bar";
};
input-overrides.test-input-function-overrides-and-uses-foo = {
expr =
(with-inputs
{
foo = mkSrc "/foo";
bar = mkSrc "/bar";
}
(inputs: {
foo = mkSrc "${inputs.bar}/bar";
})
).foo.outPath;
expected = "/bar/bar";
};
# ── Dependency introspection ────────────────────────────────────────────────
introsepction.test-access-sub-flake-inputs = {
# inputs.someFlake.inputs.dep — traverse a dependency's own inputs
expr = (with-inputs { } { a = mkFlake { dep = mkSrc "/dep"; } { }; }).a.inputs.dep.outPath;
expected = "/dep";
};
introsepction.test-access-sub-flake-outputs = {
# inputs.someFlake.outputs.lib — explicit outputs access
expr = (with-inputs { } { a = mkFlake { } { lib = "mylib"; }; }).a.outputs.lib;
expected = "mylib";
};
introsepction.test-sub-flake-output-attrs-merged-at-top-level = {
# inputs.someFlake.lib ≡ inputs.someFlake.outputs.lib
expr =
let
flakeInput = {
lib = "mylib";
outputs = {
lib = "mylib";
};
inputs = { };
_type = "flake";
outPath = "/x";
};
in
(with-inputs { } { a = flakeInput; }).a.lib;
expected = "mylib";
};
real-flakes.test-npins-nix-maid-nixosModules-output-is-readable = {
expr =
(with-inputs npins { } (inputs: {
check = inputs ? nix-maid.nixosModules.default;
})).check;
expected = true;
};
real-flakes.test-npins-home-manager-nixosModules-output-is-readable = {
expr =
(with-inputs npins { } (inputs: {
check = inputs ? home-manager.nixosModules.default;
})).check;
expected = true;
};
real-flakes.test-npins-hjem-nixosModules-output-is-readable = {
expr =
(with-inputs npins { } (inputs: {
check = inputs ? hjem.nixosModules.default;
})).check;
expected = true;
};
real-flakes.test-npins-hjem-smfh-nixpkgs-dependency-is-followed = {
expr =
(with-inputs npins { } (inputs: {
check = inputs.hjem.inputs.smfh.inputs.nixpkgs.sourceInfo.outPath;
})).check;
expected = npins.nixpkgs.outPath;
};
non-flakes.test-non-flakes-are-not-evaluated = {
expr =
(with-inputs
{
yesFlake.outPath = ./fixtures/fake-flake;
nonFlake.outPath = ./fixtures/fake-flake;
}
{
nonFlake = source: source // { flake = false; };
}
(inputs: {
result.yes.hasOutputs = inputs.yesFlake ? outputs;
result.non.hasOutputs = inputs.nonFlake ? outputs;
result.non.sourceInfo = inputs.nonFlake.sourceInfo;
})
).result;
expected = {
yes.hasOutputs = true;
non.hasOutputs = false;
non.sourceInfo.flake = false;
non.sourceInfo.outPath = ./fixtures/fake-flake;
};
};
}