summaryrefslogtreecommitdiff
path: root/regress/infra-unittests/subst.sh
blob: 31b2afb1a5d0de7f46ab918d1666c10aabb3bcc7 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
#! /bin/sh
# $NetBSD: subst.sh,v 1.39 2020/05/12 04:35:55 rillig Exp $
#
# Tests for mk/subst.mk.
#

set -eu

. './test.subr'

test_case_set_up() {
	wrkdir="$tmpdir/wrkdir"
	mkdir "$wrkdir"

	create_file 'prepare-subst.mk' <<-EOF
		# The tools that are used by subst.mk
		AWK=		awk
		CHMOD=		chmod
		CMP=		cmp
		DIFF=		diff
		ECHO=		echo
		MKDIR=		mkdir -p
		MV=		mv
		RM=		rm
		RMDIR=		rmdir
		SED=		sed
		TEST=		test
		TOUCH=		touch
		TOUCH_FLAGS=	# none
		TR=		tr
		TRUE=		true

		# Commands that are specific to pkgsrc
		RUN=		@set -e;
		STEP_MSG=	echo '=>'
		DO_NADA=	: do-nada
		INFO_MSG=	echo 'info:'
		WARNING_MSG=	echo 'warning:'
		FAIL_MSG=	sh $pkgsrcdir/mk/scripts/fail echo 'fail:'

		WRKDIR=		$tmpdir/wrkdir
		WRKSRC=		.
	EOF
}

test_case_tear_down() {
	# Clean up the .subst_*_done cookie files.
	rm -r "$wrkdir"
}


if test_case_begin 'single file'; then

	# A single file is patched successfully.

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	subst-single.txt
		SUBST_SED.class=	-e 's,before,after,'

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	create_file_lines 'subst-single.txt' \
		'before'

	run_bmake 'testcase.mk' \
		1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in subst-single.txt'
	assert_that 'subst-single.txt' --file-is-lines \
		'after'

	test_case_end
fi


if test_case_begin 'several individual files'; then

	# Several individual files are patched successfully.

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	first second third
		SUBST_SED.class=	-e 's,file,example,'

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	create_file_lines 'first'	'the first file'
	create_file_lines 'second'	'the second file'
	create_file_lines 'third'	'the third file'

	run_bmake 'testcase.mk' > "$tmpdir/output"

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in first second third'
	assert_that 'first' --file-is-lines 'the first example'
	assert_that 'second' --file-is-lines 'the second example'
	assert_that 'third' --file-is-lines 'the third example'

	test_case_end
fi


if test_case_begin 'several files by pattern'; then

	# Several files are patched successfully.
	# The filenames are given by a pattern.

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	pattern-*
		SUBST_SED.class=	-e 's,file,example,'

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	create_file_lines 'pattern-first'	'the first file'
	create_file_lines 'pattern-second'	'the second file'
	create_file_lines 'pattern-third'	'the third file'

	run_bmake 'testcase.mk' \
		1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=1

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in pattern-*'
	assert_that 'pattern-first' --file-is-lines 'the first example'
	assert_that 'pattern-second' --file-is-lines 'the second example'
	assert_that 'pattern-third' --file-is-lines 'the third example'

	test_case_end
fi


if test_case_begin 'pattern with 1 noop'; then

	# Several files are given via a pattern.
	# Most of the files are patched, but one stays the same.
	# Since it is easier to give a too broad pattern like *.py
	# than to exclude a few files from such a pattern,
	# only an info is logged.
	# This is not an error.

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	pattern-*
		SUBST_SED.class=	-e 's,file,example,'

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	create_file_lines 'pattern-first'	'the first file'
	create_file_lines 'pattern-second'	'the second is already an example'
	create_file_lines 'pattern-third'	'the third file'

	run_bmake 'testcase.mk' > "$tmpdir/output"

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in pattern-*' \
		'info: [subst.mk:class] Nothing changed in "pattern-second".'
	assert_that 'pattern-first' --file-is-lines 'the first example'
	assert_that 'pattern-second' --file-is-lines 'the second is already an example'
	assert_that 'pattern-third' --file-is-lines 'the third example'

	test_case_end
fi


if test_case_begin 'single file noop, noop_ok=yes'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	single
		SUBST_SED.class=	-e 's,file,example,'
		SUBST_NOOP_OK.class=	yes

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	create_file_lines 'single'	'already an example'

	run_bmake 'testcase.mk' > "$tmpdir/output" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in single' \
		'info: [subst.mk:class] Nothing changed in "single".'
	assert_that 'single' --file-is-lines 'already an example'
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'single file noop, noop_ok=no'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	single
		SUBST_SED.class=	-e 's,file,example,'
		SUBST_NOOP_OK.class=	no

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	create_file_lines 'single'	'already an example'

	run_bmake 'testcase.mk' > "$tmpdir/output" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in single' \
		'warning: [subst.mk:class] Nothing changed in "single".' \
		'fail: [subst.mk:class] The filename pattern "single" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"
	assert_that 'single' --file-is-lines 'already an example'
	assert_that "$exitcode" --equals '1'

	test_case_end
fi


if test_case_begin 'single file nonexistent'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	nonexistent
		SUBST_SED.class=	-e 's,file,example,'
		SUBST_NOOP_OK.class=	no

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	run_bmake 'testcase.mk' > "$tmpdir/output" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in nonexistent' \
		'warning: [subst.mk:class] Ignoring nonexistent file "nonexistent".' \
		'fail: [subst.mk:class] The filename pattern "nonexistent" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"
	assert_that "$exitcode" --equals '1'

	test_case_end
fi


if test_case_begin 'single file nonexistent ok'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	nonexistent
		SUBST_SED.class=	-e 's,file,example,'
		SUBST_NOOP_OK.class=	yes

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	run_bmake 'testcase.mk' > "$tmpdir/output" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in nonexistent' \
		'info: [subst.mk:class] Ignoring nonexistent file "nonexistent".'
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'several patterns, 1 nonexistent'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	*exist* *not-found*
		SUBST_SED.class=	-e 's,file,example,'

		.include "prepare-subst.mk"
		.include "mk/subst.mk"

		all: subst-class
	EOF

	create_file_lines 'exists'	'this file exists'

	run_bmake 'testcase.mk' > "$tmpdir/output" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in *exist* *not-found*' \
		'info: [subst.mk:class] Ignoring nonexistent file "./*not-found*".'
	assert_that 'exists' --file-is-lines 'this example exists'
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'multiple missing files, all are reported at once'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	does not exist
		SUBST_SED.class=	-e 'sahara'

		.include "prepare-subst.mk"
		.include "mk/subst.mk"
	EOF

	run_bmake 'testcase.mk' > "$tmpdir/output" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in does not exist' \
		'info: [subst.mk:class] Ignoring nonexistent file "does".' \
		'info: [subst.mk:class] Ignoring nonexistent file "not".' \
		'info: [subst.mk:class] Ignoring nonexistent file "exist".'
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'multiple no-op files, all are reported at once'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	first second third
		SUBST_SED.class=	-e 's,from,to,'

		.include "prepare-subst.mk"
		.include "mk/subst.mk"
	EOF
	create_file_lines 'first'	'text'
	create_file_lines 'second'	'second'
	create_file_lines 'third'	'third'

	run_bmake 'testcase.mk' > "$tmpdir/output" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in first second third' \
		'info: [subst.mk:class] Nothing changed in "first".' \
		'info: [subst.mk:class] Nothing changed in "second".' \
		'info: [subst.mk:class] Nothing changed in "third".'
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'late evaluation of SUBST_FILES'; then

	# Ensure that SUBST_FILES is evaluated as late as possible.
	# Evaluating it early breaks cases like pkglocaledir where the
	# list of files is generated by a shell command.
	# See mk/configure/replace-localedir.mk.

	create_file 'testcase.mk' <<EOF
REPLACE_FILES_CMD.class= \
	cd \${WRKSRC} && echo *r*

SUBST_CLASSES+=		class
SUBST_STAGE.class=	pre-configure
SUBST_FILES.class=	first third # \${REPLACE_FILES_CMD.class:sh}
SUBST_SED.class=	-e 's,from,to,'

.include "prepare-subst.mk"
RUN=		@set -e;
WRKSRC=		\${WRKDIR}/package-1.0
.include "mk/subst.mk"

# It is tricky that the dependency must use an internal implementation
# detail, but that's the only way to guarantee the correct ordering.
\${_SUBST_COOKIE.class}: prepare-subst-class
prepare-subst-class:
	\${RUN} \${MKDIR} \${WRKSRC}
	\${RUN} \${ECHO} 'from' > '\${WRKSRC}/first'
	\${RUN} \${ECHO} 'from' > '\${WRKSRC}/second'
	\${RUN} \${ECHO} 'from' > '\${WRKSRC}/third'
EOF

	run_bmake 'testcase.mk' 'subst-class' \
		1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "class" in first third'
	assert_that "$wrkdir/package-1.0/first" --file-is-lines 'to'
	assert_that "$wrkdir/package-1.0/second" --file-is-lines 'from'
	assert_that "$wrkdir/package-1.0/third" --file-is-lines 'to'
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'special characters in filenames'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	*
		SUBST_SED.class=	-e s,before,after,
		SUBST_NOOP_OK.class=	yes

		.include "prepare-subst.mk"
		.include "mk/subst.mk"
	EOF

	create_file_lines ' !"#$%&'\''()*+,-.'	'before'
	create_file_lines '0123456789:;<=>?'	'before'
	create_file_lines '@ABCDEFGHIJKLMNO'	'before'
	create_file_lines 'PQRSTUVWXYZ[\]^_'	'before'
	create_file_lines '`abcdefghijklmno'	'before'
	create_file_lines 'pqrstuvwxyz{|}~'	'before'
	create_file_lines '--no-option'		'before'
	create_file_lines '.hidden'		'before'

	run_bmake 'testcase.mk' 'subst-class' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/stdout" --file-is-lines \
		'=> Substituting "class" in *' \
		'info: [subst.mk:class] Nothing changed in "prepare-subst.mk".'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	assert_that	' !"#$%&'\''()*+,-.'	--file-is-lines 'after'
	assert_that	'0123456789:;<=>?'	--file-is-lines 'after'
	assert_that	'@ABCDEFGHIJKLMNO'	--file-is-lines 'after'
	assert_that	'PQRSTUVWXYZ[\]^_'	--file-is-lines 'after'
	assert_that	'`abcdefghijklmno'	--file-is-lines 'after'
	assert_that	'pqrstuvwxyz{|}~'	--file-is-lines 'after'
	assert_that	'--no-option'		--file-is-lines 'after'
	assert_that	'.hidden'		--file-is-lines 'before'

	test_case_end
fi

if test_case_begin 'brackets in filename patterns'; then

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		class
		SUBST_STAGE.class=	pre-configure
		SUBST_FILES.class=	[*]
		SUBST_SED.class=	-e s,before,after,
		SUBST_NOOP_OK.class=	yes

		.include "prepare-subst.mk"
		.include "mk/subst.mk"
	EOF

	create_file_lines 'any'	'before'
	create_file_lines 'x'	'before'
	create_file_lines '*'	'before'
	create_file_lines '[*]'	'before'

	run_bmake 'testcase.mk' 'subst-class' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/stdout" --file-is-lines \
		'=> Substituting "class" in [*]'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	assert_that 'any'	--file-is-lines 'before'
	assert_that 'x'		--file-is-lines 'before'
	assert_that '*'		--file-is-lines 'after'
	assert_that '[*]'	--file-is-lines 'before'

	test_case_end
fi


if test_case_begin 'duplicate SUBST class'; then

	create_file 'testcase.mk' <<EOF
SUBST_CLASSES+=		one
SUBST_CLASSES+=		two
SUBST_CLASSES+=		one

all:
	@printf 'fail reason: %s\n' \${PKG_FAIL_REASON} 1>&2

.include "prepare-subst.mk"
.include "mk/subst.mk"
EOF

	run_bmake 'testcase.mk' 'all' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/stdout" --file-is-empty
	assert_that "$tmpdir/stderr" --file-is-lines \
		'fail reason: [subst.mk] duplicate SUBST class in: one one two'
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'several SUBST classes'; then

	# It's ok to have several SUBST classes that apply to the same file.
	# The order of execution is not guaranteed though.

	create_file_lines 'file' 'zero one two three four'

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		one
		SUBST_STAGE.one=	pre-configure
		SUBST_FILES.one=	file
		SUBST_SED.one=		-e 's,one,I,'

		SUBST_CLASSES+=		two
		SUBST_STAGE.two=	pre-configure
		SUBST_FILES.two=	file
		SUBST_SED.two=		-e 's,two,II,'

		SUBST_CLASSES+=		three
		SUBST_STAGE.three=	pre-configure
		SUBST_FILES.three=	file
		SUBST_SED.three=	-e 's,three,III,'

		.include "prepare-subst.mk"
		.include "mk/subst.mk"
	EOF

	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	# The order of the above output is not guaranteed.
	LC_ALL=C sort < "$tmpdir/stdout" > "$tmpdir/stdout-sorted"

	assert_that 'file' --file-is-lines 'zero I II III four'
	assert_that "$tmpdir/stdout-sorted" --file-is-lines \
		'=> Substituting "one" in file' \
		'=> Substituting "three" in file' \
		'=> Substituting "two" in file'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'show diff'; then

	create_file_lines 'file' 'one' 'two' 'three'

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		two
		SUBST_STAGE.two=	pre-configure
		SUBST_FILES.two=	file
		SUBST_SED.two=		-e 's,two,II,'
		SUBST_SHOW_DIFF.two=	yes

		.include "prepare-subst.mk"
		.include "mk/subst.mk"
	EOF

	LC_ALL=C \
	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	awk '{ if (/^(---|\+\+\+) /) { print $1 " " $2 " (filtered timestamp)" } else { print $0 } }' \
	< "$tmpdir/stdout" > "$tmpdir/stdout-filtered"

	assert_that 'file' --file-is-lines 'one' 'II' 'three'
	assert_that "$tmpdir/stdout-filtered" --file-is-lines \
		'=> Substituting "two" in file' \
		'--- file (filtered timestamp)' \
		'+++ file.subst.sav (filtered timestamp)' \
		'@@ -1,3 +1,3 @@' \
		' one' \
		'-two' \
		'+II' \
		' three'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'global show diff'; then

	create_file_lines 'file' 'one' 'two' 'three'

	create_file 'testcase.mk' <<-EOF
		SUBST_CLASSES+=		two
		SUBST_STAGE.two=	pre-configure
		SUBST_FILES.two=	file
		SUBST_SED.two=		-e 's,two,II,'
		SUBST_SHOW_DIFF=	yes

		.include "prepare-subst.mk"
		.include "mk/subst.mk"
	EOF

	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	awk '{ if (/^(---|\+\+\+) /) { print $1 " " $2 " (filtered timestamp)" } else { print $0 } }' \
	< "$tmpdir/stdout" > "$tmpdir/stdout-filtered"

	assert_that 'file' --file-is-lines 'one' 'II' 'three'
	assert_that "$tmpdir/stdout-filtered" --file-is-lines \
		'=> Substituting "two" in file' \
		'--- file (filtered timestamp)' \
		'+++ file.subst.sav (filtered timestamp)' \
		'@@ -1,3 +1,3 @@' \
		' one' \
		'-two' \
		'+II' \
		' three'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'SUBST_VARS'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	vars' \
		'SUBST_STAGE.vars=	pre-configure' \
		'SUBST_FILES.vars=	vars.txt' \
		'SUBST_VARS.vars=	PLAIN DQUOT SQUOT DELIM PRINTABLE' \
		'SUBST_VARS.vars+=	UNDEFINED' \
		'' \
		'PLAIN=		plain' \
		'DQUOT=		"double   quoted"' \
		'SQUOT=		'\''single   quoted'\''' \
		'DELIM=		hello,   world' \
		'PRINTABLE=	!"\#$$%&'\''()*+,-./09:;<=>?@AZ[\]^_`az{|}' \
		'#UNDEFINED=	# undefined' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'vars.txt' \
		'@PLAIN@' \
		'@DQUOT@' \
		'@SQUOT@' \
		'@DELIM@' \
		'@PRINTABLE@' \
		'@UNDEFINED@'

	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	# The double quotes and single quotes are kept since the variables
	# are treated as simple string variables, not as lists of shell
	# words. In these string variables, the quotes are part of the value.
	assert_that 'vars.txt' --file-is-lines \
		'plain' \
		'"double   quoted"' \
		"'single   quoted'" \
		'hello,   world' \
		'!"#$%&'\''()*+,-./09:;<=>?@AZ[\]^_`az{|}' \
		''
	assert_that "$tmpdir/stdout" --file-is-lines \
		'=> Substituting "vars" in vars.txt'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	test_case_end
fi

if test_case_begin 'SUBST_VARS with surrounding whitespace'; then

	# Ensure that leading and trailing whitespace is preserved
	# in the variable values.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	vars' \
		'SUBST_STAGE.vars=	pre-configure' \
		'SUBST_FILES.vars=	vars.txt' \
		'SUBST_VARS.vars=	SPACE TAB NEWLINE' \
		'' \
		'SPACE=			${:U }between spaces${:U }' \
		'TAB=			${:U	}between tabs${:U	}' \
		'NEWLINE=		${.newline}between newlines${.newline}' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'vars.txt' \
		'@SPACE@' \
		'@TAB@' \
		'@NEWLINE@'

	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	space=' '
	tab='	'
	newline='
'
	assert_that 'vars.txt' --file-is-lines \
		"$space"'between spaces'"$space" \
		"$tab"'between tabs'"$tab" \
		"$newline"'between newlines'"$newline"
	assert_that "$tmpdir/stdout" --file-is-lines \
		'=> Substituting "vars" in vars.txt'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'SUBST_VARS with backslashes'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	bs' \
		'SUBST_STAGE.bs=	pre-configure' \
		'SUBST_FILES.bs=	backslash.txt' \
		'SUBST_VARS.bs=		BACKSLASHES' \
		'' \
		'BACKSLASHES=	\" \, \\, \" \'\'' \0\000 \x40 \089 \a \$$' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'backslash.txt' '@BACKSLASHES@'

	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	assert_that 'backslash.txt' --file-is-lines \
		'\" \, \\, \" \'\'' \0\000 \x40 \089 \a \$'
	assert_that "$tmpdir/stdout" --file-is-lines \
		'=> Substituting "bs" in backslash.txt'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'SUBST_VARS for variables with regex characters'; then

	# Ensure that special regex characters like dots and parentheses
	# may appear in variable names and are properly escaped.

	# Variable names containing a dollar are not supported.
	# Bmake behaves very surprisingly when a $ is expanded inside a :C
	# modifier. Nobody needs this feature anyway, it was just an
	# experiment to see whether this would be theoretically possible.

	# Variable names ending with a backslash are not supported.
	# The backslash may only occur in the middle of the variable name.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	vars' \
		'SUBST_STAGE.vars=	pre-configure' \
		'SUBST_FILES.vars=	vars.txt' \
		'SUBST_VARS.vars=	VAR...... VAR.abcde' \
		'SUBST_VARS.vars+=	VAR.() VAR.<> VAR.[]' \
		'SUBST_VARS.vars+=	VAR.$$x VAR.^ VAR.\x' \
		'' \
		'VAR......=	dots' \
		'VAR.abcde=	letters' \
		'VAR.()=	parentheses' \
		'VAR.<>=	angle brackets' \
		'VAR.[]=	square brackets' \
		'VAR.$$x=	dollar' \
		'VAR.^=		circumflex' \
		'VAR.\x=	backslash' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'vars.txt' \
		'@VAR......@' \
		'@VAR.abcde@' \
		'@VAR.()@' \
		'@VAR.<>@' \
		'@VAR.[]@' \
		'@VAR.$x@' \
		'@VAR.^@' \
		'@VAR.\x@'

	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	assert_that 'vars.txt' --file-is-lines \
		'dots' \
		'letters' \
		'parentheses' \
		'angle brackets' \
		'square brackets' \
		'@VAR.$x@' \
		'circumflex' \
		'backslash'
	assert_that "$tmpdir/stdout" --file-is-lines \
		'=> Substituting "vars" in vars.txt'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	test_case_end
fi

if test_case_begin 'pattern matches directory'; then

	# When a pattern matches a directory, that directory is silently
	# skipped.
	#
	# In this test case, the pattern also matches a regular file that
	# is actually modified. Therefore the pattern has an effect, and
	# there is no error message.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	dir' \
		'SUBST_STAGE.dir=	pre-configure' \
		'SUBST_FILES.dir=	sub*' \
		'SUBST_VARS.dir=	VAR' \
		'SUBST_NOOP_OK.dir=	no' \
		'' \
		'VAR=			value' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'subdir/subfile' \
		'@VAR@'
	create_file_lines 'subst-file' \
		'@VAR@'

	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	assert_that 'subst-file' --file-is-lines 'value'
	assert_that 'subdir/subfile' --file-is-lines '@VAR@' # unchanged
	assert_that "$tmpdir/stdout" --file-is-lines \
		'=> Substituting "dir" in sub*'
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals '0'

	test_case_end
fi


if test_case_begin 'pattern matches only directory'; then

	# When a pattern matches a directory, that directory is silently
	# skipped.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	dir' \
		'SUBST_STAGE.dir=	pre-configure' \
		'SUBST_FILES.dir=	sub*' \
		'SUBST_VARS.dir=	VAR' \
		'SUBST_NOOP_OK.dir=	no' \
		'' \
		'VAR=			value' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'subdir/subfile' \
		'@VAR@'

	run_bmake 'testcase.mk' 'pre-configure' \
		1> "$tmpdir/stdout" \
		2> "$tmpdir/stderr" \
	&& exitcode=0 || exitcode=$?

	assert_that 'subdir/subfile' --file-is-lines '@VAR@' # unchanged
	assert_that "$tmpdir/stdout" --file-is-lines \
		'=> Substituting "dir" in sub*' \
		'fail: [subst.mk:dir] The filename pattern "sub*" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"
	assert_that "$tmpdir/stderr" --file-is-empty
	assert_that "$exitcode" --equals 1

	test_case_end
fi


if test_case_begin 'two filename patterns have no effect'; then

	# All patterns of SUBST_FILES should be applied before erroring out,
	# to give a complete picture of the situation.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_STAGE.id=	pre-configure' \
		'SUBST_FILES.id=	file1 file2' \
		'SUBST_VARS.id=		A B' \
		'SUBST_NOOP_OK.id=	no' \
		'A=			a-value' \
		'B=			b-value' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file1'	'nothing to replace'
	create_file_lines 'file2'	'nothing to replace'

	run_bmake 'testcase.mk' 'pre-configure' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file1 file2' \
		'warning: [subst.mk:id] Nothing changed in "file1".' \
		'warning: [subst.mk:id] Nothing changed in "file2".' \
		'fail: [subst.mk:id] The filename patterns "file1 file2" have no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"

	test_case_end
fi


if test_case_begin 'empty SUBST_FILES'; then

	# An empty SUBST_FILES section is ok.
	# It may have been produced by a shell command like find(1).

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_STAGE.id=	pre-configure' \
		'SUBST_FILES.id=	# none' \
		'SUBST_SED.id=		-e s,from,to,' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'all:' \
		'	@printf "%s\n" ${PKG_FAIL_REASON:Uok}' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'

	run_bmake 'testcase.mk' 'pre-configure' 'all' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in ' \
		'ok'

	test_case_end
fi


if test_case_begin 'empty SUBST_SED'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_STAGE.id=	pre-configure' \
		'SUBST_FILES.id=	file' \
		'SUBST_SED.id=		# none' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'all:' \
		'	@printf "%s\n" ${PKG_FAIL_REASON:Uok}' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'

	run_bmake 'testcase.mk' 'pre-configure' 'all' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file' \
		'warning: [subst.mk:id] Ignoring nonexistent file "file".' \
		'fail: [subst.mk:id] The filename pattern "file" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"

	test_case_end
fi


if test_case_begin 'typo in SUBST_CLASSES'; then

	# Look closely. The SUBST_CLASSES line contains a typo.
	# subst.mk does not catch this, but pkglint does.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES=+	id' \
		'SUBST_STAGE.id=	pre-configure' \
		'SUBST_FILES.id=	file' \
		'SUBST_SED.id=		# none' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'all:' \
		'	@printf "%s\n" ${PKG_FAIL_REASON:Uok}' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'

	run_bmake 'testcase.mk' 'pre-configure' 'all' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file' \
		'warning: [subst.mk:id] Ignoring nonexistent file "file".' \
		'fail: [subst.mk:id] The filename pattern "file" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"

	test_case_end
fi


if test_case_begin 'executable bit is preserved'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_STAGE.id=	pre-configure' \
		'SUBST_FILES.id=	cmd data' \
		'SUBST_VARS.id=		VAR' \
		'VAR=			replaced' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'cmd' \
		'@VAR@'
	create_file_lines 'data' \
		'@VAR@'
	chmod +x 'cmd'

	run_bmake 'testcase.mk' 'pre-configure' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in cmd data'
	assert_that 'cmd' --file-is-lines 'replaced'
	assert_that 'data' --file-is-lines 'replaced'
	[ -x 'cmd' ] \
	|| assert_fail 'cmd must still be executable\n'
	[ -x 'data' ] \
	&& assert_fail 'data must not be executable\n'

	test_case_end
fi


if test_case_begin 'unreadable file'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_STAGE.id=	pre-configure' \
		'SUBST_FILES.id=	unreadable-file' \
		'SUBST_SED.id=		-e s,before,after,' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'unreadable-file' \
		'before'
	chmod 0000 'unreadable-file'

	run_bmake 'testcase.mk' 'pre-configure' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in unreadable-file' \
		'sh: cannot open unreadable-file: permission denied' \
		'sh: cannot open unreadable-file: permission denied' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"

	test_case_end
fi


if test_case_begin 'identity substitution implementation'; then

	assert_identity() {
		_ai_expected="$1"; shift
		awk -f "$pkgsrcdir/mk/scripts/subst-identity.awk" -- "$@" \
		&& _ai_actual='yes' || _ai_actual='no'

		[ "$_ai_actual" = "$_ai_expected" ] \
		|| assert_fail 'expected "%s", got "%s" for %s\n' "$_ai_expected" "$_ai_actual" "$*"
	}

	# If there is no SUBST_SED at all, this is not the situation
	# that is targeted by this test for identity substitution.
	assert_identity 'no'	# no substitutions at all

	# Even though this is an identity substitution, it is missing
	# the -e option and thus does not follow the usual format.
	# Therefore it is considered just a normal substitution.
	assert_identity 'no'	's,from,from,'

	# The following are typical identity substitutions.
	# It does not matter whether the g modifier is there or not.
	# Unknown modifiers are not allowed though.
	assert_identity 'yes'	-e 's,from,from,'
	assert_identity 'yes'	-e 's;from;from;'
	assert_identity 'yes'	-e 's,from,from,g'
	assert_identity 'no'	-e 's,from,from,gunknown'

	# The identity substitution may include characters other than
	# A-Za-z0-9, but no characters that have a special meaning in
	# basic regular expressions.
	assert_identity 'yes'	-e 's,/dev/audio,/dev/audio,'
	assert_identity 'yes'	-e 's!/dev/audio!/dev/audio!'

	# There may be several identity substitutions in the same
	# SUBST_SED.  As long as all these substitutions are identity
	# substitutions, they may be skipped.  As soon as there is one
	# other substitution, the whole SUBST_SED is treated as usual.
	assert_identity 'yes'	-e 's;from;from;' -e 's!second!second!'
	assert_identity 'no'	-e 's,changing,x,' -e 's,id,id,'
	assert_identity 'no'	-e 's,id,id,' -e 's,changing,x,'

	# A demonstration of all ASCII characters that may appear in an
	# identity substitution.
	#
	# The # and $ are excluded since they are interpreted specially
	# in Makefiles and would thus be confusing to the human reader.
	#
	# The characters *.?[\]^ have a special meaning in the pattern of the
	# substitution.
	# The & has a special meaning in the replacement of the
	# substitution.
	specials='!"%'\''()+,-/:;<=>@_`{|}~'
	assert_identity 'yes'	-e "sX${specials}X${specials}X"

	# Regular expression meta-characters may be escaped using a
	# backslash or be enclosed in square brackets.
	assert_identity 'yes'	-e 's,library\.so,library.so,g'
	assert_identity 'yes'	-e 's,library[.]so,library.so,g'
	assert_identity 'yes'	-e 's,[*],*,'
	assert_identity 'yes'	-e 's,[$],$,'

	# When this happens, it is probably a mistake.
	assert_identity	'no'	-e 's,,,'

	# Backslashes are not considered identity substitutions since
	# there might be tricky corner cases.
	assert_identity	'no'	-e 's,\\,\\,'

	# Back-references are not considered identity substitutions.
	assert_identity 'no'	-e 's,\1,\1,'

	# The & is interpreted specially in the replacement string.
	assert_identity 'no'	-e 's,&&&,&&&,'
	assert_identity 'no'	-e 's,\&,&,'
	assert_identity 'no'	-e 's,[&],&,'
	assert_identity 'no'	-e 's,&,\&,' # this would be an identity

	# References to Makefile variables can be identical too.
	# See converters/help2man for an example.
	assert_identity 'yes'	-e 's,\$(var),$(var),'

	# POSIX 2004 and 2018 both define in section "9.3.8 BRE Expression
	# Anchoring" that a dollar-sign at the end of the string means
	# end-of-string.
	#
	# A dollar-sign followed by \) may or may not be an anchor.
	# In all other cases the dollar is an ordinary character.
	assert_identity 'yes'	-e 's,$(var),$(var),'

	# Since this dollar-sign may or may not be an anchor, treat the
	# whole regular expression as not-an-identity.
	#
	# Since a regular expression with a subexpression must contain
	# \( and \), it does not count as an identity substitution anyway,
	# which makes the implementation simple.
	assert_identity 'no'	-e 's,aaa\(aaa$\),aaa\(aaa$\),'

	assert_identity 'yes'	-e 's,$a,$a,'
	assert_identity 'no'	-e 's,a$,a$,'

	# Same for the circumflex.
	assert_identity 'yes'	-e 's,a^,a^,'
	assert_identity 'no'	-e 's,^a,^a,'
	assert_identity 'no'	-e 's,\(^aaa\)aaa,\(^aaa\)aaa,'

	test_case_end
fi


if test_case_begin 'identity substitution, found in file'; then

	# There are many situations in which a fixed text is replaced
	# with a dynamic value that may or may not be equal to the
	# original text.
	#
	# Typical examples are s|man|${PKGMANDIR}|, s|/usr/pkg|${PREFIX}|,
	# s|/dev/audio|${DEVOSSAUDIO}|.
	#
	# It is not an error if these substitutions result in a no-op,
	# provided that the text is actually found in the file.
	#
	# Alternatives for this special exception would be:
	#
	# 1. Mark these blocks as SUBST_NOOP_OK.  This would not detect
	# outdated definitions.  Since this detection is the main goal
	# of SUBST_NOOP_OK, this is out of the question.
	#
	# 2. Surround these blocks with a condition like ".if ${VAR} !=
	# fixed-value ... .endif".  This pattern only works if VAR is
	# definitely assigned, which often requires a corresponding
	# .include line, leading to code bloat.  It would also mean that
	# variables defined in bsd.pkg.mk could not be used in SUBST
	# blocks like these.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		'SUBST_SED.id=		-e s,before,before,' \
		'SUBST_SED.id+=		-e "s,before,before,"' \
		"SUBST_SED.id+=		-e 's,before,before,'" \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'before'

	run_bmake 'testcase.mk' 'subst-id' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file'

	test_case_end
fi


if test_case_begin 'identity substitution, not found in file'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		'SUBST_SED.id=		s,before,before,' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'other'

	run_bmake 'testcase.mk' 'subst-id' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file' \
		'warning: [subst.mk:id] Nothing changed in "file".' \
		'fail: [subst.mk:id] The filename pattern "file" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"

	test_case_end
fi


if test_case_begin 'identity + effective substitution'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		'SUBST_SED.id=		-e s,no-op,no-op,g' \
		'SUBST_SED.id+=		-e s,from,to,' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'from'

	run_bmake 'testcase.mk' 'subst-id' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file'
	assert_that 'file' --file-is-lines \
		'to'

	test_case_end
fi


if test_case_begin 'identity + no-op substitution'; then

	# If there were only an identity substitution, it wouldn't be an
	# error.  But since there is a regular substitution as well,
	# that substitution is an unexpected no-op and is therefore
	# flagged as an error.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		'SUBST_SED.id=		-e s,no-op,no-op,g' \
		'SUBST_SED.id+=		-e s,from,to,' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'other'

	run_bmake 'testcase.mk' 'subst-id' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file' \
		'warning: [subst.mk:id] Nothing changed in "file".' \
		'fail: [subst.mk:id] The filename pattern "file" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"
	assert_that 'file' --file-is-lines \
		'other'

	test_case_end
fi


if test_case_begin 'SUBST_FILTER_CMD + SUBST_SED in NOOP_OK=no mode'; then

	# If SUBST_FILTER_CMD is defined for a SUBST class, the
	# corresponding SUBST_SED and SUBST_VARS are ignored. To avoid
	# redundant variable definitions, this case fails fast.

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		'SUBST_FILTER_CMD.id=	tr -d "0-9"' \
		'SUBST_SED.id=		-e s,x,x,' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'letters 123 letters'
	create_file_lines "$tmpdir/main.mk" \
		"PKGSRCDIR=	$pkgsrcdir" \
		".PATH:		$mocked_pkgsrcdir" \
		".PATH:		$pkgsrcdir" \
		'.include "testcase.mk"' \
		'' \
		'all: subst-id' \
		'	@printf '\''fail reason: %s\n'\'' ${PKG_FAIL_REASON} 1>&2'

	"$make" -f "$tmpdir/main.mk" 'all' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file' \
		'fail reason: [subst.mk:id] SUBST_FILTER_CMD and SUBST_SED/SUBST_VARS cannot be combined.'
	assert_that 'file' --file-is-lines \
		'letters  letters'

	test_case_end
fi


if test_case_begin 'effective SUBST_FILTER_CMD in NOOP_OK=no mode'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		'SUBST_FILTER_CMD.id=	tr -d "0-9"' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'letters 123 letters'

	run_bmake 'testcase.mk' 'subst-id' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file'
	assert_that 'file' --file-is-lines \
		'letters  letters'

	test_case_end
fi


if test_case_begin 'no-op SUBST_FILTER_CMD in NOOP_OK=no mode'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		'SUBST_FILTER_CMD.id=	tr -d "0-9"' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'only letters'

	run_bmake 'testcase.mk' 'subst-id' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file' \
		'warning: [subst.mk:id] Nothing changed in "file".' \
		'fail: [subst.mk:id] The filename pattern "file" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"

	assert_that 'file' --file-is-lines \
		'only letters'

	test_case_end
fi


if test_case_begin 'backtick in SUBST_SED'; then

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		"SUBST_SED.id=		-e 's,\"\\\\\`,\"\\\\\`,'" \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'from`'

	run_bmake 'testcase.mk' 'subst-id' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file' \
		'info: [subst.mk:id] Nothing changed in "file".'

	test_case_end
fi


if test_case_begin 'multiple sed commands with semicolon'; then

	# From PR pkg/55226:
	#  ===> Configuring for perl-5.30.2
	# sh: 1: Syntax error: Word "/d"p" unexpected (expecting ")")

	create_file_lines 'testcase.mk' \
		'SUBST_CLASSES+=	id' \
		'SUBST_FILES.id=	file' \
		'SUBST_SED.id=		-e "s/755/755/g;/umask(/d"' \
		'SUBST_NOOP_OK.id=	no' \
		'' \
		'.include "prepare-subst.mk"' \
		'.include "mk/subst.mk"'
	create_file_lines 'file' \
		'$mode = 755;'

	run_bmake 'testcase.mk' 'subst-id' 1> "$tmpdir/output" 2>&1 \
	&& exitcode=0 || exitcode=$?

	assert_that "$tmpdir/output" --file-is-lines \
		'=> Substituting "id" in file' \
		'warning: [subst.mk:id] Nothing changed in "file".' \
		'fail: [subst.mk:id] The filename pattern "file" has no effect.' \
		'*** Error code 1' \
		'' \
		'Stop.' \
		"$make: stopped in $PWD"

	test_case_end
fi