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
|
#! /usr/bin/env -S vala --vapidir=. --pkg gio-2.0 --pkg posix --pkg gnu testcase.vala slurp.vala
// rpl tests
//
// © 2025 Reuben Thomas <rrt@sc3d.org>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3, or (at your option)
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, see <https://www.gnu.org/licenses/>.
// To run only some tests, run the tests normally to ensure the binary is up
// to date, then:
// TEST_FILES_DIR=./test-files ./test -p "/PATH/TO/TEST"
// ./test --help for more details
using Posix;
public string slurp_file (string filename, out size_t length = null) throws FileError {
string contents;
size_t contents_length;
FileUtils.get_contents (filename, out contents, out contents_length);
length = contents_length;
return contents;
}
public void buffer_to_file (string path, uint8[] buf) {
try {
var file = File.new_for_path (path);
FileOutputStream os = file.create (FileCreateFlags.NONE);
os.write (buf);
os.close ();
} catch (Error e) {
print ("error writing to temporary file\n");
assert_no_error (e);
}
}
errordomain TestError {
TESTERROR;
}
Subprocess start_prog (string prog, string[] args) throws TestError {
var cmd = new Array<string>.take_zero_terminated(args);
cmd.prepend_val (prog);
Subprocess proc = null;
try {
proc = new Subprocess.newv (cmd.data,
SubprocessFlags.SEARCH_PATH_FROM_ENVP
| SubprocessFlags.STDIN_PIPE
| SubprocessFlags.STDOUT_PIPE
| SubprocessFlags.STDERR_PIPE);
} catch (Error e) {
print (@"error starting command $(string.joinv(" ", cmd.data)): $(e.message)\n");
throw new TestError.TESTERROR ("could not run command");
}
return proc;
}
struct Output {
public string std_out;
public string std_err;
}
Subprocess check_prog (string prog, string[] args) throws Error {
var proc = start_prog (prog, args);
proc.wait_check (null);
return proc;
}
bool try_sudo (string[] cmd) {
try {
var cmd_args = new Array<string>.take_zero_terminated(cmd);
cmd_args.prepend_val ("-n");
check_prog ("sudo", cmd_args.data);
return true;
} catch (Error e) {
print ("cannot sudo, skipping test\n");
Test.skip ();
return false;
}
}
Output run_prog (string prog, string[] args, int expected_rc = 0) {
string std_out = "";
string std_err = "";
try {
var proc = start_prog (prog, args);
try {
proc.wait ();
} catch {}
if (proc.get_if_exited ()) {
assert_true (proc.get_exit_status () == expected_rc);
}
var stdout_pipe = proc.get_stdout_pipe ();
var stderr_pipe = proc.get_stderr_pipe ();
std_out = slurp (stdout_pipe);
std_err = slurp (stderr_pipe);
} catch (Error e) {
print (@"error in command $prog $(string.joinv(" ", args)): $(e.message)\n");
}
return Output () {
std_out = std_out, std_err = std_err
};
}
// Base class for rpl tests
class TestRpl : GeeTestCase {
protected string rpl;
protected string test_files_dir;
public string test_result_dir;
public TestRpl(string bin_dir, string test_files_dir) {
base ("TestRpl");
this.rpl = Path.build_filename (bin_dir, "rpl");
this.test_files_dir = test_files_dir;
}
public Output run (string[] args, int expected_rc = 0) {
return run_prog (rpl, args, expected_rc);
}
public override void set_up () {
try {
test_result_dir = DirUtils.make_tmp ("rpl.test.XXXXXX");
} catch (FileError e) {
print ("error creating temporary directory\n");
assert_no_error (e);
}
}
public override void tear_down () {
run_prog ("rm", { "-rf", test_result_dir });
}
}
class TestRplOutputFile : TestRpl {
public string test_result_root;
public TestRplOutputFile(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir);
}
public override void set_up () {
base.set_up ();
this.test_result_root = Path.build_filename (test_result_dir, "test.txt");
}
public bool result_matches (string expected_root) {
try {
check_prog ("diff", { "-r", expected_root, test_result_root });
} catch (Error e) {
return false;
}
return true;
}
public bool result_matches_string (string expected, size_t length = -1) {
try {
var s = slurp_file (test_result_root);
if (length == -1)
return s == expected;
return Memory.cmp (s, expected, length) == 0;
} catch (FileError e) {
return false;
}
}
}
// Each set of tests that uses a particular input test file or directory is
// a class inheriting from this one.
abstract class TestRplFile : TestRplOutputFile {
public string test_data_root;
public string test_data;
private TestRplFile(string bin_dir, string test_files_dir, string test_data) {
base (bin_dir, test_files_dir);
this.test_data = test_data;
this.test_data_root = Path.build_filename (test_files_dir, test_data);
}
public override void set_up () {
base.set_up ();
this.test_result_root = Path.build_filename (test_result_dir, test_data);
run_prog ("cp", { "-r", test_data_root, test_result_dir });
run_prog ("chmod", { "-R", "u+w", test_result_dir });
}
}
class EncodingTests : TestRplFile {
public EncodingTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "lorem-iso-8859-1.txt");
add_test ("test_bad_encoding", test_bad_encoding);
add_test ("test_explicit_encoding", test_explicit_encoding);
}
void test_bad_encoding () {
var output = run ({ "--encoding=utf-8", "Lorem", "L-O-R-E-M", test_result_root });
assert_true (output.std_err.contains ("error decoding"));
}
void test_explicit_encoding () {
run ({ "--encoding=iso-8859-1", "Lorem", "L-O-R-E-M", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-iso-8859-1_explicit-encoding_expected.txt")));
}
}
// This class contains all the tests that don't actually use a file.
class NoFileTests : TestRpl {
public NoFileTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir);
add_test ("test_no_arguments", test_no_arguments);
add_test ("test_help", test_help);
add_test ("test_full_help", test_full_help);
add_test ("test_version", test_version);
add_test ("test_nonexistent_option", test_nonexistent_option);
add_test ("test_nonexistent_input", test_nonexistent_input);
add_test ("test_nonexistent_patterns_file", test_nonexistent_patterns_file);
add_test ("test_input_is_directory", test_input_is_directory);
}
void test_no_arguments () {
var output = run ({ }, 1);
assert_true (output.std_out.contains ("Search and replace text in files."));
}
void test_help () {
var output = run ({ "--help" });
assert_true (output.std_out.contains ("Search and replace text in files."));
}
void test_full_help () {
var output = run ({ "--full-help" });
assert_true (output.std_out.contains ("use extended regex syntax [IGNORED]"));
}
void test_version () {
var output = run ({ "--version" });
assert_true (output.std_out.contains ("NO WARRANTY, to the extent"));
}
void test_nonexistent_option () {
var output = run ({ "--foo" }, 1);
// The exact message varies by libc (it comes from getopt_long), but
// should contain the name of the unrecognized option.
assert_true (output.std_err.contains ("foo"));
}
void test_nonexistent_input () {
var output = run ({ "in", "out", "nonexistent.txt" });
assert_true (output.std_err.contains ("skipping nonexistent.txt: "));
}
void test_nonexistent_patterns_file () {
var output = run ({ "--files", "in", "out", "nonexistent.txt" }, 1);
assert_true (output.std_err.contains ("error reading pattern file"));
}
void test_input_is_directory () {
var output = run ({ "amét", "amèt", test_result_dir });
assert_true (output.std_err.contains ("skipping directory"));
}
}
// This class contains all the tests that don't use an input file.
class OutputFileTests : TestRplOutputFile {
// FIXME: Get the default buffer size from rpl
private const int MULTI_BUFFER_TEST_BYTES = 2 * 1024 * 1024;
public OutputFileTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir);
add_test ("test_a_star_b_empty_input", test_a_star_b_empty_input);
add_test ("test_a_star_b_input_x", test_a_star_b_input_x);
add_test ("test_a_star_b_input_aaa", test_a_star_b_input_aaa);
add_test ("test_a_star_b_input_aaax", test_a_star_b_input_aaax);
add_test ("test_a_star_b_input_xaaa", test_a_star_b_input_xaaa);
add_test ("test_a_star_b_input_xaaax", test_a_star_b_input_xaaax);
add_test ("test_a_star_b_input_aaaxaaa", test_a_star_b_input_aaaxaaa);
add_test ("test_a_star_b_input_aaaxxaaa", test_a_star_b_input_aaaxxaaa);
// These multi-buffer tests all test different match conditions at the
// end of the file when that aligns with a buffer boundary.
add_test ("test_multi_buffer_matches_partial_match_at_end", test_multi_buffer_matches_partial_match_at_end);
add_test ("test_multi_buffer_matches_partial_empty_match_at_end", test_multi_buffer_matches_partial_empty_match_at_end);
add_test ("test_multi_buffer_matches_complete_match_at_end", test_multi_buffer_matches_complete_match_at_end);
add_test ("test_multi_buffer_matches_complete_empty_match_at_end", test_multi_buffer_matches_complete_empty_match_at_end);
add_test ("test_multi_buffer_lookbehind", test_multi_buffer_lookbehind);
add_test ("test_lookbehind_word_boundary", test_lookbehind_word_boundary);
add_test ("test_lookbehind_with_NULs", test_lookbehind_with_NULs);
add_test ("test_buffer_crossing_character", test_buffer_crossing_character);
add_test ("test_empty_match_at_buffer_end", test_empty_match_at_buffer_end);
add_test ("test_recursive_no_file_arguments", test_recursive_no_file_arguments);
add_test ("test_bad_regex", test_bad_regex);
add_test ("test_non_file_input", test_non_file_input);
}
void test_a_star_b_empty_input () {
buffer_to_file (test_result_root, "".data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("b"));
}
void test_a_star_b_input_x () {
buffer_to_file (test_result_root, "x".data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("bxb"));
}
void test_a_star_b_input_aaa () {
buffer_to_file (test_result_root, "aaa".data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("bb"));
}
void test_a_star_b_input_aaax () {
buffer_to_file (test_result_root, "aaax".data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("bbxb"));
}
void test_a_star_b_input_xaaa () {
buffer_to_file (test_result_root, "xaaa".data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("bxbb"));
}
void test_a_star_b_input_xaaax () {
buffer_to_file (test_result_root, "xaaax".data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("bxbbxb"));
}
void test_a_star_b_input_aaaxaaa () {
buffer_to_file (test_result_root, "aaaxaaa".data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("bbxbb"));
}
void test_a_star_b_input_aaaxxaaa () {
buffer_to_file (test_result_root, "aaaxxaaa".data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("bbxbxbb"));
}
void test_multi_buffer_matches_partial_match_at_end () {
buffer_to_file (test_result_root, string.nfill (MULTI_BUFFER_TEST_BYTES, 'a').data);
run ({ "a+", "b", test_result_root });
assert_true (result_matches_string ("b"));
}
void test_multi_buffer_matches_partial_empty_match_at_end () {
buffer_to_file (test_result_root, string.nfill (MULTI_BUFFER_TEST_BYTES, 'a').data);
run ({ "a*", "b", test_result_root });
assert_true (result_matches_string ("bb"));
}
void test_multi_buffer_matches_complete_match_at_end () {
buffer_to_file (test_result_root, string.nfill (MULTI_BUFFER_TEST_BYTES, 'a').data);
run ({ "a", "b", test_result_root });
assert_true (result_matches_string (string.nfill (MULTI_BUFFER_TEST_BYTES, 'b')));
}
void test_multi_buffer_matches_complete_empty_match_at_end () {
buffer_to_file (test_result_root, string.nfill (MULTI_BUFFER_TEST_BYTES, 'a').data);
run ({ "a|$", "b", test_result_root });
assert_true (result_matches_string (string.nfill (MULTI_BUFFER_TEST_BYTES + 1, 'b')));
}
void test_multi_buffer_lookbehind () {
buffer_to_file (test_result_root, string.nfill (MULTI_BUFFER_TEST_BYTES, 'a').data);
var expected = new StringBuilder ("b");
expected.append (string.nfill (MULTI_BUFFER_TEST_BYTES - 1, 'a'));
run ({ "(?<!a)a", "b", test_result_root });
assert_true (result_matches_string (expected.str));
}
void test_lookbehind_with_NULs () {
var s = new StringBuilder ();
for (var i = 0; i < MULTI_BUFFER_TEST_BYTES; i++) {
s.append_c ('a');
s.append_c (0);
}
buffer_to_file (test_result_root, s.data);
var expected = new StringBuilder ();
for (var i = 0; i < MULTI_BUFFER_TEST_BYTES; i++) {
expected.append_c ('b');
expected.append_c (0);
}
run ({ "(?<!c)a", "b", test_result_root });
assert_true (result_matches_string (expected.str, expected.len));
}
void test_lookbehind_word_boundary () {
buffer_to_file (test_result_root, string.nfill (MULTI_BUFFER_TEST_BYTES, 'a').data);
var expected = new StringBuilder ("b");
expected.append (string.nfill (MULTI_BUFFER_TEST_BYTES - 1, 'a'));
run ({ "\\ba", "b", test_result_root });
assert_true (result_matches_string (expected.str));
}
void test_buffer_crossing_character () {
var s = new StringBuilder ("a");
// á is two bytes in UTF-8, so when preceded by a single byte will
// span a buffer boundary assuming that the buffer length is even..
for (var i = 0; i < MULTI_BUFFER_TEST_BYTES; i++) {
s.append_unichar ('á');
}
buffer_to_file (test_result_root, s.data);
var expected = new StringBuilder ("a");
expected.append (string.nfill (MULTI_BUFFER_TEST_BYTES, 'b'));
run ({ "á", "b", test_result_root });
assert_true (result_matches_string (expected.str));
}
void test_empty_match_at_buffer_end () {
buffer_to_file (test_result_root, string.nfill (MULTI_BUFFER_TEST_BYTES, 'a').data);
var expected = string.nfill (MULTI_BUFFER_TEST_BYTES + 1, 'b');
run ({ "a?", "b", test_result_root });
assert_true (result_matches_string (expected));
}
void test_recursive_no_file_arguments () {
var output = run ({ "--recursive", "foo", "bar" }, 1);
assert_true (output.std_err.contains ("cannot use --recursive with no file arguments!"));
}
void test_bad_regex () {
var output = run ( {"(foo", "bar" }, 1);
assert_true (output.std_err.contains ("bad regex (foo"));
}
void test_non_file_input () {
var output = run ( {"foo", "bar",
#if WINDOWS
"nul:"
#else
"/dev/null"
#endif
});
assert_true (output.std_err.contains ("not a regular file"));
}
}
class LoremTests : TestRplFile {
public LoremTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "lorem.txt");
add_test ("test_ignore_case_verbose", test_ignore_case_verbose);
add_test ("test_match_case", test_match_case);
add_test ("test_no_flags", test_no_flags);
add_test ("test_use_regexp", test_use_regexp);
add_test ("test_dry_run", test_dry_run);
add_test ("test_quiet", test_quiet);
add_test ("test_ignores_dash_E", test_ignores_dash_E);
add_test ("test_bad_replacement", test_bad_replacement);
add_test ("test_input_on_stdin", test_input_on_stdin);
add_test ("test_recursive_used_with_file", test_recursive_used_with_file);
add_test ("test_bad_output_encoding", test_bad_output_encoding);
add_test ("test_bad_ASCII_output", test_bad_ascii_output);
}
void test_ignore_case_verbose () {
var output = run ({ "-iv", "Lorem", "L-O-R-E-M", test_result_root });
assert_true (output.std_err.contains ("processing "));
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem_ignore-case_expected.txt")));
}
void test_match_case () {
run ({ "lorem", "loReM", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem_match-case_expected.txt")));
}
void test_no_flags () {
run ({ "Lorem", "L-O-R-E-M", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem_no-flags_expected.txt")));
}
void test_use_regexp () {
run ({ "a[a-z]+", "coffee", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem_use-regexp_expected.txt")));
}
void test_dry_run () {
run ({ "--dry-run", "Lorem", "L-O-R-E-M", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem.txt")));
}
void test_quiet () {
var output = run ({ "--quiet", "Lorem", "L-O-R-E-M", test_result_root });
assert_true (output.std_err.length == 0);
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem_no-flags_expected.txt")));
}
void test_ignores_dash_E () {
run ({ "-E", "Lorem", "L-O-R-E-M", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem_no-flags_expected.txt")));
}
void test_bad_replacement () {
var output = run ({ "Lorem", "$input", test_result_root });
assert_true (output.std_err.contains ("error in replacement"));
}
void test_input_on_stdin () {
try {
var proc = start_prog (rpl, { "Lorem", "L-O-R-E-M" });
var stdin_pipe = proc.get_stdin_pipe ();
var stdout_pipe = proc.get_stdout_pipe ();
stdin_pipe.write (slurp_file (test_result_root).data);
stdin_pipe.close ();
var std_out = slurp (stdout_pipe);
var expected_file = Path.build_filename (test_files_dir, "lorem_no-flags_expected.txt");
assert_true (std_out == slurp_file (expected_file));
} catch (Error e) {
print ("error communicating with rpl\n");
assert_no_error (e);
}
}
void test_recursive_used_with_file () {
run ({ "--recursive", "Lorem", "L-O-R-E-M", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem_no-flags_expected.txt")));
}
void test_bad_output_encoding () {
var output = run ({ "--encoding=iso-8859-1", "amet", "amαt", test_result_root }, 0);
assert_true (output.std_err.contains ("Invalid or incomplete multibyte or wide character"));
}
void test_bad_ascii_output () {
var output = run ({ "--encoding=ascii", "amet", "amαt", test_result_root }, 0);
assert_true (output.std_err.contains ("Invalid or incomplete multibyte or wide character"));
}
}
class LoremUtf8Tests : TestRplFile {
public LoremUtf8Tests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "lorem-utf-8.txt");
add_test ("test_utf_8", test_utf_8);
add_test ("test_whole_words", test_whole_words);
add_test ("test_patterns_in_files", test_patterns_in_files);
add_test ("test_fixed_strings", test_fixed_strings);
add_test ("test_match_case_non_ascii", test_match_case_non_ascii);
add_test ("test_keep_times", test_keep_times);
add_test ("test_without_keep_times", test_without_keep_times);
add_test ("test_prompt_yes", test_prompt_yes);
add_test ("test_prompt_no", test_prompt_no);
add_test ("test_prompt_empty", test_prompt_empty);
add_test ("test_force", test_force);
add_test ("test_force_fail", test_force_fail);
add_test ("test_set_attributes_fail", test_set_attributes_fail);
add_test ("test_unreadable_input", test_unreadable_input);
add_test ("test_unwritable_input", test_unwritable_input);
}
void test_utf_8 () {
run ({ "amét", "amèt", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_utf-8_expected.txt")));
}
void test_whole_words () {
run ({ "--whole-words", "in", "out", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_whole-words_expected.txt")));
}
void test_patterns_in_files () {
var in_file = Path.build_filename (test_files_dir, "in.txt");
var out_file = Path.build_filename (test_files_dir, "out.txt");
run ({ "--files", "--whole-words", in_file, out_file, test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_whole-words_expected.txt")));
}
void test_fixed_strings () {
run ({ "--fixed-strings", "t.", "t$$", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_fixed-strings_expected.txt")));
}
void test_match_case_non_ascii () {
run ({ "-m", "\\w+", "éowyn", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_match-case-non-ascii_expected.txt")));
}
void test_keep_times () {
run_prog ("touch", { "-r", test_data_root, test_result_root });
run ({ "--keep-times", "in", "out", test_result_root });
Posix.Stat perms = Posix.Stat () {};
assert_true (Posix.lstat (test_data_root, out perms) == 0);
var orig_mtime = (timespec) Gnu.get_stat_mtime (perms);
assert_true (Posix.lstat (test_result_root, out perms) == 0);
var new_mtime = (timespec) Gnu.get_stat_mtime (perms);
assert_true (orig_mtime.tv_sec == new_mtime.tv_sec &&
orig_mtime.tv_nsec == new_mtime.tv_nsec);
}
void test_without_keep_times () {
run ({ "in", "out", test_result_root });
Posix.Stat perms = Posix.Stat () {};
assert_true (Posix.lstat (test_data_root, out perms) == 0);
var orig_mtime = (timespec) Gnu.get_stat_mtime (perms);
assert_true (Posix.lstat (test_result_root, out perms) == 0);
var new_mtime = (timespec) Gnu.get_stat_mtime (perms);
assert_true (!(orig_mtime.tv_sec == new_mtime.tv_sec &&
orig_mtime.tv_nsec == new_mtime.tv_nsec));
}
private void prompt_test (string input, string expected) {
try {
var proc = start_prog (rpl, { "--whole-words", "--prompt", "in", "out", test_result_root });
var stdin_pipe = proc.get_stdin_pipe ();
var stderr_pipe = proc.get_stderr_pipe ();
stdin_pipe.write (input.data);
stdin_pipe.close ();
var std_err = slurp (stderr_pipe);
assert_true (std_err.contains ("? [Y/n] "));
assert_true (std_err.contains (expected));
} catch (Error e) {
print ("error communicating with rpl\n");
assert_no_error (e);
}
}
void test_prompt_yes () {
prompt_test ("y\n", "Updated");
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_whole-words_expected.txt")));
}
void test_prompt_no () {
prompt_test ("n\n", "Not updated");
assert_true (!result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_whole-words_expected.txt")));
}
void test_prompt_empty () {
prompt_test ("\n", "Updated");
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_whole-words_expected.txt")));
}
void test_force () {
if (!try_sudo ({ "chown", "0:0", test_result_root }) ||
!try_sudo ({ "chmod", "644", test_result_root })) {
return;
}
var output = run_prog ("sudo", { "-n", rpl, "--force", "amét", "amèt", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "lorem-utf-8_utf-8_expected.txt")));
assert_true (!output.std_err.contains ("unable to set attributes"));
assert_true (!output.std_err.contains ("new file attributes may not match"));
}
void test_force_fail () {
if (!try_sudo ({ "chown", "0:0", test_result_root }) ||
!try_sudo ({ "chmod", "777", test_result_root }) ||
!try_sudo ({ "chmod", "755", test_result_dir })) {
return;
}
var output = run ({ "--force", "amét", "amèt", test_result_root });
assert_true (output.std_err.contains ("unable to set attributes"));
assert_true (output.std_err.contains ("new file attributes may not match"));
}
void test_set_attributes_fail () {
if (!try_sudo ({ "chown", "0:0", test_result_root }) ||
!try_sudo ({ "chmod", "777", test_result_root }) ||
!try_sudo ({ "chmod", "755", test_result_dir })) {
return;
}
var output = run ({ "amét", "amèt", test_result_root });
assert_true (output.std_err.contains ("unable to set attributes"));
assert_true (output.std_err.contains ("skipping"));
}
void test_unreadable_input () {
#if WINDOWS
Test.skip ();
#else
assert_true (Posix.chmod (test_result_root, 0000) == 0);
var output = run ({ "amét", "amèt", test_result_root });
assert_true (output.std_err.contains (@"skipping $test_result_root"));
#endif
}
void test_unwritable_input () {
#if WINDOWS
Test.skip ();
#else
assert_true (Posix.chmod (test_result_dir, 0500) == 0);
assert_true (Posix.chmod (test_result_root, 0777) == 0);
var output = run ({ "amét", "amèt", test_result_root });
assert_true (output.std_err.contains (@"skipping $test_result_root"));
// Allow test directory to be deleted.
assert_true (Posix.chmod (test_result_dir, 0700) == 0);
#endif
}
}
class Utf8SigTests : TestRplFile {
public Utf8SigTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "utf-8-sig.txt");
add_test ("test_utf_8_sig", test_utf_8_sig);
}
void test_utf_8_sig () {
run ({ "BOM mark", "BOM", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "utf-8-sig_utf-8-sig_expected.txt")));
}
}
class MixedCaseTests : TestRplFile {
public MixedCaseTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "mixed-case.txt");
add_test ("test_mixed_replace_lower", test_mixed_replace_lower);
}
void test_mixed_replace_lower () {
run ({ "-m", "MixedInput", "MixedOutput", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "mixed-case_mixed-replace-lower_expected.txt")));
}
}
class BackreferenceTests : TestRplFile {
public BackreferenceTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "aba.txt");
add_test ("test_backreference_numbering", test_backreference_numbering);
}
void test_backreference_numbering () {
run ({ "a(b)a", "$1", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "aba_backreference-numbering_expected.txt")));
}
}
class EmptyMatchesTests : TestRplFile {
public EmptyMatchesTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "abc-123.txt");
add_test ("test_empty_matches", test_empty_matches);
}
void test_empty_matches () {
run ({ "^", "#", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "abc-123_empty-matches_expected.txt")));
}
}
class DirTests : TestRplFile {
public DirTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "test-dir");
add_test ("test_recursive", test_recursive);
add_test ("test_backup", test_backup);
}
void test_recursive () {
run ({ "--recursive", "foo", "bar", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "test-dir-expected")));
}
void test_backup () {
run ({ "--backup", "--recursive", "foo", "bar", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "test-dir-backup-expected")));
}
}
class GlobTests : TestRplFile {
public GlobTests(string bin_dir, string test_files_dir) {
base (bin_dir, test_files_dir, "test-tree");
add_test ("test_globs", test_globs);
add_test ("test_globs_no_match", test_globs_no_match);
}
void test_globs () {
run ({ "--recursive", "--glob=*.txt", "foo", "bar", test_result_root });
assert_true (result_matches (Path.build_filename (test_files_dir, "test-tree-expected")));
}
void test_globs_no_match () {
var output = run ({ "--recursive", "--glob=*.foo", "foo", "bar", test_result_root }, 1);
assert_true (output.std_err.contains ("the given filename patterns did not match any files!"));
}
}
public int main (string[] args) {
var test_files_dir = Environment.get_variable ("TEST_FILES_DIR");
var bin_dir = Path.get_dirname (args[0]);
Test.init (ref args);
Test.set_nonfatal_assertions ();
TestSuite.get_root ().add_suite (new NoFileTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new OutputFileTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new EncodingTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new LoremTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new LoremUtf8Tests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new Utf8SigTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new MixedCaseTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new BackreferenceTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new EmptyMatchesTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new DirTests (bin_dir, test_files_dir).get_suite ());
TestSuite.get_root ().add_suite (new GlobTests (bin_dir, test_files_dir).get_suite ());
return Test.run ();
}
|