forked from andir/npins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.nix
558 lines (487 loc) · 17.7 KB
/
test.nix
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
{
system ? builtins.currentSystem,
pins ? import ./npins,
pkgs ? import pins.nixpkgs { inherit system; },
npins ? pkgs.callPackage ./npins.nix { },
}:
let
# utility bash functions used throught the tests
prelude = pkgs.writeShellScript "prelude" ''
export HOME=$TMPDIR
export NIX_STATE_DIR=$TMPDIR
export NIX_DATA_DIR=$TMPDIR
export NIX_STORE_DIR=$TMPDIR
export NIX_LOG_DIR=$TMPDIR
function eq() {
local a=$1
local b=$2
printf '[[ "%s" = "%s" ]]' "$a" "$b"
if [[ "$a" = "$b" ]]; then echo " OK"; else echo " FAIL"; exit 1; fi
}
function resolveGitCommit() {
local repo=$1
local commitish=''${2:-main}
git -C $repo rev-list -n1 $commitish
}
'';
inherit (pkgs) lib;
# Generate a git repository hat can be served via HTTP.
#
# By default the repository will contain an empty `test.txt`
# file. For all defined tags the name of the tag is written to that
# file for the respective commit for the tag.
mkGitRepo =
{
name ? "git-repo",
branchName ? "main",
tags ? [ ],
extraCommands ? "",
}:
pkgs.runCommand "git-repo" { nativeBuildInputs = [ pkgs.gitMinimal ]; } ''
export HOME=$TMP
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
git config --global init.defaultBranch main
mkdir tmp
git init tmp
cd tmp
git checkout -B '${branchName}'
touch test.txt
git add test.txt
git commit -v -m "init"
${pkgs.lib.concatMapStringsSep "\n" (tag: ''
echo '${tag}' > test.txt
git add test.txt
git commit -v -m 'commit for tag ${tag}'
git tag '${tag}'
'') tags}
git checkout -B '${branchName}' # TODO remove this and tests fail (:
${extraCommands}
git update-server-info
cp -r .git $out
'';
gitRepo = mkGitRepo {
branchName = "test-branch";
tags = [
"release"
"0.1"
"v0.2"
];
};
testTarball = pkgs.runCommand "test.tar" { } ''
echo "Hello world" > foo
tar -zcvf $out foo
'';
mkGitTest =
{
name,
commands,
# Repositories to host. key = repo path, value = repo derivation
repositories,
}:
pkgs.runCommand name
{
nativeBuildInputs = with pkgs; [
npins
python3
netcat
nix
gitMinimal
jq
nix-prefetch-git
];
}
''
set -euo pipefail
source ${prelude}
echo -e "\n\nRunning test ${name}\n"
cd $(mktemp -d)
# Mock the repositories
${lib.pipe repositories [
(lib.mapAttrsToList (
repoPath: gitRepo: ''
mkdir -p $(dirname ${repoPath})
ln -s ${gitRepo} "${repoPath}"
''
))
(lib.concatStringsSep "\n")
]}
# Mark repos as safe for usage with Git cli
${lib.pipe repositories [
(lib.mapAttrsToList (_: gitRepo: "git config --global --add safe.directory ${gitRepo}"))
(lib.concatStringsSep "\n")
]}
python -m http.server 8000 &
timeout 30 sh -c 'set -e; until nc -z 127.0.0.1 8000; do sleep 1; done' || exit 1
${commands}
touch $out
'';
mkForgejoTest =
{
name,
commands,
# Repositories to host. key = repo path, value = repo derivation
repositories,
# For simplicity, all fake releases will be added to all repositories,
# and both as "archive" (for refs) and as "tarball" (for releases)
apiTarballs ? [ ],
}:
pkgs.runCommand name
{
nativeBuildInputs = with pkgs; [
npins
python3
netcat
nix
gitMinimal
jq
];
}
''
set -euo pipefail
source ${prelude}
echo "Running test ${name}"
cd $(mktemp -d)
# Mock the repositories
${lib.pipe repositories [
(lib.mapAttrsToList (
repoPath: gitRepo: ''
mkdir -p $(dirname ${repoPath})
ln -s ${gitRepo} "${repoPath}.git"
# Mock the releases
tarballPath="api/v1/repos/${repoPath}/archive"
mkdir -p $tarballPath
archivePath="${repoPath}/archive"
mkdir -p $archivePath
${lib.concatMapStringsSep "\n" (path: ''
ln -s ${testTarball} $tarballPath/${path}.tar.gz
ln -s ${testTarball} $archivePath/${path}
'') apiTarballs}
chmod -R +rw $archivePath
chmod -R +rw $tarballPath
pwd
ls -la $tarballPath
# For each of the commits in the repo create the tarballs
git config --global --add safe.directory ${gitRepo}
echo $(git -C ${gitRepo} log --oneline --format="format:%H")
git -C ${gitRepo} log --oneline --format="format:%H" | xargs -I XX -n1 git -C ${gitRepo} archive -o $PWD/$tarballPath/XX.tar.gz XX
git -C ${gitRepo} log --oneline --format="format:%H" | xargs -I XX -n1 git -C ${gitRepo} archive -o $PWD/$archivePath/XX.tar.gz XX
''
))
(lib.concatStringsSep "\n")
]}
python -m http.server 8000 &
timeout 30 sh -c 'set -e; until nc -z 127.0.0.1 8000; do sleep 1; done' || exit 1
${commands}
touch $out
'';
mkGithubTest =
{
name,
commands,
# Repositories to host. key = repo path, value = repo derivation
repositories,
# For simplicity, all fake releases will be added to all repositories,
# and both as "archive" (for refs) and as "tarball" (for releases)
apiTarballs ? [ ],
}:
pkgs.runCommand name
{
nativeBuildInputs = with pkgs; [
npins
python3
netcat
nix
gitMinimal
jq
];
}
''
set -euo pipefail
export NPINS_GITHUB_HOST=http://localhost:8000
export NPINS_GITHUB_API_HOST=http://localhost:8000/api
source ${prelude}
echo "Running test ${name}"
cd $(mktemp -d)
# Mock the repositories
${lib.pipe repositories [
(lib.mapAttrsToList (
repoPath: gitRepo: ''
mkdir -p $(dirname ${repoPath})
ln -s ${gitRepo} "${repoPath}.git"
# Mock the releases
tarballPath="api/repos/${repoPath}/tarball"
mkdir -p $tarballPath
archivePath="${repoPath}/archive"
mkdir -p $archivePath
${lib.concatMapStringsSep "\n" (path: ''
ln -s ${testTarball} $tarballPath/${path}
ln -s ${testTarball} $archivePath/${path}.tar.gz
'') apiTarballs}
chmod -R +rw $archivePath
chmod -R +rw $tarballPath
pwd
ls -la $tarballPath
# For each of the commits in the repo create the tarballs
git config --global --add safe.directory ${gitRepo}
git -C ${gitRepo} log --oneline --format="format:%H" | xargs -I XX -n1 git -C ${gitRepo} archive -o $PWD/$tarballPath/XX XX
git -C ${gitRepo} log --oneline --format="format:%H" | xargs -I XX -n1 git -C ${gitRepo} archive -o $PWD/$archivePath/XX.tar.gz XX
''
))
(lib.concatStringsSep "\n")
]}
python -m http.server 8000 &
timeout 30 sh -c 'set -e; until nc -z 127.0.0.1 8000; do sleep 1; done' || exit 1
${commands}
touch $out
'';
in
{
addDryRun = mkGitTest {
name = "add-dry-run";
repositories."foo" = gitRepo;
commands = ''
npins init --bare
npins add -n git http://localhost:8000/foo -b test-branch
V=$(jq -r .pins npins/sources.json)
[[ "$V" = "{}" ]]
'';
};
gitDependency = mkGitTest rec {
name = "git-dependency";
repositories."foo" = gitRepo;
commands = ''
npins init --bare
npins add git http://localhost:8000/foo -b test-branch
npins show
nix-instantiate --eval npins -A foo.outPath
# Check version and url
eq "$(jq -r .pins.foo.version npins/sources.json)" "null"
eq "$(jq -r .pins.foo.revision npins/sources.json)" "$(resolveGitCommit ${repositories."foo"} HEAD)"
eq "$(jq -r .pins.foo.url npins/sources.json)" "null"
'';
};
gitRepoEmptyFails = mkGitTest {
name = "from-empty-git-repo";
repositories."foo" = mkGitRepo {
tags = [ ];
branchName = "foo";
};
commands = ''
npins init --bare
! npins add git http://localhost:8000/foo
'';
};
gitTag = mkGitTest rec {
name = "from-git-repo-tag";
repositories."foo" = gitRepo;
commands = ''
npins init --bare
npins add git http://localhost:8000/foo
git ls-remote http://localhost:8000/foo
nix-instantiate --eval npins -A foo.outPath
# Check version and url
eq "$(jq -r .pins.foo.version npins/sources.json)" "v0.2"
eq "$(jq -r .pins.foo.revision npins/sources.json)" "$(resolveGitCommit ${repositories."foo"} HEAD)"
eq "$(jq -r .pins.foo.url npins/sources.json)" "null"
'';
};
# maybe test using forgejo? https://github.com/NixOS/nixpkgs/blob/master/nixos/tests/forgejo.nix
forgejoRelease = mkForgejoTest {
name = "forgejo-release";
repositories."foo/bar" = gitRepo;
apiTarballs = [ "v0.2" ];
commands = ''
npins init --bare
npins add forgejo http://localhost:8000 foo bar
nix-instantiate --eval npins -A bar.outPath
# Check version and url
eq "$(jq -r .pins.bar.version npins/sources.json)" "v0.2"
eq "$(jq -r .pins.bar.revision npins/sources.json)" "$(resolveGitCommit ${gitRepo} v0.2)"
eq "$(jq -r .pins.bar.url npins/sources.json)" "http://localhost:8000/api/v1/repos/foo/bar/archive/v0.2.tar.gz"
'';
};
forgejoBranch = mkForgejoTest {
name = "forgejo-branch";
repositories."foo/bar" = gitRepo;
apiTarballs = [ "v0.2" ];
commands = ''
npins init --bare
npins add forgejo http://localhost:8000 foo bar --branch test-branch
nix-instantiate --eval npins -A bar.outPath
# Check version and url
eq "$(jq -r .pins.bar.version npins/sources.json)" "null"
eq "$(jq -r .pins.bar.revision npins/sources.json)" "$(resolveGitCommit ${gitRepo} test-branch)"
eq "$(jq -r .pins.bar.url npins/sources.json)" "http://localhost:8000/foo/bar/archive/$(resolveGitCommit ${gitRepo} test-branch).tar.gz"
'';
};
forgejoSubmodule = mkForgejoTest rec {
name = "forgejo-submodule";
apiTarballs = [ "cbbbea814edccc7bf23af61bd620647ed7c0a436" ];
repositories."owner/bar" = gitRepo;
repositories."owner/foo" = mkGitRepo {
name = "repo-with-submodules";
extraCommands = ''
git submodule init
# In order to be able to add the submodule, we need to fake host it
cd ..
${pkgs.python3}/bin/python -m http.server 8000 &
timeout 30 sh -c 'set -e; until ${pkgs.netcat}/bin/nc -z 127.0.0.1 8000; do sleep 1; done' || exit 1
mkdir owner
ln -s ${repositories."owner/bar"} "owner/bar.git"
cd tmp
git submodule add "http://localhost:8000/owner/bar.git"
'';
};
commands = ''
npins init --bare
npins add forgejo http://localhost:8000 owner foo --branch main
npins add --name foo2 forgejo http://localhost:8000 owner foo --branch main --submodules
# Both have the same revision, but only foo has an URL
eq "$(jq -r .pins.foo.version npins/sources.json)" "null"
eq "$(jq -r .pins.foo2.version npins/sources.json)" "null"
eq "$(jq -r .pins.foo.revision npins/sources.json)" "$(resolveGitCommit ${repositories."owner/foo"})"
eq "$(jq -r .pins.foo2.revision npins/sources.json)" "$(resolveGitCommit ${repositories."owner/foo"})"
eq "$(jq -r .pins.foo.url npins/sources.json)" "http://localhost:8000/owner/foo/archive/$(resolveGitCommit ${repositories."owner/foo"}).tar.gz"
eq "$(jq -r .pins.foo2.url npins/sources.json)" "null"
'';
};
githubRelease = mkGithubTest {
name = "github-release";
repositories."foo/bar" = gitRepo;
apiTarballs = [ "v0.2" ];
commands = ''
npins init --bare
npins add github foo bar
nix-instantiate --eval npins -A bar.outPath
# Check version and url
eq "$(jq -r .pins.bar.version npins/sources.json)" "v0.2"
eq "$(jq -r .pins.bar.revision npins/sources.json)" "$(resolveGitCommit ${gitRepo} v0.2)"
eq "$(jq -r .pins.bar.url npins/sources.json)" "http://localhost:8000/api/repos/foo/bar/tarball/v0.2"
'';
};
githubBranch = mkGithubTest {
name = "github-branch";
repositories."foo/bar" = gitRepo;
apiTarballs = [ "v0.2" ];
commands = ''
npins init --bare
npins add github foo bar --branch test-branch
nix-instantiate --eval npins -A bar.outPath
# Check version and url
eq "$(jq -r .pins.bar.version npins/sources.json)" "null"
eq "$(jq -r .pins.bar.revision npins/sources.json)" "$(resolveGitCommit ${gitRepo} test-branch)"
eq "$(jq -r .pins.bar.url npins/sources.json)" "http://localhost:8000/foo/bar/archive/$(resolveGitCommit ${gitRepo} test-branch).tar.gz"
'';
};
gitSubmodule = mkGitTest rec {
name = "git-submodule";
repositories."bar" = gitRepo;
repositories."foo" = mkGitRepo {
name = "repo-with-submodules";
extraCommands = ''
git submodule init
# In order to be able to add the submodule, we need to fake host it
cd ..
${pkgs.python3}/bin/python -m http.server 8000 &
timeout 30 sh -c 'set -e; until ${pkgs.netcat}/bin/nc -z 127.0.0.1 8000; do sleep 1; done' || exit 1
ln -s ${repositories.bar} "bar"
cd tmp
git submodule add "http://localhost:8000/bar"
'';
};
commands = ''
npins init --bare
npins add git http://localhost:8000/foo --branch main
npins add --name foo2 git http://localhost:8000/foo --branch main --submodules
# Both have the same revision and no URL
eq "$(jq -r .pins.foo.version npins/sources.json)" "null"
eq "$(jq -r .pins.foo2.version npins/sources.json)" "null"
eq "$(jq -r .pins.foo.revision npins/sources.json)" "$(resolveGitCommit ${repositories."foo"})"
eq "$(jq -r .pins.foo2.revision npins/sources.json)" "$(resolveGitCommit ${repositories."foo"})"
eq "$(jq -r .pins.foo.url npins/sources.json)" "null"
eq "$(jq -r .pins.foo2.url npins/sources.json)" "null"
nix-instantiate --eval npins -A foo.outPath
nix-instantiate --eval npins -A foo2.outPath
'';
};
githubSubmodule = mkGithubTest rec {
name = "github-submodule";
apiTarballs = [ "cbbbea814edccc7bf23af61bd620647ed7c0a436" ];
repositories."owner/bar" = gitRepo;
repositories."owner/foo" = mkGitRepo {
name = "repo-with-submodules";
extraCommands = ''
git submodule init
# In order to be able to add the submodule, we need to fake host it
cd ..
${pkgs.python3}/bin/python -m http.server 8000 &
timeout 30 sh -c 'set -e; until ${pkgs.netcat}/bin/nc -z 127.0.0.1 8000; do sleep 1; done' || exit 1
mkdir owner
ln -s ${repositories."owner/bar"} "owner/bar.git"
cd tmp
git submodule add "http://localhost:8000/owner/bar.git"
'';
};
commands = ''
npins init --bare
npins add github owner foo --branch main
npins add --name foo2 github owner foo --branch main --submodules
# Both have the same revision, but only foo has an URL
eq "$(jq -r .pins.foo.version npins/sources.json)" "null"
eq "$(jq -r .pins.foo2.version npins/sources.json)" "null"
eq "$(jq -r .pins.foo.revision npins/sources.json)" "$(resolveGitCommit ${repositories."owner/foo"})"
eq "$(jq -r .pins.foo2.revision npins/sources.json)" "$(resolveGitCommit ${repositories."owner/foo"})"
eq "$(jq -r .pins.foo.url npins/sources.json)" "http://localhost:8000/owner/foo/archive/$(resolveGitCommit ${repositories."owner/foo"}).tar.gz"
eq "$(jq -r .pins.foo2.url npins/sources.json)" "null"
'';
};
nixPrefetch =
let
mkPrefetchGitTest =
name: npinsArgs:
mkGitTest {
name = "nix-prefetch-git-${name}";
inherit gitRepo;
commands = ''
npins init --bare
npins add git http://localhost:8000/foo ${npinsArgs}
before=$(ls /build)
nix-instantiate --eval npins -A foo.outPath.outPath
after=$(ls /build)
cat npins/sources.json
[[ "$before" = "$after" ]]
'';
};
in
{
branch = mkPrefetchGitTest "branch" "--branch test-branch";
tag = mkPrefetchGitTest "tag" "--at v0.2";
hash = mkPrefetchGitTest "hash" "--branch test-branch --at 9ba40d123c3e6adb35c99ad04fd9de6bcdc1c9d5";
importGitFromFlake =
let
flake = pkgs.writeText "flake.nix" ''
{
inputs.foo.url = "git+http://localhost:8000/foo?ref=test-branch";
inputs.foo.flake = false;
outputs = _: {};
}
'';
in
mkGitTest {
name = "from-flake-import-git";
inherit gitRepo;
commands = ''
cp ${flake} flake.nix
nix --extra-experimental-features flakes --extra-experimental-features nix-command flake update
npins init --bare
npins import-flake
git ls-remote http://localhost:8000/foo
nix-instantiate --eval npins -A foo.outPath
cat npins/sources.json
V=$(jq -r .pins.foo.branch npins/sources.json)
[[ "$V" = "test-branch" ]]
'';
};
};
}