unmake 0.0.27

a makefile linter
Documentation
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
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
//! warnings generates makefile recommendations.

use crate::ast;
use crate::inspect;

use std::collections::HashSet;
use std::fmt;
use std::sync;

/// WD_COMMANDS collects common commands for modifying a shell's current working directory.
pub static WD_COMMANDS: sync::LazyLock<Vec<&str>> =
    sync::LazyLock::new(|| vec!["cd", "pushd", "popd"]);

/// LOWER_CONVENTIONAL_PHONY_TARGETS_PATTERN matches common artifactless target names,
/// specified in lowercase.
pub static LOWER_CONVENTIONAL_PHONY_TARGETS_PATTERN: sync::LazyLock<regex::Regex> =
    sync::LazyLock::new(|| {
        regex::Regex::new("^all|lint|install|uninstall|publish|(test.*)|(clean.*)$").unwrap()
    });

/// COMMAND_PREFIX_PATTERN matches commands with prefixes.
pub static COMMAND_PREFIX_PATTERN: sync::LazyLock<regex::Regex> =
    sync::LazyLock::new(|| regex::Regex::new(r"^(?P<prefix>[-+@]+)").unwrap());

/// BLANK_COMMAND_PATTERN matches empty commands.
///
/// Empty commands are distinct from a rule without commands.
pub static BLANK_COMMAND_PATTERN: sync::LazyLock<regex::Regex> =
    sync::LazyLock::new(|| regex::Regex::new(r"^[-+@]+\s*$").unwrap());

/// WHITESPACE_LEADING_COMMAND_PATTERN matches commands that start with whitespace.
pub static WHITESPACE_LEADING_COMMAND_PATTERN: sync::LazyLock<regex::Regex> =
    sync::LazyLock::new(|| regex::Regex::new(r"^[-+@]*\s+").unwrap());

/// RESERVED_TARGET_PATTERN matches targets reserved either for POSIX use, or for extensions.
pub static RESERVED_TARGET_PATTERN: sync::LazyLock<regex::Regex> =
    sync::LazyLock::new(|| regex::Regex::new(r"^.[A-Z]+").unwrap());

/// CHECKS collects the set of available high level makefile scans.
pub static CHECKS: sync::LazyLock<Vec<Check>> = sync::LazyLock::new(|| {
    vec![
        check_ub_late_posix_marker,
        check_ub_ambiguous_include,
        check_ub_makeflags_assignment,
        check_ub_shell_macro,
        check_silent_include,
        check_strict_posix,
        check_implementation_defined_target,
        check_makefile_precedence,
        check_curdir_assignment_nop,
        check_wd_nop,
        check_wait_nop,
        check_phony_nop,
        check_redundant_notparallel_wait,
        check_redundant_silent_at,
        check_redundant_ignore_minus,
        check_global_ignore,
        check_simplify_at,
        check_simplify_minus,
        check_command_comment,
        check_phony_target,
        check_repeated_command_prefix,
        check_blank_command,
        check_whitespace_leading_command,
        check_no_rules,
        check_reserved_target,
        check_rule_all,
        check_final_eol,
        check_portable_assignment,
    ]
});

/// WARNING_DEFAULT_PATH assumes stdin.
static WARNING_DEFAULT_PATH: &str = "-";

/// Check implements a linter scan.
pub type Check = fn(&inspect::Metadata, &[ast::Gem]) -> Vec<Warning>;

/// Warning models a linter recommendation.
#[derive(Debug, PartialEq)]
pub struct Warning {
    /// path denotes an offending file path.
    pub path: String,

    /// line denotes the location of the relevant code section to enhance.
    pub line: usize,

    /// message denotes a brief description of the recommendation.
    pub message: String,
}

impl Warning {
    /// new constructs a Warning.
    pub fn new() -> Warning {
        Warning {
            path: WARNING_DEFAULT_PATH.to_string(),
            line: 0,
            message: String::new(),
        }
    }
}

impl Default for Warning {
    /// default generates a basic Warning.
    fn default() -> Self {
        Warning::new()
    }
}

impl fmt::Display for Warning {
    /// fmt renders a Warning for console use.
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "warning: {}:", self.path)?;

        if self.line > 0 {
            write!(f, "{}:", self.line)?;
        }

        write!(f, " {}", self.message)
    }
}

/// mock_md constructs simulated Metadata for a hypothetical path.
///
/// Assume a lintable POSIX makefile.
///
/// Certain fields are given dummy values.
pub fn mock_md(pth: &str) -> inspect::Metadata {
    inspect::Metadata {
        path: pth.to_string(),
        filename: pth.to_string(),
        is_makefile: true,
        build_system: String::new(),
        is_machine_generated: false,
        is_include_file: false,
        is_empty: true,
        lines: 0,
        has_final_eol: false,
    }
}

pub static UB_LATE_POSIX_MARKER: &str = "UB_LATE_POSIX_MARKER: the special rule \".POSIX:\" should be the first uncommented instruction in POSIX makefiles, or else absent from *.include.mk files";

/// check_ub_late_posix_marker reports UB_LATE_POSIX_MARKER violations.
fn check_ub_late_posix_marker(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .enumerate()
        .filter(|(i, e)| match &e.n {
            ast::Ore::Ru { ps: _, ts, cs: _ } => {
                (metadata.is_include_file || i > &0) && ts == &vec![".POSIX"]
            }
            _ => false,
        })
        .map(|(_, e)| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: UB_LATE_POSIX_MARKER.to_string(),
        })
        .collect()
}

#[test]
fn test_late_posix_marker() {
    assert!(
        lint(&mock_md("-"), "PKG=curl\n.POSIX:\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_LATE_POSIX_MARKER.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "# strict posix\n.POSIX:\nPKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_LATE_POSIX_MARKER.to_string())
    );

    assert!(
        !lint(&mock_md("-"), ".POSIX:\nPKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_LATE_POSIX_MARKER.to_string())
    );

    let mut md_include = mock_md("provision.include.mk");
    md_include.is_include_file = true;

    assert!(
        lint(&md_include, ".POSIX:\nPKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_LATE_POSIX_MARKER.to_string())
    );

    assert!(
        !lint(&md_include, "PKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_LATE_POSIX_MARKER.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".POSIX:\ninclude =foo.mk\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_AMBIGUOUS_INCLUDE.to_string())
    );
}

pub static UB_AMBIGUOUS_INCLUDE: &str =
    "UB_AMBIGUOUS_INCLUDE: unclear whether include line or macro definition";

/// check_ub_ambiguous_include reports UB_AMBIGUOUS_INCLUDE violations.
fn check_ub_ambiguous_include(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::In { s: _, ps } => ps.iter().any(|e2| e2.starts_with('=')),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: UB_AMBIGUOUS_INCLUDE.to_string(),
        })
        .collect()
}

#[test]
fn test_ub_ambiguous_include() {
    assert!(
        lint(&mock_md("-"), ".POSIX:\ninclude = foo.mk\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_AMBIGUOUS_INCLUDE.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".POSIX:\ninclude =foo.mk\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_AMBIGUOUS_INCLUDE.to_string())
    );

    assert!(
        !lint(&mock_md("-"), ".POSIX:\ninclude=foo.mk\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_AMBIGUOUS_INCLUDE.to_string())
    );
}

pub static UB_MAKEFLAGS_ASSIGNMENT: &str = "UB_MAKEFLAGS_MACRO: do not modify MAKEFLAGS macro";

/// check_ub_makeflags_assignment reports UB_MAKEFLAGS_ASSIGNMENT violations.
fn check_ub_makeflags_assignment(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Mc { n, o: _, v: _ } => n == "MAKEFLAGS",
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: UB_MAKEFLAGS_ASSIGNMENT.to_string(),
        })
        .collect()
}

#[test]
fn test_ub_makeflags_assignment() {
    assert!(
        lint(&mock_md("-"), ".POSIX:\nMAKEFLAGS ?= -j\nMAKEFLAGS = -j\nMAKEFLAGS ::= -j\nMAKEFLAGS :::= -j\nMAKEFLAGS += -j\nMAKEFLAGS != echo \"-j\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_MAKEFLAGS_ASSIGNMENT.to_string()));

    assert!(
        !lint(&mock_md("-"), ".POSIX:\nPKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_MAKEFLAGS_ASSIGNMENT.to_string())
    );
}

pub static UB_SHELL_MACRO: &str = "UB_SHELL_MACRO: do not use or modify SHELL macro";

/// check_ub_shell_macro reports UB_SHELL_MACRO violations.
fn check_ub_shell_macro(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Mc { n, o: _, v: _ } => n == "SHELL",
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: UB_SHELL_MACRO.to_string(),
        })
        .collect()
}

#[test]
fn test_ub_shell_macro() {
    assert!(lint(
        &mock_md("-"),
        ".POSIX:\nSHELL ?= sh\nSHELL = sh\nSHELL ::= sh\nSHELL :::= sh\nSHELL += sh\nSHELL != sh\n"
    )
    .unwrap()
    .into_iter()
    .map(|e| e.message)
    .collect::<Vec<String>>()
    .contains(&UB_SHELL_MACRO.to_string()));

    assert!(
        !lint(&mock_md("-"), ".POSIX:\nPKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&UB_SHELL_MACRO.to_string())
    );
}

pub static SILENT_INCLUDE: &str = "SILENT_INCLUDE: dashed includes may obfuscate systemic errors";

/// check_silent_include reports SILENT_INCLUDE violations.
fn check_silent_include(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::In { s, ps: _ } => *s,
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: SILENT_INCLUDE.to_string(),
        })
        .collect()
}

#[test]
fn test_silent_include() {
    assert!(
        lint(&mock_md("-"), "-include = foo.mk\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&SILENT_INCLUDE.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "include=foo.mk\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&SILENT_INCLUDE.to_string())
    );
}

pub static MAKEFILE_PRECEDENCE: &str =
    "MAKEFILE_PRECEDENCE: lowercase Makefile to makefile for launch speed";

/// check_makefile_precedence reports MAKEFILE_PRECEDENCE violations.
fn check_makefile_precedence(metadata: &inspect::Metadata, _: &[ast::Gem]) -> Vec<Warning> {
    if metadata.filename == "Makefile" {
        return vec![Warning {
            path: metadata.path.to_string(),
            line: 0,
            message: MAKEFILE_PRECEDENCE.to_string(),
        }];
    }

    Vec::new()
}

#[test]
pub fn test_makefile_precedence() {
    assert!(
        lint(&mock_md("Makefile"), ".POSIX:\nPKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&MAKEFILE_PRECEDENCE.to_string())
    );

    assert!(
        !lint(&mock_md("makefile"), ".POSIX:\nPKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&MAKEFILE_PRECEDENCE.to_string())
    );

    assert!(
        !lint(&mock_md("foo.mk"), ".POSIX:\nPKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&MAKEFILE_PRECEDENCE.to_string())
    );

    assert!(
        !lint(&mock_md("foo.Makefile"), ".POSIX:\nPKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&MAKEFILE_PRECEDENCE.to_string())
    );

    assert!(
        !lint(&mock_md("foo.makefile"), ".POSIX:\nPKG=curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&MAKEFILE_PRECEDENCE.to_string())
    );
}

pub static CURDIR_ASSIGNMENT_NOP: &str =
    "CURDIR_ASSIGNMENT_NOP: CURDIR assignment does not change the make working directory";

/// check_curdir_assignment_nop reports CURDIR_ASSIGNMENT_NOP violations.
fn check_curdir_assignment_nop(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Mc { n, o: _, v: _ } => n == "CURDIR",
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: CURDIR_ASSIGNMENT_NOP.to_string(),
        })
        .collect()
}

#[test]
pub fn test_curdir_assignment_nop() {
    assert!(
        lint(&mock_md("-"), ".POSIX:\nCURDIR = build\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&CURDIR_ASSIGNMENT_NOP.to_string())
    );

    assert!(
        !lint(&mock_md("-"), ".POSIX:\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&CURDIR_ASSIGNMENT_NOP.to_string())
    );
}

pub static WD_NOP: &str =
    "WD_NOP: change directory commands may not persist across successive commands or rules";

/// check_wd_nop reports WD_NOP violations.
fn check_wd_nop(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts: _, cs } => cs
                .iter()
                .any(|e2| WD_COMMANDS.contains(&e2.split_whitespace().next().unwrap_or(""))),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: WD_NOP.to_string(),
        })
        .collect()
}

#[test]
pub fn test_wd_nop() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: all\nall:\n\tcd foo\n\n\tpushd bar\n\tpopd\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&WD_NOP.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: all\nall:\n\ttar -C foo czvf foo.tgz .\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&WD_NOP.to_string())
    );
}

pub static WAIT_NOP: &str = "WAIT_NOP: .WAIT as a target has no effect";

/// check_makefile_precedence reports WAIT_NOP violations.
fn check_wait_nop(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts, cs: _ } => ts.contains(&".WAIT".to_string()),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: WAIT_NOP.to_string(),
        })
        .collect()
}

#[test]
pub fn test_wait_nop() {
    assert!(
        lint(&mock_md("-"), ".POSIX:\n.WAIT:\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&WAIT_NOP.to_string())
    );

    assert!(
        !lint(&mock_md("-"), ".POSIX:\n.PHONY: test test-1 test-2\ntest: test-1 .WAIT test-2\ntest-1:\n\techo \"Hello World!\"\ntest-2:\n\techo \"Hi World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&WAIT_NOP.to_string()));
}

pub static PHONY_NOP: &str = "PHONY_NOP: empty .PHONY has no effect";

/// check_phony_nop reports PHONY_NOP violations.
fn check_phony_nop(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps, ts, cs: _ } => ts.contains(&".PHONY".to_string()) && ps.is_empty(),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: PHONY_NOP.to_string(),
        })
        .collect()
}

#[test]
pub fn test_phony_nop() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY:\nfoo: foo.c\n\tgcc -o foo foo.c\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_NOP.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: test\ntest:\n\techo \"Hello World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_NOP.to_string())
    );
}

pub static REDUNDANT_NOTPARALLEL_WAIT: &str =
    "REDUNDANT_NOTPARALLEL_WAIT: .NOTPARALLEL with .WAIT is redundant and superfluous";

/// check_redundant_notparallel_wait reports REDUNDANT_NOTPARALLEL_WAIT violations.
fn check_redundant_notparallel_wait(
    metadata: &inspect::Metadata,
    gems: &[ast::Gem],
) -> Vec<Warning> {
    let has_notparallel: bool = gems.iter().any(|e| match &e.n {
        ast::Ore::Ru { ps: _, ts, cs: _ } => ts.contains(&".NOTPARALLEL".to_string()),
        _ => false,
    });

    if !has_notparallel {
        return Vec::new();
    }

    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps, ts: _, cs: _ } => ps.contains(&".WAIT".to_string()),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: REDUNDANT_NOTPARALLEL_WAIT.to_string(),
        })
        .collect()
}

#[test]
pub fn test_redundant_nonparallel_wait() {
    assert!(
        lint(&mock_md("-"), ".POSIX:\n.NOTPARALLEL:\n.PHONY: test test-1 test-2\ntest: test-1 .WAIT test-2\ntest-1:\n\techo \"Hello World!\"\ntest-2:\n\techo \"Hi World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&REDUNDANT_NOTPARALLEL_WAIT.to_string()));

    assert!(
        !lint(&mock_md("-"), ".POSIX:\n.PHONY: test test-1 test-2\ntest: test-1 .WAIT test-2\ntest-1:\n\techo \"Hello World!\"\ntest-2:\n\techo \"Hi World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&REDUNDANT_NOTPARALLEL_WAIT.to_string()));

    assert!(
        !lint(&mock_md("-"), ".POSIX:\n.NOTPARALLEL:\n.PHONY: test test-1 test-2\ntest: test-1 test-2\ntest-1:\n\techo \"Hello World!\"\ntest-2:\n\techo \"Hi World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&REDUNDANT_NOTPARALLEL_WAIT.to_string()));
}

pub static REDUNDANT_SILENT_AT: &str =
    "REDUNDANT_SILENT_AT: .SILENT with @ is redundant and superfluous";

/// check_redundant_silent_at reports REDUNDANT_SILENT_AT violations.
fn check_redundant_silent_at(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    let mut has_global_silence: bool = false;
    let mut marked_silent_targets: HashSet<&String> = HashSet::new();

    for gem in gems {
        if let ast::Ore::Ru { ps, ts, cs: _ } = &gem.n
            && ts.contains(&".SILENT".to_string())
        {
            if ps.is_empty() {
                has_global_silence = true;
            }

            for p in ps {
                marked_silent_targets.insert(p);
            }
        }
    }

    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts, cs } => {
                cs.iter().any(|e2| e2.starts_with('@'))
                    && (has_global_silence
                        || ts.iter().any(|e2| marked_silent_targets.contains(e2)))
            }
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: REDUNDANT_SILENT_AT.to_string(),
        })
        .collect()
}

#[test]
pub fn test_redundant_silent_at() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: lint\n.SILENT:\nlint:\n\t@unmake .\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REDUNDANT_SILENT_AT.to_string())
    );

    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: lint\n.SILENT: lint\nlint:\n\t@unmake .\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REDUNDANT_SILENT_AT.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: lint\n.SILENT: lint\nlint:\n\tunmake .\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REDUNDANT_SILENT_AT.to_string())
    );

    assert!(
        !lint(&mock_md("-"), ".POSIX:\n.PHONY: lint\nlint:\n\t@unmake .\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&REDUNDANT_SILENT_AT.to_string())
    );
}

pub static REDUNDANT_IGNORE_MINUS: &str =
    "REDUNDANT_IGNORE_MINUS: .IGNORE with - is redundant and superfluous";

/// check_redundant_ignore_minus reports REDUNDANT_IGNORE_MINUS violations.
fn check_redundant_ignore_minus(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    let mut marked_ignored_targets: HashSet<&String> = HashSet::new();

    for gem in gems {
        if let ast::Ore::Ru { ps, ts, cs: _ } = &gem.n
            && ts.contains(&".IGNORE".to_string())
        {
            for p in ps {
                marked_ignored_targets.insert(p);
            }
        }
    }

    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts, cs } => {
                cs.iter().any(|e2| e2.starts_with('-'))
                    && ts.iter().any(|e2| marked_ignored_targets.contains(e2))
            }
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: REDUNDANT_IGNORE_MINUS.to_string(),
        })
        .collect()
}

#[test]
pub fn test_redundant_ignore_minus() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: clean\n.IGNORE: clean\nclean:\n\t-rm -rf bin\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REDUNDANT_IGNORE_MINUS.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: clean\nclean:\n\t-rm -rf bin\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REDUNDANT_IGNORE_MINUS.to_string())
    );
}

pub static GLOBAL_IGNORE: &str =
    "GLOBAL_IGNORE: .IGNORE without prerequisites may corrupt artifacts";

/// check_global_ignore reports GLOBAL_IGNORE violations.
fn check_global_ignore(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps, ts, cs: _ } => ts.contains(&".IGNORE".to_string()) && ps.is_empty(),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: GLOBAL_IGNORE.to_string(),
        })
        .collect()
}

#[test]
pub fn test_global_ignore() {
    assert!(
        lint(&mock_md("-"), ".POSIX:\n.IGNORE:\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&GLOBAL_IGNORE.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: clean\n.IGNORE: clean\nclean:\n\trm -rf bin"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&GLOBAL_IGNORE.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: clean\nclean:\n\t-rm -rf bin"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&GLOBAL_IGNORE.to_string())
    );
}

pub static SIMPLIFY_AT: &str =
    "SIMPLIFY_AT: replace individual at (@) signs with .SILENT target declaration(s)";

/// check_simplify_at reports SIMPLIFY_AT violations.
fn check_simplify_at(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    let mut has_global_silence: bool = false;
    let mut marked_silent_targets: HashSet<&String> = HashSet::new();

    for gem in gems {
        if let ast::Ore::Ru { ps, ts, cs: _ } = &gem.n
            && ts.contains(&".SILENT".to_string())
        {
            if ps.is_empty() {
                has_global_silence = true;
            }

            for p in ps {
                marked_silent_targets.insert(p);
            }
        }
    }

    if has_global_silence {
        return Vec::new();
    }

    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts, cs } => {
                cs.len() > 1
                    && cs.iter().all(|e2| e2.starts_with('@'))
                    && !ts.iter().any(|e2| marked_silent_targets.contains(e2))
            }
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: SIMPLIFY_AT.to_string(),
        })
        .collect()
}

#[test]
pub fn test_simplify_at() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\nwelcome:\n\t@echo foo\n\t@echo bar\n\t@echo baz\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&SIMPLIFY_AT.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\nwelcome:\n\t@echo foo\n\t@echo bar\n\techo baz\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&SIMPLIFY_AT.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.SILENT: welcome\nwelcome:\n\techo foo\n\techo bar\n\techo baz\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&SIMPLIFY_AT.to_string())
    );
}

pub static SIMPLIFY_MINUS: &str =
    "SIMPLIFY_MINUS: replace individual hyphen-minus (-) signs with .IGNORE target declaration(s)";

/// check_simplify_minus reports SIMPLIFY_MINUS violations.
fn check_simplify_minus(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    let mut has_global_ignore: bool = false;
    let mut marked_ignored_targets: HashSet<&String> = HashSet::new();

    for gem in gems {
        if let ast::Ore::Ru { ps, ts, cs: _ } = &gem.n
            && ts.contains(&".IGNORE".to_string())
        {
            if ps.is_empty() {
                has_global_ignore = true;
            }

            for p in ps {
                marked_ignored_targets.insert(p);
            }
        }
    }

    if has_global_ignore {
        return Vec::new();
    }

    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts, cs } => {
                cs.len() > 1
                    && cs.iter().all(|e2| e2.starts_with('-'))
                    && !ts.iter().any(|e2| marked_ignored_targets.contains(e2))
            }
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: SIMPLIFY_MINUS.to_string(),
        })
        .collect()
}

#[test]
pub fn test_simplify_minus() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\nwelcome:\n\t-echo foo\n\t-echo bar\n\t-echo baz\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&SIMPLIFY_MINUS.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\nwelcome:\n\t-echo foo\n\t-echo bar\n\techo baz\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&SIMPLIFY_MINUS.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.IGNORE: welcome\nwelcome:\n\techo foo\n\techo bar\n\techo baz\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&SIMPLIFY_MINUS.to_string())
    );
}

pub static STRICT_POSIX: &str = "STRICT_POSIX: lead makefiles with the \".POSIX:\" compliance marker, or else rename include files like *.include.mk";

/// check_strict_posix reports STRICT_POSIX violations.
fn check_strict_posix(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    if metadata.is_include_file {
        return Vec::new();
    }

    let has_strict_posix: bool = gems.iter().any(|e| match &e.n {
        ast::Ore::Ru { ps: _, ts, cs: _ } => ts.contains(&".POSIX".to_string()),
        _ => false,
    });

    if !has_strict_posix {
        return vec![Warning {
            path: metadata.path.to_string(),
            line: 1,
            message: STRICT_POSIX.to_string(),
        }];
    }

    Vec::new()
}

#[test]
pub fn test_strict_posix() {
    let md_stdin: inspect::Metadata = mock_md("-");

    assert!(
        lint(&md_stdin, "PKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&STRICT_POSIX.to_string())
    );

    assert!(
        !lint(&md_stdin, ".POSIX:\nPKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&STRICT_POSIX.to_string())
    );

    let mut md_sys: inspect::Metadata = mock_md("sys.mk");
    md_sys.is_include_file = true;

    assert!(
        !lint(&md_sys, "PKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&STRICT_POSIX.to_string())
    );

    let mut md_include_mk: inspect::Metadata = mock_md("foo.include.mk");
    md_include_mk.is_include_file = true;

    assert!(
        !lint(&md_include_mk, "PKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&STRICT_POSIX.to_string())
    );
}

pub static IMPLEMENTATTION_DEFINED_TARGET: &str = "IMPLEMENTATTION_DEFINED_TARGET: non-portable percent (%) or double-quote (\") in target or prerequisite";

/// check_implementation_defined_target reports IMPLEMENTATTION_DEFINED_TARGET violations.
fn check_implementation_defined_target(
    metadata: &inspect::Metadata,
    gems: &[ast::Gem],
) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps, ts, cs: _ } => {
                ps.iter().any(|e2| e2.contains('%') || e2.contains('\"'))
                    || ts.iter().any(|e2| e2.contains('%') || e2.contains('\"'))
            }
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: IMPLEMENTATTION_DEFINED_TARGET.to_string(),
        })
        .collect()
}

#[test]
pub fn test_implementation_defined_target() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: all\nall: foo%\nfoo%: foo.c\n\tgcc -o foo% foo.c\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&IMPLEMENTATTION_DEFINED_TARGET.to_string())
    );

    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: all\nall: \"foo\"\n\"foo\": foo.c\n\tgcc -o \"foo\" foo.c\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&IMPLEMENTATTION_DEFINED_TARGET.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: all\nall: foo\nfoo: foo.c\n\tgcc -o foo foo.c\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&IMPLEMENTATTION_DEFINED_TARGET.to_string())
    );
}

pub static COMMAND_COMMENT: &str =
    "COMMAND_COMMENT: comment embedded inside commands will forward to the shell interpreter";

/// check_command_comment reports COMMAND_COMMENT violations.
fn check_command_comment(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts: _, cs } => cs.iter().any(|e2| e2.contains('#')),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: COMMAND_COMMENT.to_string(),
        })
        .collect()
}

#[test]
pub fn test_command_comment() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\nfoo: foo.c\n\t#build foo\n\tgcc -o foo foo.c\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&COMMAND_COMMENT.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".POSIX:\nfoo: foo.c\n\t@#gcc -o foo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&COMMAND_COMMENT.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".POSIX:\nfoo: foo.c\n\t-#gcc -o foo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&COMMAND_COMMENT.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".POSIX:\nfoo: foo.c\n\t+#gcc -o foo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&COMMAND_COMMENT.to_string())
    );

    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\nfoo: foo.c\n\tgcc \\\n#output file \\\n\t\t-o foo \\\n\t\tfoo.c\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&COMMAND_COMMENT.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\nfoo: foo.c\n#build foo\n\tgcc -o foo foo.c\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&COMMAND_COMMENT.to_string())
    );
}

pub static REPEATED_COMMAND_PREFIX: &str =
    "REPEATED_COMMAND_PREFIX: redundant prefixes are superfluous";

/// check_repeated_command_prefix reports REPEATED_COMMAND_PREFIX violations.
fn check_repeated_command_prefix(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts: _, cs } => cs.iter().any(|e2| {
                if BLANK_COMMAND_PATTERN.is_match(e2) {
                    return false;
                }

                let prefix: &str = COMMAND_PREFIX_PATTERN
                    .captures(e2)
                    .and_then(|e3| e3.name("prefix"))
                    .map(|e3| e3.as_str())
                    .unwrap_or("");

                prefix.matches('@').count() > 1
                    || prefix.matches('+').count() > 1
                    || prefix.matches('-').count() > 1
            }),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: REPEATED_COMMAND_PREFIX.to_string(),
        })
        .collect()
}

#[test]
pub fn test_repeated_command_prefix() {
    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: test\ntest:\n\t@@echo \"Hello World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REPEATED_COMMAND_PREFIX.to_string())
    );

    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: test\ntest:\n\t--echo \"Hello World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REPEATED_COMMAND_PREFIX.to_string())
    );

    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: test\ntest:\n\t@-@echo \"Hello World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REPEATED_COMMAND_PREFIX.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: test\ntest:\n\t@+-echo \"Hello World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&REPEATED_COMMAND_PREFIX.to_string())
    );
}

pub static BLANK_COMMAND: &str = "BLANK_COMMAND: indeterminate behavior when empty commands are sent to assorted shell interpreters";

/// check_blank_command reports BLANK_COMMAND violations.
fn check_blank_command(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts: _, cs } => {
                cs.iter().any(|e2| BLANK_COMMAND_PATTERN.is_match(e2))
            }
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: BLANK_COMMAND.to_string(),
        })
        .collect()
}

#[test]
pub fn test_blank_command() {
    assert!(
        lint(&mock_md("-"), ".POSIX:\n.PHONY: test\ntest:\n\t@\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&BLANK_COMMAND.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".POSIX:\n.PHONY: test\ntest:\n\t-\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&BLANK_COMMAND.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".POSIX:\n.PHONY: test\ntest:\n\t+\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&BLANK_COMMAND.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".POSIX:\n.PHONY: test\ntest:\n\t@+- \n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&BLANK_COMMAND.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: test\ntest:\n\techo \"Hello World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&BLANK_COMMAND.to_string())
    );
}

pub static WHITESPACE_LEADING_COMMAND: &str =
    "WHITESPACE_LEADING_COMMAND: questionable whitespace detected at the start of a command";

/// check_whitespace_leading_command reports WHITESPACE_LEADING_COMMAND violations.
fn check_whitespace_leading_command(
    metadata: &inspect::Metadata,
    gems: &[ast::Gem],
) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts: _, cs } => cs
                .iter()
                .any(|e2| WHITESPACE_LEADING_COMMAND_PATTERN.is_match(e2)),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: WHITESPACE_LEADING_COMMAND.to_string(),
        })
        .collect()
}

#[test]
pub fn test_whitespace_leading_command() {
    assert!(
        lint(&mock_md("-"), "foo:\n\t gcc -o foo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&WHITESPACE_LEADING_COMMAND.to_string())
    );

    assert!(
        lint(&mock_md("-"), "foo:\n\t\tgcc -o foo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&WHITESPACE_LEADING_COMMAND.to_string())
    );

    assert!(
        lint(&mock_md("-"), "foo:\n\t@+- gcc -o foo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&WHITESPACE_LEADING_COMMAND.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "foo:\n\tgcc -o foo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&WHITESPACE_LEADING_COMMAND.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "foo:\n\t@+-gcc -o foo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&WHITESPACE_LEADING_COMMAND.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "foo:\n\tgcc \\\n\t\t-o \\\n\t\tfoo foo.c\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&WHITESPACE_LEADING_COMMAND.to_string())
    );
}

pub static MISSING_FINAL_EOL: &str =
    "MISSING_FINAL_EOL: UNIX text files may process poorly without a final LF";

/// check_final_eol reports MISSING_FINAL_EOL violations.
fn check_final_eol(metadata: &inspect::Metadata, _: &[ast::Gem]) -> Vec<Warning> {
    if !metadata.is_empty && !metadata.has_final_eol {
        return vec![Warning {
            path: metadata.path.to_string(),
            line: metadata.lines,
            message: MISSING_FINAL_EOL.to_string(),
        }];
    }

    Vec::new()
}

#[test]
pub fn test_final_eol() {
    let mf_pkg: &str = ".POSIX:\nPKG = curl";
    let mut md_pkg: inspect::Metadata = mock_md("-");
    md_pkg.is_empty = &mf_pkg.len() == &0;
    md_pkg.has_final_eol = &mf_pkg.chars().last().unwrap_or(' ') == &'\n';

    assert!(
        lint(&md_pkg, &mf_pkg)
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&MISSING_FINAL_EOL.to_string())
    );

    let mf_pkg_final_eol: &str = ".POSIX:\nPKG = curl\n";
    let mut md_pkg_final_eol: inspect::Metadata = mock_md("-");
    md_pkg_final_eol.is_empty = &mf_pkg_final_eol.len() == &0;
    md_pkg_final_eol.has_final_eol = &mf_pkg_final_eol.chars().last().unwrap_or(' ') == &'\n';

    assert!(
        !lint(&md_pkg_final_eol, &mf_pkg_final_eol)
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&MISSING_FINAL_EOL.to_string())
    );

    let mf_empty: &str = "";
    let mut md_empty: inspect::Metadata = mock_md("-");
    md_empty.is_empty = &mf_empty.len() == &0;
    md_empty.has_final_eol = &mf_empty.chars().last().unwrap_or(' ') == &'\n';

    assert!(
        !lint(&md_empty, &mf_empty)
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&MISSING_FINAL_EOL.to_string())
    );
}

pub static PHONY_TARGET: &str = "PHONY_TARGET: mark common artifactless rules as .PHONY";

/// check_phony_target reports PHONY_TARGET violations.
fn check_phony_target(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    let mut marked_phony_targets: HashSet<&String> = HashSet::new();

    for gem in gems {
        if let ast::Ore::Ru { ps, ts, cs: _ } = &gem.n
            && ts.contains(&".PHONY".to_string())
        {
            for p in ps {
                marked_phony_targets.insert(p);
            }
        }
    }

    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts, cs: _ }
                if !ts.iter().any(|e2| ast::SPECIAL_TARGETS.contains(e2))
                    && !marked_phony_targets.iter().any(|e2| e2.starts_with('$'))
                    && ts.iter().any(|e2| !marked_phony_targets.contains(e2)) =>
            {
                ts.iter().any(|e2| {
                    LOWER_CONVENTIONAL_PHONY_TARGETS_PATTERN.is_match(e2.to_lowercase().as_str())
                })
            }
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: PHONY_TARGET.to_string(),
        })
        .collect()
}

#[test]
pub fn test_phony_target() {
    assert!(
        lint(&mock_md("-"), ".POSIX:\nall:\n\techo \"Hello World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&PHONY_TARGET.to_string())
    );

    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\nlint:;\ninstall:;\nuninstall:;\npublish:;\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_TARGET.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: all\nall:\n\techo \"Hello World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_TARGET.to_string())
    );

    assert!(
        lint(
            &mock_md("-"),
            ".POSIX:\ntest: test-1 test-2\ntest-1:\n\techo \"Hello World!\"\ntest-2:\n\techo \"Hi World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_TARGET.to_string()));

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: test test-1 test-2\ntest: test-1 test-2\ntest-1:\n\techo \"Hello World!\"\ntest-2:\n\techo \"Hi World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_TARGET.to_string()));

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: test\ntest: test-1 test-2\n.PHONY: test-1\ntest-1:\n\techo \"Hello World!\"\n.PHONY: test-2\ntest-2:\n\techo \"Hi World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_TARGET.to_string()));

    assert!(
        lint(&mock_md("-"), ".POSIX:\nclean:\n\t-rm -rf bin\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&PHONY_TARGET.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: clean\nclean:\n\t-rm -rf bin\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_TARGET.to_string())
    );

    assert!(
        !lint(&mock_md("-"), ".POSIX:\nport: cross-compile archive\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&PHONY_TARGET.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            ".POSIX:\n.PHONY: port\nport: cross-compile archive\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&PHONY_TARGET.to_string())
    );

    assert!(
        !lint(&mock_md("-"), ".POSIX:\nempty:;\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&PHONY_TARGET.to_string())
    );

    // Ensure that absent targets do not trigger a PHONY_TARGET warning,
    // unlike some makefile linters in the past.
    assert!(
        !lint(&mock_md("-"), ".POSIX:\nPKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&PHONY_TARGET.to_string())
    );

    // Ensure that .PHONY declarations featuring variable prerequisites
    // do not trigger a PHONY_TARGET warning.
    assert!(
        !lint(&mock_md("-"), "ALLTARGETS!=ls -a\n.PHONY: $(ALLTARGETS)\nall: welcome\nwelcome:\n\techo \"Hello World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&PHONY_TARGET.to_string())
    );
}

pub static NO_RULES: &str =
    "NO_RULES: declare at least one non-special rule, or else rename to *.include.mk";

/// check_no_rules reports NO_RULES violations.
fn check_no_rules(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    if metadata.is_include_file {
        return Vec::new();
    }

    let has_nonspecial_rule: bool = !gems
        .iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ps: _, ts, cs: _ } => {
                ts.iter().any(|e2| !ast::SPECIAL_TARGETS.contains(e2))
            }
            _ => false,
        })
        .collect::<Vec<&ast::Gem>>()
        .is_empty();

    if !has_nonspecial_rule {
        return vec![Warning {
            path: metadata.path.to_string(),
            line: 0,
            message: NO_RULES.to_string(),
        }];
    }

    Vec::new()
}

#[test]
pub fn test_no_rules() {
    let md_stdin: inspect::Metadata = mock_md("-");

    assert!(
        lint(&md_stdin, ".POSIX:\nPKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NO_RULES.to_string())
    );

    let mut md_include: inspect::Metadata = mock_md("foo.include.mk");
    md_include.is_include_file = true;

    assert!(
        !lint(&md_include, "PKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NO_RULES.to_string())
    );

    assert!(
        !lint(&md_stdin, "all:\n\techo \"Hello World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NO_RULES.to_string())
    );
}

pub static RULE_ALL: &str = "RULE_ALL: makefiles conventionally name the first non-special, default rule \"all\", excepting certain *.include.mk files";

/// check_rule_all reports RULE_ALL violations.
fn check_rule_all(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    if metadata.is_include_file {
        return Vec::new();
    }

    let mut first_nonspecial_target: &str = "";
    let mut found_nonspecial_target: bool = false;

    for gem in gems {
        match &gem.n {
            ast::Ore::Ru { ps: _, ts, cs: _ }
                if !ts.is_empty() && ts.iter().all(|e2| !ast::SPECIAL_TARGETS.contains(e2)) =>
            {
                found_nonspecial_target = true;
                first_nonspecial_target = ts.first().unwrap();
                break;
            }
            _ => (),
        }
    }

    if found_nonspecial_target && first_nonspecial_target != "all" {
        return vec![Warning {
            path: metadata.path.to_string(),
            line: 0,
            message: RULE_ALL.to_string(),
        }];
    }

    Vec::new()
}

#[test]
pub fn test_rule_all() {
    assert!(
        lint(&mock_md("-"), "build:\n\techo \"Hello World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&RULE_ALL.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "all:\n\techo \"Hello World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&RULE_ALL.to_string())
    );

    assert!(
        !lint(
            &mock_md("-"),
            "all: build\nbuild:\n\techo \"Hello World!\"\n"
        )
        .unwrap()
        .into_iter()
        .map(|e| e.message)
        .collect::<Vec<String>>()
        .contains(&RULE_ALL.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "PKG = curl\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&RULE_ALL.to_string())
    );

    let mut md_include = mock_md("foo.include.mk");
    md_include.is_include_file = true;

    assert!(
        !lint(&md_include, "build:\n\techo \"Hello World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&RULE_ALL.to_string())
    );
}

pub static RESERVED_TARGET: &str =
    "RESERVED_TARGET: non-special targets named like \".(A-Z)\"... are reserved";

/// check_reserved_target reports RESERVED_TARGET violations.
fn check_reserved_target(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Ru { ts, ps, cs: _ } => [&ts[..], &ps[..]].concat().iter().any(|e2| {
                RESERVED_TARGET_PATTERN.is_match(e2) && !ast::SPECIAL_TARGETS.contains(e2)
            }),
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: RESERVED_TARGET.to_string(),
        })
        .collect()
}

#[test]
fn test_reserved_target() {
    assert!(lint(&mock_md("-"), ".POSIXX:\n").is_err());

    assert!(
        lint(&mock_md("-"), ".PHONYY: all\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&RESERVED_TARGET.to_string())
    );

    assert!(
        lint(&mock_md("-"), ".TEST:\n\techo \"Hello World!\"\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&RESERVED_TARGET.to_string())
    );

    assert!(
        lint(&mock_md("-"), "test: .TEST-UNIT .TEST-INTEGRATION\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&RESERVED_TARGET.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "test:\n\t./foo\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&RESERVED_TARGET.to_string())
    );
}

pub static NONPORTABLE_ASSIGNMENT: &str =
    "NONPORTABLE_ASSIGNMENT: single colon equals (:=) assignment is nonportable";

/// check_portable_assignment reports NONPORTABLE_ASSIGNMENT violations.
fn check_portable_assignment(metadata: &inspect::Metadata, gems: &[ast::Gem]) -> Vec<Warning> {
    gems.iter()
        .filter(|e| match &e.n {
            ast::Ore::Mc { n: _, o, v: _ } => o == ":=",
            _ => false,
        })
        .map(|e| Warning {
            path: metadata.path.to_string(),
            line: e.l,
            message: NONPORTABLE_ASSIGNMENT.to_string(),
        })
        .collect()
}

#[test]
fn test_nonportable_assignment() {
    assert!(
        lint(&mock_md("-"), "CLIENT:=curl --version\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NONPORTABLE_ASSIGNMENT.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "CLIENT::=curl --version\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NONPORTABLE_ASSIGNMENT.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "CLIENT:::=curl --version\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NONPORTABLE_ASSIGNMENT.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "CLIENT?=curl --version\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NONPORTABLE_ASSIGNMENT.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "CLIENT!=curl --version\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NONPORTABLE_ASSIGNMENT.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "CLIENT+=curl --version\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NONPORTABLE_ASSIGNMENT.to_string())
    );

    assert!(
        !lint(&mock_md("-"), "CLIENT=curl --version\n")
            .unwrap()
            .into_iter()
            .map(|e| e.message)
            .collect::<Vec<String>>()
            .contains(&NONPORTABLE_ASSIGNMENT.to_string())
    );
}

/// lint generates warnings for a makefile.
pub fn lint(metadata: &inspect::Metadata, makefile: &str) -> Result<Vec<Warning>, String> {
    let gems: Vec<ast::Gem> = ast::parse_posix(&metadata.path, makefile)?.ns;
    let mut warnings: Vec<Warning> = Vec::new();

    for check in CHECKS.iter() {
        warnings.extend(check(metadata, &gems));
    }

    Ok(warnings)
}

#[test]
pub fn test_line_numbers() {
    let md: inspect::Metadata = mock_md("-");

    assert_eq!(
        check_ub_late_posix_marker(
            &md,
            &ast::parse_posix(md.path.as_str(), "PKG=curl\n.POSIX:\n")
                .unwrap()
                .ns
        ),
        vec![Warning {
            path: WARNING_DEFAULT_PATH.to_string(),
            line: 2,
            message: UB_LATE_POSIX_MARKER.to_string(),
        },]
    );
}