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
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::More;
use File::Copy "cp";
use Cwd;
use Getopt::Std;
my %opt;
getopts('u', \%opt); # -u to run Unix/cloc instead of ../cloc
my @Tests = (
{
'name' => '--exclude-dir 1 (baseline for github issue #82)',
'args' => '--exclude-dir cc ../tests/inputs/dd',
'ref' => '../tests/outputs/exclude_dir_1.yaml',
},
{
'name' => '--exclude-dir 2 (github issue #82)',
'cd' => '../tests/inputs/dd',
'args' => '--exclude-dir cc *',
'ref' => '../tests/outputs/exclude_dir_1.yaml',
},
{
'name' => '--not-match-d',
'cd' => '../tests/inputs/dd',
'args' => '--not-match-d cc *',
'ref' => '../tests/outputs/exclude_dir_1.yaml',
},
{
'name' => '--not-match-d (github issue #114 T1)',
'cd' => '../tests/inputs',
'args' => '--by-file issues/114',
'ref' => '../tests/outputs/issues/114/T1.yaml',
},
{
'name' => '--not-match-d (github issue #114 T2)',
'cd' => '../tests/inputs',
'args' => '--by-file --not-match-d bar issues/114',
'ref' => '../tests/outputs/issues/114/T2.yaml',
},
{
'name' => '--not-match-d (github issue #114 T3)',
'cd' => '../tests/inputs',
'args' => '--by-file --not-match-d bee issues/114',
'ref' => '../tests/outputs/issues/114/T3.yaml',
},
{
'name' => '--not-match-d (github issue #114 T4)',
'cd' => '../tests/inputs',
'args' => '--by-file --not-match-d bar/bee issues/114',
'ref' => '../tests/outputs/issues/114/T4.yaml',
},
{
'name' => '--not-match-d (github issue #114 T5)',
'cd' => '../tests/inputs',
'args' => '--by-file --fullpath --not-match-d bar issues/114',
'ref' => '../tests/outputs/issues/114/T5.yaml',
},
{
'name' => '--not-match-d (github issue #114 T6)',
'cd' => '../tests/inputs',
'args' => '--by-file --fullpath --not-match-d ./bar issues/114',
'ref' => '../tests/outputs/issues/114/T6.yaml',
},
{
'name' => '--not-match-d (github issue #114 T7)',
'cd' => '../tests/inputs',
'args' => '--by-file --fullpath --not-match-d bar/bee issues/114',
'ref' => '../tests/outputs/issues/114/T7.yaml',
},
#{
# 'name' => 'git submodule handling (github issue #131 T1)',
# 'cd' => '../tests/inputs',
# 'args' => 'issues/131',
# 'ref' => '../tests/outputs/issues/131/T1.yaml',
#},
#{
# 'name' => 'git submodule handling (github issue #131 T2)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git issues/131',
# 'ref' => '../tests/outputs/issues/131/T2.yaml',
#},
{
'name' => 'all files (github issue #132 T1)',
'cd' => '../tests/inputs',
'args' => 'issues/132',
'ref' => '../tests/outputs/issues/132/T1.yaml',
},
#{
# 'name' => '--vcs git issues/132 (github issue #132 T2)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git issues/132',
# 'ref' => '../tests/outputs/issues/132/T2.yaml',
#},
#{
# 'name' => '--vcs-git --exclude-dir ignore_dir (github issue #132 T3)',
# 'cd' => '../tests/inputs/issues/132',
# 'args' => '--vcs git --exclude-dir ignore_dir .',
# 'ref' => '../tests/outputs/issues/132/T3.yaml',
#},
#{
# 'name' => '--vcs git --fullpath --not-match-d issues/132/ignore_dir (github issue #132 T4)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --fullpath --not-match-d issues/132/ignore_dir issues/132',
# 'ref' => '../tests/outputs/issues/132/T4.yaml',
#},
#{
# 'name' => '--vcs git --match-f C-Ansi (github issue #132 T5)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --match-f C-Ansi issues/132',
# 'ref' => '../tests/outputs/issues/132/T5.yaml',
#},
#{
# 'name' => '--vcs git --match-f "\.c$" (github issue #132 T6)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --match-f "\.c$" issues/132',
# 'ref' => '../tests/outputs/issues/132/T6.yaml',
#},
#{
# 'name' => '--vcs "find X" (github issue #147)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs "find foo_bar"',
# 'ref' => '../tests/outputs/issues/147/T1.yaml',
#},
{
'name' => '--read-lang-def w/remove_between_general (github issue #166)',
'cd' => '../tests/inputs/issues/166',
'args' => '--read-lang-def X fake.thy',
'ref' => '../tests/outputs/issues/166/fake.thy.yaml',
},
{
'name' => '--read-lang-def w/triple_extension',
'cd' => '../tests/inputs',
'args' => '--read-lang-def triple_lang_def.txt custom.triple.extension.js',
'ref' => '../tests/outputs/custom.triple.extension.js.yaml',
},
{
'name' => 'Forth balanced parentheses #1 (github issue #183)',
'cd' => '../tests/inputs/issues/183',
'args' => 'file.fth',
'ref' => '../tests/outputs/issues/183/file.fth.yaml',
},
{
'name' => 'Forth balanced parentheses #2 (github issue #183)',
'cd' => '../tests/inputs/issues/183',
'args' => 'eval1957.SACunidir.fr',
'ref' => '../tests/outputs/issues/183/eval1957.SACunidir.fr.yaml',
},
{
'name' => 'diff identical files (github issue #280)',
'cd' => '../tests/inputs/issues/280',
'args' => '--diff L R',
'ref' => '../tests/outputs/issues/280/280.yaml',
},
{
'name' => 'diff identical files by file (github issue #280)',
'cd' => '../tests/inputs/issues/280',
'args' => '--by-file --diff L R',
'ref' => '../tests/outputs/issues/280/280_by_file.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 1/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => ' --not-match-d ignore_subdir project',
'ref' => '../tests/outputs/issues/286/1.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 2/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => '--follow-links --not-match-d ignore_subdir project',
'ref' => '../tests/outputs/issues/286/2.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 3/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => ' --not-match-d ignore_subdir --fullpath project',
'ref' => '../tests/outputs/issues/286/3.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 4/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => '--follow-links --not-match-d ignore_subdir --fullpath project',
'ref' => '../tests/outputs/issues/286/4.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 5/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => ' --not-match-d project/ignore_subdir --fullpath project',
'ref' => '../tests/outputs/issues/286/5.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 6/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => '--follow-links --not-match-d project/ignore_subdir --fullpath project',
'ref' => '../tests/outputs/issues/286/6.yaml',
},
{
'name' => '--include-ext m,lua (github issue #296)',
'cd' => '../tests/inputs/issues/296',
'args' => '--include-ext m,lua .',
'ref' => '../tests/outputs/issues/296/results.yaml',
},
{
'name' => '--strip-str-comments (github issue #245)',
'cd' => '../tests/inputs/issues/245',
'args' => '--strip-str-comments .',
'ref' => '../tests/outputs/issues/245/CRS.scala.yaml',
},
{
'name' => 'YAML --by-file output with unusual filename (github issue #312)',
'cd' => '../tests/inputs/issues/312',
'args' => '--by-file .',
'ref' => '../tests/outputs/issues/312/results.yaml',
},
{
'name' => 'custom Smarty definition (github issue #327)',
'cd' => '../tests/inputs/issues/327',
'args' => '--force-lang-def=lang.config example.smarty2',
'ref' => '../tests/outputs/issues/327/results.yaml',
},
{
'name' => 'UTF-8 output file encoding',
'cd' => '../tests/inputs/issues/318',
'args' => '--by-file --file-encoding utf8 R*.cs',
'ref' => '../tests/inputs/issues/318/Rcs.yaml', # results in input dir
},
{
'name' => 'distinguish TeX from VB (github issue #341)',
'cd' => '../tests/inputs/issues/341',
'args' => '.',
'ref' => '../tests/outputs/issues/341/results.yaml',
},
{
'name' => '--strip-str-comments (github issue #350)',
'cd' => '../tests/inputs/issues/350',
'args' => '--strip-str-comments .',
'ref' => '../tests/outputs/issues/350/fs.go.yaml',
},
{
'name' => 'Java comments in strings, issue #365',
'cd' => '../tests/inputs/issues/365',
'args' => 'RSpecTests.java',
'ref' => '../tests/outputs/issues/365/results.yaml',
},
{
'name' => 'Arduino IDE 0xA0 characters',
'cd' => '../tests/inputs/issues/370',
'args' => 'arduino_issue_370.ino',
'ref' => '../tests/outputs/issues/370/results.yaml',
},
{
'name' => 'Python docstrings --docstring-as-code',
'cd' => '../tests/inputs/issues/375',
'args' => '--docstring-as-code docstring.py',
'ref' => '../tests/outputs/issues/375/results.yaml',
},
{
'name' => 'Perl v. Prolog',
'cd' => '../tests/inputs/issues/380',
'args' => 'wrapper.pl',
'ref' => '../tests/outputs/issues/380/wrapper.pl.yaml',
},
{
'name' => 'Java comments and continuation lines issue 381',
'cd' => '../tests/inputs/issues/381',
'args' => 'issue381.java',
'ref' => '../tests/outputs/issues/381/issue381.java.yaml',
},
{
'name' => 'C comments w/ backslashed quote in strings issue 381',
'cd' => '../tests/inputs/issues/381',
'args' => '--strip-str-comments issue381.c',
'ref' => '../tests/outputs/issues/381/issue381.c.yaml',
},
{
'name' => '--exclude-content issue 396',
'cd' => '../tests/inputs',
'args' => '--exclude-content Lambda acpclust.R sample.R utilities.R',
'ref' => '../tests/outputs/issues/396/excl.yaml',
},
{
'name' => '--exclude-content w/--diff issue 396',
'cd' => '../tests/inputs/issues/280',
'args' => '--exclude-content Copyright --diff L R',
'ref' => '../tests/outputs/issues/396/excl_diff.yaml',
},
{
'name' => 'Python with /* in strings issue 405',
'cd' => '../tests/inputs/issues/405',
'args' => 'globs.py',
'ref' => '../tests/outputs/issues/405/globs.py.yaml',
},
{
'name' => '--exclude-dir and --follow-link, #407 1/3',
'cd' => '../tests/inputs/issues/407',
'args' => '--follow-link --exclude-dir Test count_dir',
'ref' => '../tests/outputs/issues/407/results1.yaml',
},
{
'name' => '--exclude-dir and --follow-link, #407 2/3',
'cd' => '../tests/inputs/issues/407',
'args' => '--exclude-dir Test level2',
'ref' => '../tests/outputs/issues/407/results2.yaml',
},
{
'name' => '--exclude-dir and --follow-link, #407 3/3',
'cd' => '../tests/inputs/issues/407',
'args' => '--follow-link --exclude-dir Test level2',
'ref' => '../tests/outputs/issues/407/results3.yaml',
},
{
'name' => 'doubly counted she-bang line, #408',
'cd' => '../tests/inputs/issues/408',
'args' => 'badly_named_ruby.pl',
'ref' => '../tests/outputs/issues/408/badly_named_ruby.yaml',
},
{
'name' => 'case insensitive file ext, #420',
'cd' => '../tests/inputs/issues/420',
'args' => '--ignore-case-ext .',
'ref' => '../tests/outputs/issues/420/results.yaml',
},
{
'name' => 'diff with --exclude-list-file, #433',
'cd' => '../tests/inputs/issues/433',
'args' => '--exclude-list-file excl.txt --by-file --follow-links --diff L R
',
'ref' => '../tests/outputs/issues/433/results.yaml',
},
{
'name' => 'JavaScript comment in string, #454',
'cd' => '../tests/inputs/issues/454',
'args' => '--strip-str-comments createServer.js',
'ref' => '../tests/outputs/issues/454/createServer.js.yaml',
},
{
'name' => 'XML with no extension, #456',
'cd' => '../tests/inputs/issues/456',
'args' => 'XML_no_ext',
'ref' => '../tests/outputs/issues/456/XML_no_ext.yaml',
},
{
'name' => 'XML with unusual extension, #456',
'cd' => '../tests/inputs/issues/456',
'args' => 'XML_weird_ext.profile',
'ref' => '../tests/outputs/issues/456/XML_weird_ext.profile.yaml',
},
{
'name' => 'ignore Algorithm::Diff::sdiff() failures, #463',
'cd' => '../tests/inputs/issues/463',
'args' => '--diff left.C right.C',
'ref' => '../tests/outputs/issues/463/diff.yaml',
},
{
'name' => 'diff list input format 1, #455',
'cd' => '../',
'args' => '--diff-list-file tests/inputs/issues/455/list.txt',
'ref' => '../tests/outputs/issues/455/list.yaml',
},
{
'name' => 'diff list input format 2, #455',
'cd' => '../',
'args' => '--diff-list-file tests/inputs/issues/455/list_align.txt',
'ref' => '../tests/outputs/issues/455/list_align.yaml',
},
{
'name' => 'replace_regex with null, #472',
'cd' => '../tests/inputs/issues/472',
'args' => '--force-lang-def lua_def.txt not_really.lua',
'ref' => '../tests/outputs/issues/472/not_really.lua.yaml',
},
{
'name' => '--exclude-lang --diff 1/3, #476',
'cd' => '../tests/inputs/issues/476',
'args' => '--diff A B',
'ref' => '../tests/outputs/issues/476/all.yaml',
},
{
'name' => '--exclude-lang --diff 2/3, #476',
'cd' => '../tests/inputs/issues/476',
'args' => "--exclude-lang 'Fortran 90' --diff A B",
'ref' => '../tests/outputs/issues/476/no_fortran.yaml',
},
{
'name' => '--exclude-lang --diff 3/3, #476',
'cd' => '../tests/inputs/issues/476',
'args' => "--exclude-lang C++ --diff A B",
'ref' => '../tests/outputs/issues/476/no_cpp.yaml',
},
# Next test, 482, requires an empty directory B. Git
# does not like this so create it at runtime.
{
'name' => '--include-lang --diff, #482',
'cd' => '../tests/inputs/issues/482',
'args' => '--include-lang C --diff A B',
'ref' => '../tests/outputs/issues/482/results.yaml',
},
{
'name' => '--unicode #494',
'cd' => '../tests/inputs/issues/494',
'args' => '--unicode --by-file P*.sql',
'ref' => '../tests/outputs/issues/494/results.yaml',
},
{
'name' => '--diff-list-file #513',
'cd' => '../tests/inputs/issues/513',
'args' => '--diff-list-file diff_list.txt',
'ref' => '../tests/outputs/issues/513/results.yaml',
},
{
'name' => '--list-file BOM #502',
'cd' => '../tests/inputs/issues/502',
'args' => '--list-file FileCounter20200715140433.txt',
'ref' => '../tests/outputs/issues/502/results.yaml',
},
{
'name' => 'Julia with docstring as comment #520 1/2',
'cd' => '../tests/inputs/issues/520',
'args' => 'julia_docstr.jl',
'ref' => '../tests/outputs/issues/520/doc_as_comment.yaml',
},
{
'name' => 'Julia with docstring as comment #520 2/2',
'cd' => '../tests/inputs/issues/520',
'args' => '--docstring-as-code julia_docstr.jl',
'ref' => '../tests/outputs/issues/520/doc_as_code.yaml',
},
{
'name' => 'diff alignment on Windows #521 1/2',
'cd' => '../tests/inputs/issues/521',
'args' => '--diff "Test 188" ../521/Test188New',
'ref' => '../tests/outputs/issues/521/uniq.yaml',
},
{
'name' => 'diff alignment on Windows #521 2/2',
'cd' => '../tests/inputs/issues/521',
'args' => '--skip-uniqueness --diff "Test 188" ../521/Test188New',
'ref' => '../tests/outputs/issues/521/skip_uniq.yaml',
},
{
'name' => '--summary-cutoff (f:1) #528 1/3',
'cd' => '../tests/inputs/issues/528',
'args' => '--summary-cutoff f:1 .',
'ref' => '../tests/outputs/issues/528/cutoff_files_1.yaml',
},
{
'name' => '--summary-cutoff (c:10) #528 2/3',
'cd' => '../tests/inputs/issues/528',
'args' => '--summary-cutoff c:10 .',
'ref' => '../tests/outputs/issues/528/cutoff_code_10.yaml',
},
{
'name' => '--summary-cutoff (c:50%) #528 3/3',
'cd' => '../tests/inputs/issues/528',
'args' => '--summary-cutoff c:50% .',
'ref' => '../tests/outputs/issues/528/cutoff_code_50pct.yaml',
},
{
'name' => '--skip-leading 2 #530 1/4',
'cd' => '../tests/inputs/issues/530',
'args' => '--skip-leading 2 .',
'ref' => '../tests/outputs/issues/530/case_1.yaml',
},
{
'name' => '--skip-leading 100 #530 2/4',
'cd' => '../tests/inputs/issues/530',
'args' => '--skip-leading 100 .',
'ref' => '../tests/outputs/issues/530/case_2.yaml',
},
{
'name' => '--skip-leading 2,c,h #530 3/4',
'cd' => '../tests/inputs/issues/530',
'args' => '--skip-leading 2,c,h .',
'ref' => '../tests/outputs/issues/530/case_3.yaml',
},
{
'name' => '--skip-leading 2,C,H #530 4/4',
'cd' => '../tests/inputs/issues/530',
'args' => '--skip-leading 2,C,H .',
'ref' => '../tests/outputs/issues/530/case_4.yaml',
},
{
'name' => '--force-lang-def #537 1/2',
'cd' => '../tests/inputs/issues/537',
'args' => '--force-lang-def my_define.txt sourceCounter.vsql',
'ref' => '../tests/outputs/issues/537/results_force.yaml',
},
{
'name' => '--read-lang-def #537 2/2',
'cd' => '../tests/inputs/issues/537',
'args' => '--read-lang-def my_define.txt sourceCounter.vsql',
'ref' => '../tests/outputs/issues/537/results_read.yaml',
},
{
'name' => 'Elm empty comment, #538',
'cd' => '../tests/inputs/issues/538',
'args' => 'add.elm',
'ref' => '../tests/outputs/issues/538/add.elm.yaml',
},
{
'name' => 'Elm nested block comments, #539',
'cd' => '../tests/inputs/issues/539',
'args' => 'nested_comments.elm',
'ref' => '../tests/outputs/issues/539/nested_comments.elm.yaml',
},
{
'name' => 'preserve upper/lowercase filenames on Windows, #540',
'cd' => '../tests/inputs/issues/540',
'args' => '--windows --by-file Hello.f',
'ref' => '../tests/outputs/issues/540/Hello.f.yaml',
},
{
'name' => 'accept all file extensions in user-provided language definitions, #542',
'cd' => '../tests/inputs/issues/542',
'args' => '--read-lang-def txt_lang_def.txtt txt_lang_def.txtt',
'ref' => '../tests/outputs/issues/542/results.yaml',
},
{
'name' => 'small unicode files, #580',
'cd' => '../tests/inputs/issues/580',
'args' => '--unicode encodingtest.cs',
'ref' => '../tests/outputs/issues/580/encodingtest.cs.yaml',
},
{
'name' => 'identify autogenerated C#, #579',
'cd' => '../tests/inputs/issues/579',
'args' => 'csharp-autogen.cs',
'ref' => '../tests/outputs/issues/579/csharp-autogen.cs.yaml',
},
{
'name' => 'config file from list file directory, #577',
'cd' => '../tests/inputs/issues/577',
'args' => '--diff-list-file diff_list_file.txt',
'ref' => '../tests/outputs/issues/577/diff_list.yaml',
},
{
'name' => '--force-lang-def without XML definition, #596',
'cd' => '../tests/inputs/issues/596',
'args' => '--force-lang-def def.txt .',
'ref' => '../tests/outputs/issues/596/results.yaml',
},
{
'name' => '--csv-delimiter="#", #597',
'cd' => '../tests/inputs/issues/597',
'args' => '--csv-delimiter="#" --exclude-lang=CSV hello.C',
'ref' => '../tests/outputs/issues/597/results.yaml',
},
{
'name' => '--unicode (uninitialized value), #606',
'cd' => '../tests/inputs/issues/606',
'args' => '--unicode in',
'ref' => '../tests/outputs/issues/606/results.yaml',
},
{
'name' => 'CMakeLists.txt on Windows (lowercase file), #611',
'cd' => '../tests/inputs/issues/611',
'args' => '.',
'ref' => '../tests/outputs/issues/611/cmakelists.txt.yaml',
},
{
'name' => 'SCSS separate from Sass, #613',
'cd' => '../tests/inputs/issues/613',
'args' => '.',
'ref' => '../tests/outputs/issues/613/nav.scss.yaml',
},
{
'name' => 'sequence of Assembly filters, #619',
'cd' => '../tests/inputs/issues/619',
'args' => '.',
'ref' => '../tests/outputs/issues/619/RA.s.yaml',
},
{
'name' => 'GraphQL descriptions, #628',
'cd' => '../tests/inputs/issues/628',
'args' => '.',
'ref' => '../tests/outputs/issues/628/results.yaml',
},
{
'name' => 'diff with dir of excluded extensions, #625',
'cd' => '../tests/inputs/issues/625',
'args' => '--diff old new',
'ref' => '../tests/outputs/issues/625/results.yaml',
},
{
'name' => 'case insensitive --include-lang, #637',
'cd' => '../tests/inputs/issues/637',
'args' => '--include-lang python,perl --follow-links A B',
'ref' => '../tests/outputs/issues/637/straight_incl_lang.yaml',
},
{
'name' => 'case insensitive --include-lang --diff, #637',
'cd' => '../tests/inputs/issues/637',
'args' => '--include-lang python,perl --follow-links --diff A B',
'ref' => '../tests/outputs/issues/637/diff_incl_lang.yaml',
},
{
'name' => 'empty Unicode file w/only BOM, #644',
'cd' => '../tests/inputs/issues/644',
'args' => 'UInt8.cs',
'ref' => '../tests/outputs/issues/644/results.yaml',
},
{
'name' => '--no-recurse, #657',
'cd' => '../tests/inputs/issues/657',
'args' => '--no-recurse .',
'ref' => '../tests/outputs/issues/657/results.yaml',
},
{
'name' => '--csv-delimiter="|", #670',
'cd' => '../tests/inputs/issues/670',
'args' => '--csv-delimiter="|" --exclude-lang=CSV hello.C hi.py',
'ref' => '../tests/outputs/issues/670/results.yaml',
},
{
'name' => '--diff-list-files, #692',
'cd' => '../tests/inputs/issues/692',
'args' => '--diff-list-files A.txt B.txt',
'ref' => '../tests/outputs/issues/692/results.yaml',
},
{
'name' => 'comments in OCaml strings, #701',
'cd' => '../tests/inputs/issues/701',
'args' => '--strip-str-comments demo.ml',
'ref' => '../tests/outputs/issues/701/results.yaml',
},
{
'name' => '--only-count-files, #708',
'cd' => '../tests/inputs/dd',
'args' => '--only-count-files .',
'ref' => '../tests/outputs/issues/708/results.yaml',
},
{
'name' => '--diff-list-file w/unknown lang, #710',
'cd' => '../tests/inputs/issues/710',
'args' => '--diff-list-file test_files.list',
'ref' => '../tests/outputs/issues/710/results.yaml',
},
{
'name' => 'nondeterministic --diff, #712',
'cd' => '../tests/inputs/issues/712',
'args' => "--include-lang='C' --by-file --diff dir1/ dir2/",
'ref' => '../tests/outputs/issues/712/results.yaml',
},
{
'name' => '--hide-rate --yaml, #713',
'cd' => '../tests/inputs/issues/713',
'args' => '--hide-rate --yaml .',
'ref' => '../tests/outputs/issues/713/results.yaml',
},
{
'name' => '--include-content, #720',
'cd' => '../tests/inputs/issues/720',
'args' => '--include-content=for --by-file ../../*.m',
'ref' => '../tests/outputs/issues/720/results.yaml',
},
{
'name' => 'additive --not-match-f, #722',
'cd' => '../tests/inputs/issues/722',
'args' => '--not-match-f lua --not-match-f 77 --by-file .',
'ref' => '../tests/outputs/issues/722/results_1.yaml',
},
{
'name' => 'C# including autogenerated, #753',
'cd' => '../tests/inputs/issues/753',
'args' => '.',
'ref' => '../tests/outputs/issues/753/all.yaml',
},
{
'name' => '--exclude-list-file, #784',
'cd' => '../tests/inputs/issues/784',
'args' => '--by-file --exclude-list-file=.cloc-ignore .',
'ref' => '../tests/outputs/issues/784/results.yaml',
},
{
'name' => '--exclude-list-file, file path w/regex metacharacters, #785',
'cd' => '../tests/inputs/issues/785',
'args' => '--exclude-list-file=.cloc-ignore .',
'ref' => '../tests/outputs/issues/785/results.yaml',
},
{
'name' => '.inc as PHP, Pascal, or Fortran #781',
'cd' => '../tests/inputs/issues/781',
'args' => '--by-file .',
'ref' => '../tests/outputs/issues/781/results.yaml',
},
{
'name' => 'Java /* in string #804',
'cd' => '../tests/inputs/issues/804',
'args' => 'infoSQL.java',
'ref' => '../tests/outputs/issues/804/infoSQL.java.yaml',
},
{
'name' => 'comments in Java text blocks #805',
'cd' => '../tests/inputs/issues/805',
'args' => 'text_block.java',
'ref' => '../tests/outputs/issues/805/text_block.java.yaml',
},
{
'name' => 'Java text block start in comments #806',
'cd' => '../tests/inputs/issues/806',
'args' => 'huffman.java',
'ref' => '../tests/outputs/issues/806/results.yaml',
},
{
'name' => 'XML start block comment on line w/code #811',
'cd' => '../tests/inputs/issues/811',
'args' => 'inline_comment.xml',
'ref' => '../tests/outputs/issues/811/inline_comment.xml.yaml',
},
{
'name' => '"*/*", `*/*` in Go strings #816',
'cd' => '../tests/inputs/issues/816',
'args' => '--strip-str-comments star_slash_star.go',
'ref' => '../tests/outputs/issues/816/results.yaml',
},
{
'name' => '--fullpath issues/822 (github issue #822 T1)',
'cd' => '../tests/inputs',
'args' => '--fullpath --not-match-f "^c.csv" issues/822',
'ref' => '../tests/outputs/issues/822/T1.yaml',
},
#{
# 'name' => '--fullpath issues/822 (github issue #822 T2)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --fullpath --not-match-f "^c.csv" issues/822',
# 'ref' => '../tests/outputs/issues/822/T2.yaml',
#},
{
'name' => '--fullpath issues/822 (github issue #822 T3)',
'cd' => '../tests/inputs',
'args' => '--fullpath --not-match-f "b/c.csv" issues/822',
'ref' => '../tests/outputs/issues/822/T3.yaml',
},
#{
# 'name' => '--fullpath issues/822 (github issue #822 T4)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --fullpath --not-match-f "b/c.csv" issues/822',
# 'ref' => '../tests/outputs/issues/822/T4.yaml',
#},
{
'name' => '--fullpath issues/822 (github issue #822 T5)',
'cd' => '../tests/inputs',
'args' => '--fullpath --not-match-d "^b" issues/822',
'ref' => '../tests/outputs/issues/822/T5.yaml',
},
#{
# 'name' => '--fullpath issues/822 (github issue #822 T6)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --fullpath --not-match-d "^b" issues/822',
# 'ref' => '../tests/outputs/issues/822/T6.yaml',
#},
{
'name' => '--fullpath issues/822 (github issue #822 T7)',
'cd' => '../tests/inputs',
'args' => '--fullpath --not-match-d "a/b" issues/822',
'ref' => '../tests/outputs/issues/822/T7.yaml',
},
#{
# 'name' => '--fullpath issues/822 (github issue #822 T8)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --fullpath --not-match-d "a/b" issues/822',
# 'ref' => '../tests/outputs/issues/822/T8.yaml',
#},
{
'name' => '--not-match-d with trailing slash (github issue #833)',
'cd' => '../tests/inputs/issues/833',
'args' => '. --not-match-d="/foo/"',
'ref' => '../tests/outputs/issues/833/results.yaml',
},
{
'name' => '--match-f with --no-recurse (github issue #851)',
'cd' => '../tests/inputs/issues/851',
'args' => "--match-f '.lua\$' --no-recurse level_1",
'ref' => '../tests/outputs/issues/851/results.yaml',
},
{
'name' => '--ignore-regex (github issues #862, #865, #868)',
'cd' => '../tests/inputs/issues/862',
'args' => '--ignore-regex="C,Fortran 77|^\\s*([{};]|END)\\s*\$" *.f *.c',
'ref' => '../tests/outputs/issues/862/results.yaml',
},
{
'name' => '--ignore-regex --diff (github issues #862, #865, #868)',
'cd' => '../tests/inputs/issues/862',
'args' => '--ignore-regex="*|import" --diff a.py b.py',
'ref' => '../tests/outputs/issues/862/diff_results.yaml',
},
# The filename tests/inputs/issues/898/irregular"file2.md
# is not legal on Windows. Only test it on Unix-like systems.
{
'name' => '--by-file output for JSON/YAML with filenames having embedded quotes (#897, #898)',
'cd' => '../tests/inputs/issues/898',
'args' => '--by-file .', # default is YAML
'ref' => '../tests/outputs/issues/898/results.yaml',
},
{
'name' => '--percent (#886)',
'cd' => '../tests/inputs/dd',
'args' => '--percent .',
'ref' => '../tests/outputs/issues/886/results.yaml',
},
{
'name' => '--percent --by-file (#886)',
'cd' => '../tests/inputs/dd',
'args' => '--percent --by-file .',
'ref' => '../tests/outputs/issues/886/results_by_file.yaml',
},
{
'name' => 'Python docstring with embedded "#" (#906)',
'cd' => '../tests/inputs/issues/906',
'args' => '--diff previous_version.py current_version.py',
'ref' => '../tests/outputs/issues/906/results.yaml',
},
);
my $ON_WINDOWS = 0;
$ON_WINDOWS = 1 if ($^O =~ /^MSWin/) or ($^O eq "Windows_NT");
if ($ON_WINDOWS and $ENV{'SHELL'}) {
if ($ENV{'SHELL'} =~ m{^/}) {
$ON_WINDOWS = 0; # make Cygwin look like Unix
} else {
$ON_WINDOWS = 1; # MKS defines $SHELL but still acts like Windows
}
}
my $ON_MINGW64 = 0; # git-bash on Windows has special needs
if (!$ON_WINDOWS and defined $ENV{'SSH_ASKPASS'} and $ENV{'SSH_ASKPASS'} =~ m{^/mingw64/}) {
$ON_MINGW64 = 1;
}
# Special cases:
# 132: Create test input which needs data not in the git repo.
# Silently fail if file/dir already exists.
mkdir "../tests/inputs/issues/132/ignore_git";
cp "../tests/inputs/hi.py", "../tests/inputs/issues/132/ignore_git/";
# 898
make_898_weird_filename() unless $ON_WINDOWS;
# Issues #540, #544 regarding case preservation on file systems
# that are case insensitive: git issues a warning about the
# link hello.f -> Hello.f. Per https://github.com/mitchblank,
# remove it from git and make it at runtime.
my $work_dir = getcwd;
chdir( "../tests/inputs/issues/540/" );
symlink("Hello.f", "hello.f");
chdir( $work_dir );
my $missing_dir = "../tests/inputs/issues/482/B";
if (!-d $missing_dir) {
mkdir $missing_dir;
}
my $Verbose = 0;
my $results = 'results.yaml';
my $cloc = "$work_dir/../cloc"; # all-purpose version
$cloc = "$work_dir/cloc" if defined $opt{u}; # Unix-tuned version
my $Run = "$cloc --quiet --yaml --out $results ";
foreach my $t (@Tests) {
if ($t->{'name'} =~ /#898/ and $ON_WINDOWS) {
print "Skipping test $t->{'name'} on Windows.\n";
next;
}
chdir($t->{'cd'}) if defined $t->{'cd'};
print "Run dir= ", cwd(), "\n" if $Verbose;
print $Run . $t->{'args'} if $Verbose;
system($Run . $t->{'args'});
ok(-e $results, $t->{'name'} . " created output");
my %this = load_yaml($results);
unlink $results unless $Verbose;
chdir($work_dir) if defined $t->{'cd'};
print "Load dir= ", cwd(), "\n" if $Verbose;
my %ref = load_yaml($t->{'ref'});
# my $REF = LoadFile($t->{'ref'}); # using official YAML module
# is_deeply($REF , \%this, $t->{'name'} . " results match");
# use Data::Dumper;
# print Dumper(\%ref);
# print Dumper(\%this);
is_deeply(\%ref, \%this, $t->{'name'} . " results match");
}
done_testing();
print "Finished testing $cloc\n";
sub load_yaml { # {{{1
my ($file, ) = @_;
my %result = ();
if (!-r $file) {
warn "File not found: $file\n";
return %result;
}
open IN, $file or return %result;
my $section = undef;
while (<IN>) {
next if /^\s*#/ or /^--/;
if (/^\s*'?(.*?)'?\s*:\s*$/) {
$section = $1;
next;
}
next unless defined $section;
next if $section eq 'header';
chomp;
s/\s+//g;
my ($K, $V) = split(':');
$result{$section}{$K} = $V;
}
close IN;
return %result
} # 1}}}
sub make_898_weird_filename { # {{{1
my $parent_dir = "../tests/inputs/issues/898";
if (!-d $parent_dir) {
print "Cannot find $parent_dir, skipping test 898.\n";
return 0;
}
my $weird_filename = 'irregular"file2.md';
my $content = <<'EOF';
---
id: 5dc174fcf86c76b9248c6eb3
title: Step 3
challengeType: 0
dashedName: step-2
demoType: onLoad ---
# --description--
In this workshop, you will learn how to work with basic HTML elements like
headings.
EOF
open OUT , ">$parent_dir/$weird_filename" or die "Cannot write to $weird_filename : $!";
print OUT $content;
close OUT;
return 1;
} # 1}}}
|