-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathoverlays_test.go
More file actions
1545 lines (1266 loc) · 45.1 KB
/
Copy pathoverlays_test.go
File metadata and controls
1545 lines (1266 loc) · 45.1 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
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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package sources_test
import (
"bytes"
"strings"
"testing"
"github.com/microsoft/azure-linux-dev-tools/internal/app/azldev/core/sources"
"github.com/microsoft/azure-linux-dev-tools/internal/global/testctx"
"github.com/microsoft/azure-linux-dev-tools/internal/projectconfig"
"github.com/microsoft/azure-linux-dev-tools/internal/rpm/spec"
"github.com/microsoft/azure-linux-dev-tools/internal/utils/fileperms"
"github.com/microsoft/azure-linux-dev-tools/internal/utils/fileutils"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func applyOverlayToSpecContents(
t *testing.T, overlay projectconfig.ComponentOverlay, specContents string,
) (string, error) {
t.Helper()
spec, err := spec.OpenSpec(strings.NewReader(specContents))
require.NoError(t, err)
err = sources.ApplySpecOverlay(overlay, spec)
if err != nil {
return "", err
}
outputBuffer := new(bytes.Buffer)
require.NoError(t, spec.Serialize(outputBuffer))
return outputBuffer.String(), nil
}
//nolint:maintidx // Test table complexity scales with the number of overlay types.
func TestApplySpecOverlay(t *testing.T) {
testCases := []struct {
name string
overlay projectconfig.ComponentOverlay
spec string
errorExpected bool
result string
}{
{
name: "set existing tag",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySetSpecTag,
Tag: "Name",
Value: "updated",
},
spec: `Name: original
`,
result: `Name: updated
`,
},
{
name: "set tag in non-existent package",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySetSpecTag,
Tag: "Name",
Value: "updated",
PackageName: "i-do-not-exist",
},
spec: `Name: original
`,
errorExpected: true,
},
{
name: "update existing tag",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayUpdateSpecTag,
Tag: "Name",
Value: "updated",
},
spec: `Name: original
`,
result: `Name: updated
`,
},
{
name: "update non-existing tag",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayUpdateSpecTag,
Tag: "Vendor",
Value: "updated",
},
spec: `Name: original
`,
errorExpected: true,
},
{
name: "add tag",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAddSpecTag,
Tag: "BuildRequires",
Value: "added-package",
},
spec: `Name: name
BuildRequires: existing-package
`,
result: `Name: name
BuildRequires: existing-package
BuildRequires: added-package
`,
},
{
name: "add tag to non-existent package",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAddSpecTag,
Tag: "BuildRequires",
Value: "added-package",
PackageName: "i-do-not-exist",
},
spec: `Name: name
`,
errorExpected: true,
},
{
name: "insert tag after same family",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayInsertSpecTag,
Tag: "Source9999",
Value: "macros.azl.macros",
},
spec: `Name: name
Source0: test.tar.gz
BuildRequires: gcc
`,
result: `Name: name
Source0: test.tar.gz
Source9999: macros.azl.macros
BuildRequires: gcc
`,
},
{
name: "add source avoids occupied preferred number",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayType("internal-source-add"),
Value: "macros.azl.macros",
},
spec: `Name: name
Source9999: upstream.file
BuildRequires: gcc
`,
result: `Name: name
Source9999: upstream.file
Source10000: macros.azl.macros
BuildRequires: gcc
`,
},
{
name: "insert tag to non-existent package",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayInsertSpecTag,
Tag: "Source9999",
Value: "macros.azl.macros",
PackageName: "i-do-not-exist",
},
spec: `Name: name
`,
errorExpected: true,
},
{
name: "remove tag",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRemoveSpecTag,
Tag: "BuildRequires",
Value: "problematic-package",
},
spec: `Name: name
BuildRequires: okay-package
BuildRequires: problematic-package
BuildRequires: another-okay-package
`,
result: `Name: name
BuildRequires: okay-package
BuildRequires: another-okay-package
`,
},
{
name: "remove non-existent tag",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRemoveSpecTag,
Tag: "BuildRequires",
Value: "problematic-package",
},
spec: `Name: name
BuildRequires: okay-package
`,
errorExpected: true,
},
{
name: "prepend lines",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependSpecLines,
SectionName: "%files",
PackageName: "mine",
Lines: []string{"file1", "file2"},
},
spec: `Name: name
%files
some-file
%files -n mine
other-file
%changelog
`,
result: `Name: name
%files
some-file
%files -n mine
file1
file2
other-file
%changelog
`,
},
{
name: "prepend lines to non-existent section",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependSpecLines,
SectionName: "%prep",
Lines: []string{"do-something"},
},
spec: `Name: name
`,
errorExpected: true,
},
{
name: "append lines",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAppendSpecLines,
SectionName: "%description",
Lines: []string{"line1"},
},
spec: `Name: name
%description
some-description
that keeps going
%changelog
`,
result: `Name: name
%description
some-description
that keeps going
line1
%changelog
`,
},
{
name: "append lines to non-existent section",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAppendSpecLines,
SectionName: "%prep",
Lines: []string{"do-something"},
},
spec: `Name: name
`,
errorExpected: true,
},
{
name: "prepend lines to entire spec (no section)",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependSpecLines,
Lines: []string{"# top of file"},
},
spec: `Name: name
%description
text
%changelog
* Mon Jan 01 2024 User <user@example.com> - 1.0-1
- Initial release
`,
result: `# top of file
Name: name
%description
text
%changelog
* Mon Jan 01 2024 User <user@example.com> - 1.0-1
- Initial release
`,
},
{
name: "append lines to entire spec (no section)",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAppendSpecLines,
Lines: []string{"# end of file"},
},
spec: `Name: name
%description
text
%changelog
* Mon Jan 01 2024 User <user@example.com> - 1.0-1
- Initial release
`,
result: `Name: name
%description
text
%changelog
* Mon Jan 01 2024 User <user@example.com> - 1.0-1
- Initial release
# end of file
`,
},
{
name: "search and replace",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInSpec,
SectionName: "%build",
Regex: `--enable-feature\w*\s*`,
Replacement: "",
},
spec: `Name: name
%build
./configure --enable-feature1 --enable-feature2 --enable-other-thing
%changelog
`,
result: `Name: name
%build
./configure --enable-other-thing
%changelog
`,
},
{
name: "search and replace with no matches",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInSpec,
SectionName: "%build",
Regex: `--enable-foo`,
Replacement: "",
},
spec: `Name: name
%build
./configure --enable-baz
%changelog
`,
errorExpected: true,
},
{
name: "search and replace across entire spec (no section)",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInSpec,
Regex: `oldname`,
Replacement: "newname",
},
spec: `Name: oldname
%description
oldname package
%build
./configure --prefix=/opt/oldname
%changelog
`,
result: `Name: newname
%description
newname package
%build
./configure --prefix=/opt/newname
%changelog
`,
},
}
for _, testCase := range testCases {
t.Run(testCase.name, func(t *testing.T) {
updatedContents, err := applyOverlayToSpecContents(t, testCase.overlay, testCase.spec)
if testCase.errorExpected {
require.Error(t, err)
return
}
require.NoError(t, err)
assert.Equal(t, testCase.result, updatedContents)
})
}
}
func TestApplyNonSpecOverlay(t *testing.T) {
testCases := []struct {
name string
overlay projectconfig.ComponentOverlay
existingFile string
existingSource string
errorExpected bool
result string
}{
{
name: "prepend lines to file",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependLinesToFile,
Filename: "test.txt",
Lines: []string{"# Added header", "# Second line"},
},
existingFile: "original content\n",
result: "# Added header\n# Second line\noriginal content\n",
},
{
name: "prepend lines to non-existent file",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependLinesToFile,
Filename: "does-not-exist.txt",
Lines: []string{"# Header"},
},
errorExpected: true,
},
{
name: "prepend to spec file is rejected",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependLinesToFile,
Filename: "test.spec",
Lines: []string{"# Header"},
},
existingFile: "Name: test\n",
errorExpected: true,
},
{
name: "search and replace in file",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInFile,
Filename: "config.txt",
Regex: `DEBUG=false`,
Replacement: "DEBUG=true",
},
existingFile: "# Config\nDEBUG=false\nOTHER=value\n",
result: "# Config\nDEBUG=true\nOTHER=value\n",
},
{
name: "search and replace with regex pattern",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInFile,
Filename: "version.txt",
Regex: `version\s*=\s*\d+\.\d+`,
Replacement: "version = 2.0",
},
existingFile: "version = 1.5\n",
result: "version = 2.0\n",
},
{
name: "search and replace no match",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInFile,
Filename: "test.txt",
Regex: `not-found-pattern`,
Replacement: "replacement",
},
existingFile: "some content\n",
errorExpected: true,
},
{
name: "search and replace on spec file is rejected",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInFile,
Filename: "test.spec",
Regex: `Name:`,
Replacement: "Name:",
},
existingFile: "Name: test\n",
errorExpected: true,
},
{
name: "add file copies source to destination",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAddFile,
Filename: "new-file.txt",
Source: "/source/original.txt",
},
existingSource: "source file content\n",
result: "source file content\n",
},
{
name: "add file with non-existent source",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAddFile,
Filename: "new-file.txt",
Source: "/source/does-not-exist.txt",
},
errorExpected: true,
},
{
name: "add file to spec file is rejected",
overlay: projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAddFile,
Filename: "test.spec",
Source: "/source/original.txt",
},
existingSource: "source content\n",
errorExpected: true,
},
}
for _, testCase := range testCases {
t.Run(testCase.name, func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
// Set up source directory.
sourceDir := "/sources"
require.NoError(t, testFS.MkdirAll(sourceDir, fileperms.PublicDir))
// Create existing file if specified.
if testCase.existingFile != "" {
filePath := sourceDir + "/" + testCase.overlay.Filename
require.NoError(t, fileutils.WriteFile(testFS, filePath, []byte(testCase.existingFile), fileperms.PublicFile))
}
// Create source file for file-add overlays.
if testCase.existingSource != "" {
require.NoError(t, testFS.MkdirAll("/source", fileperms.PublicDir))
require.NoError(t, fileutils.WriteFile(
testFS, testCase.overlay.Source, []byte(testCase.existingSource), fileperms.PublicFile,
))
}
// Apply the overlay.
err := sources.ApplyOverlayToSources(ctx, testFS, testCase.overlay, sourceDir, "")
if testCase.errorExpected {
require.Error(t, err)
return
}
require.NoError(t, err)
// Read and verify the result.
resultPath := sourceDir + "/" + testCase.overlay.Filename
resultContent, err := fileutils.ReadFile(testFS, resultPath)
require.NoError(t, err)
assert.Equal(t, testCase.result, string(resultContent))
})
}
}
func TestApplyDestructiveNonSpecOverlay(t *testing.T) {
const testSourceDir = "/sources"
t.Run("remove file", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
filePath := testSourceDir + "/to-delete.txt"
require.NoError(t, fileutils.WriteFile(testFS, filePath, []byte("content\n"), fileperms.PublicFile))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRemoveFile,
Filename: "to-delete.txt",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.NoError(t, err)
exists, err := fileutils.Exists(testFS, filePath)
require.NoError(t, err)
assert.False(t, exists, "file should have been removed")
})
t.Run("remove non-existent file", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRemoveFile,
Filename: "does-not-exist.txt",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.Error(t, err)
})
t.Run("rename file", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
oldPath := testSourceDir + "/old-name.txt"
newPath := testSourceDir + "/new-name.txt"
fileContent := "file content\n"
require.NoError(t, fileutils.WriteFile(testFS, oldPath, []byte(fileContent), fileperms.PublicFile))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRenameFile,
Filename: "old-name.txt",
Replacement: "new-name.txt",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.NoError(t, err)
// Verify old file no longer exists.
exists, err := fileutils.Exists(testFS, oldPath)
require.NoError(t, err)
assert.False(t, exists, "old file should have been removed")
// Verify new file exists with correct content.
resultContent, err := fileutils.ReadFile(testFS, newPath)
require.NoError(t, err)
assert.Equal(t, fileContent, string(resultContent))
})
t.Run("rename non-existent file", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRenameFile,
Filename: "does-not-exist.txt",
Replacement: "new-name.txt",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.Error(t, err)
})
t.Run("remove spec file is rejected", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
filePath := testSourceDir + "/test.spec"
require.NoError(t, fileutils.WriteFile(testFS, filePath, []byte("Name: test\n"), fileperms.PublicFile))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRemoveFile,
Filename: "test.spec",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.Error(t, err)
})
t.Run("rename spec file is rejected", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
filePath := testSourceDir + "/test.spec"
require.NoError(t, fileutils.WriteFile(testFS, filePath, []byte("Name: test\n"), fileperms.PublicFile))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRenameFile,
Filename: "test.spec",
Replacement: "renamed.spec",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.Error(t, err)
})
}
func TestApplyNonSpecOverlayWithGlob(t *testing.T) {
const testSourceDir = "/sources"
t.Run("glob pattern prepends to multiple files", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
// Create multiple .txt files.
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/file1.txt", []byte("content1\n"), fileperms.PublicFile,
))
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/file2.txt", []byte("content2\n"), fileperms.PublicFile,
))
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/other.md", []byte("not matched\n"), fileperms.PublicFile,
))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependLinesToFile,
Filename: "*.txt",
Lines: []string{"# Header"},
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.NoError(t, err)
// Verify both .txt files were modified.
content1, err := fileutils.ReadFile(testFS, testSourceDir+"/file1.txt")
require.NoError(t, err)
assert.Equal(t, "# Header\ncontent1\n", string(content1))
content2, err := fileutils.ReadFile(testFS, testSourceDir+"/file2.txt")
require.NoError(t, err)
assert.Equal(t, "# Header\ncontent2\n", string(content2))
// Verify .md file was not modified.
contentMd, err := fileutils.ReadFile(testFS, testSourceDir+"/other.md")
require.NoError(t, err)
assert.Equal(t, "not matched\n", string(contentMd))
})
t.Run("globstar pattern matches files in subdirectories", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir+"/subdir", fileperms.PublicDir))
// Create files at different levels.
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/root.conf", []byte("DEBUG=false\n"), fileperms.PublicFile,
))
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/subdir/nested.conf", []byte("DEBUG=false\n"), fileperms.PublicFile,
))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInFile,
Filename: "**/*.conf",
Regex: `DEBUG=false`,
Replacement: "DEBUG=true",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.NoError(t, err)
// Verify both files were modified.
contentRoot, err := fileutils.ReadFile(testFS, testSourceDir+"/root.conf")
require.NoError(t, err)
assert.Equal(t, "DEBUG=true\n", string(contentRoot))
contentNested, err := fileutils.ReadFile(testFS, testSourceDir+"/subdir/nested.conf")
require.NoError(t, err)
assert.Equal(t, "DEBUG=true\n", string(contentNested))
})
t.Run("glob pattern removes multiple files", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
// Create backup files to remove.
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/file1.bak", []byte("backup1\n"), fileperms.PublicFile,
))
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/file2.bak", []byte("backup2\n"), fileperms.PublicFile,
))
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/keep.txt", []byte("keep this\n"), fileperms.PublicFile,
))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRemoveFile,
Filename: "*.bak",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.NoError(t, err)
// Verify .bak files were removed.
exists1, err := fileutils.Exists(testFS, testSourceDir+"/file1.bak")
require.NoError(t, err)
assert.False(t, exists1, "file1.bak should have been removed")
exists2, err := fileutils.Exists(testFS, testSourceDir+"/file2.bak")
require.NoError(t, err)
assert.False(t, exists2, "file2.bak should have been removed")
// Verify .txt file was kept.
existsKeep, err := fileutils.Exists(testFS, testSourceDir+"/keep.txt")
require.NoError(t, err)
assert.True(t, existsKeep, "keep.txt should still exist")
})
t.Run("glob pattern with no matches returns error", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
// Create a file that won't match the pattern.
require.NoError(t, fileutils.WriteFile(testFS, testSourceDir+"/file.txt", []byte("content\n"), fileperms.PublicFile))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependLinesToFile,
Filename: "*.nonexistent",
Lines: []string{"# Header"},
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.Error(t, err)
})
t.Run("single-file overlay type rejects multiple glob matches", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
// Create multiple files that will match the pattern.
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/file1.txt", []byte("content1\n"), fileperms.PublicFile,
))
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/file2.txt", []byte("content2\n"), fileperms.PublicFile,
))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayRenameFile,
Filename: "*.txt",
Replacement: "renamed.txt",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.Error(t, err)
})
t.Run("glob pattern skips spec files and applies to other matches", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
// Create a mix of .spec and non-.spec files that match the pattern.
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/config.cfg", []byte("value=old\n"), fileperms.PublicFile,
))
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/test.spec", []byte("Name: test\n"), fileperms.PublicFile,
))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlaySearchAndReplaceInFile,
Filename: "*",
Regex: `value=old`,
Replacement: "value=new",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.NoError(t, err)
// Verify non-.spec file was modified.
contentCfg, err := fileutils.ReadFile(testFS, testSourceDir+"/config.cfg")
require.NoError(t, err)
assert.Equal(t, "value=new\n", string(contentCfg))
// Verify .spec file was NOT modified (skipped, not processed).
contentSpec, err := fileutils.ReadFile(testFS, testSourceDir+"/test.spec")
require.NoError(t, err)
assert.Equal(t, "Name: test\n", string(contentSpec))
})
t.Run("glob pattern matching only spec files returns error", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
// Create only .spec files.
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/test.spec", []byte("Name: test\n"), fileperms.PublicFile,
))
require.NoError(t, fileutils.WriteFile(
testFS, testSourceDir+"/other.spec", []byte("Name: other\n"), fileperms.PublicFile,
))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayPrependLinesToFile,
Filename: "*.spec",
Lines: []string{"# Header"},
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, "")
require.Error(t, err)
})
}
func TestApplyAddPatchOverlay(t *testing.T) {
const (
testSourceDir = "/sources"
testSpecPath = "/sources/test.spec"
)
t.Run("adds patch with PatchN tag when no patches exist", func(t *testing.T) {
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
specContent := "Name: test\nVersion: 1.0\n"
require.NoError(t, fileutils.WriteFile(testFS, testSpecPath, []byte(specContent), fileperms.PublicFile))
// Create source patch file.
require.NoError(t, testFS.MkdirAll("/patches", fileperms.PublicDir))
require.NoError(t, fileutils.WriteFile(
testFS, "/patches/fix-foo.patch", []byte("patch content\n"), fileperms.PublicFile,
))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAddPatch,
Source: "/patches/fix-foo.patch",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, testSpecPath)
require.NoError(t, err)
// Verify spec was updated with Patch0 tag.
updatedSpec, err := fileutils.ReadFile(testFS, testSpecPath)
require.NoError(t, err)
assert.Contains(t, string(updatedSpec), "Patch0: fix-foo.patch")
// Verify patch file was copied.
patchContent, err := fileutils.ReadFile(testFS, testSourceDir+"/fix-foo.patch")
require.NoError(t, err)
assert.Equal(t, "patch content\n", string(patchContent))
})
t.Run("adds patch with next PatchN number", func(t *testing.T) { //nolint:dupl
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
specContent := "Name: test\nPatch0: existing.patch\nPatch1: other.patch\n"
require.NoError(t, fileutils.WriteFile(testFS, testSpecPath, []byte(specContent), fileperms.PublicFile))
require.NoError(t, testFS.MkdirAll("/patches", fileperms.PublicDir))
require.NoError(t, fileutils.WriteFile(testFS, "/patches/fix-bar.patch", []byte("new patch\n"), fileperms.PublicFile))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAddPatch,
Source: "/patches/fix-bar.patch",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, testSpecPath)
require.NoError(t, err)
updatedSpec, err := fileutils.ReadFile(testFS, testSpecPath)
require.NoError(t, err)
assert.Contains(t, string(updatedSpec), "Patch2: fix-bar.patch")
})
t.Run("adds patch with non-contiguous PatchN numbers", func(t *testing.T) { //nolint:dupl
ctx := testctx.NewCtx()
testFS := ctx.FS()
require.NoError(t, testFS.MkdirAll(testSourceDir, fileperms.PublicDir))
specContent := "Name: test\nPatch0: a.patch\nPatch5: b.patch\n"
require.NoError(t, fileutils.WriteFile(testFS, testSpecPath, []byte(specContent), fileperms.PublicFile))
require.NoError(t, testFS.MkdirAll("/patches", fileperms.PublicDir))
require.NoError(t, fileutils.WriteFile(testFS, "/patches/c.patch", []byte("content\n"), fileperms.PublicFile))
overlay := projectconfig.ComponentOverlay{
Type: projectconfig.ComponentOverlayAddPatch,
Source: "/patches/c.patch",
}
err := sources.ApplyOverlayToSources(ctx, testFS, overlay, testSourceDir, testSpecPath)
require.NoError(t, err)
updatedSpec, err := fileutils.ReadFile(testFS, testSpecPath)