2019-01-19 17:15:56 +02:00
|
|
|
use crate::hay::{SHERLOCK, SHERLOCK_CRLF};
|
2020-02-18 01:08:47 +02:00
|
|
|
use crate::util::{sort_lines, Dir, TestCommand};
|
2018-08-07 02:11:58 +02:00
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1
|
|
|
|
rgtest!(f1_sjis, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create_bytes(
|
|
|
|
"foo",
|
|
|
|
b"\x84Y\x84u\x84\x82\x84|\x84\x80\x84{ \x84V\x84\x80\x84|\x84}\x84\x83"
|
|
|
|
);
|
|
|
|
cmd.arg("-Esjis").arg("Шерлок Холмс");
|
|
|
|
eqnice!("foo:Шерлок Холмс\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1
|
|
|
|
rgtest!(f1_utf16_auto, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create_bytes(
|
|
|
|
"foo",
|
|
|
|
b"\xff\xfe(\x045\x04@\x04;\x04>\x04:\x04 \x00%\x04>\x04;\x04<\x04A\x04"
|
|
|
|
);
|
|
|
|
cmd.arg("Шерлок Холмс");
|
|
|
|
eqnice!("foo:Шерлок Холмс\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1
|
|
|
|
rgtest!(f1_utf16_explicit, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create_bytes(
|
|
|
|
"foo",
|
|
|
|
b"\xff\xfe(\x045\x04@\x04;\x04>\x04:\x04 \x00%\x04>\x04;\x04<\x04A\x04"
|
|
|
|
);
|
|
|
|
cmd.arg("-Eutf-16le").arg("Шерлок Холмс");
|
|
|
|
eqnice!("foo:Шерлок Холмс\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1
|
|
|
|
rgtest!(f1_eucjp, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create_bytes(
|
|
|
|
"foo",
|
|
|
|
b"\xa7\xba\xa7\xd6\xa7\xe2\xa7\xdd\xa7\xe0\xa7\xdc \xa7\xb7\xa7\xe0\xa7\xdd\xa7\xde\xa7\xe3"
|
|
|
|
);
|
|
|
|
cmd.arg("-Eeuc-jp").arg("Шерлок Холмс");
|
|
|
|
eqnice!("foo:Шерлок Холмс\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1
|
|
|
|
rgtest!(f1_unknown_encoding, |_: Dir, mut cmd: TestCommand| {
|
|
|
|
cmd.arg("-Efoobar").assert_non_empty_stderr();
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1
|
|
|
|
rgtest!(f1_replacement_encoding, |_: Dir, mut cmd: TestCommand| {
|
|
|
|
cmd.arg("-Ecsiso2022kr").assert_non_empty_stderr();
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/7
|
|
|
|
rgtest!(f7, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
dir.create("pat", "Sherlock\nHolmes");
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
Holmeses, success in the province of detective work must always
|
|
|
|
be, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.arg("-fpat").arg("sherlock").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/7
|
|
|
|
rgtest!(f7_stdin, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
sherlock:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
sherlock:be, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
";
|
binary: rejigger ripgrep's handling of binary files
This commit attempts to surface binary filtering in a slightly more
user friendly way. Namely, before, ripgrep would silently stop
searching a file if it detected a NUL byte, even if it had previously
printed a match. This can lead to the user quite reasonably assuming
that there are no more matches, since a partial search is fairly
unintuitive. (ripgrep has this behavior by default because it really
wants to NOT search binary files at all, just like it doesn't search
gitignored or hidden files.)
With this commit, if a match has already been printed and ripgrep detects
a NUL byte, then it will print a warning message indicating that the search
stopped prematurely.
Moreover, this commit adds a new flag, --binary, which causes ripgrep to
stop filtering binary files, but in a way that still avoids dumping
binary data into terminals. That is, the --binary flag makes ripgrep
behave more like grep's default behavior.
For files explicitly specified in a search, e.g., `rg foo some-file`,
then no binary filtering is applied (just like no gitignore and no
hidden file filtering is applied). Instead, ripgrep behaves as if you
gave the --binary flag for all explicitly given files.
This was a fairly invasive change, and potentially increases the UX
complexity of ripgrep around binary files. (Before, there were two
binary modes, where as now there are three.) However, ripgrep is now a
bit louder with warning messages when binary file detection might
otherwise be hiding potential matches, so hopefully this is a net
improvement.
Finally, the `-uuu` convenience now maps to `--no-ignore --hidden
--binary`, since this is closer to the actualy intent of the
`--unrestricted` flag, i.e., to reduce ripgrep's smart filtering. As a
consequence, `rg -uuu foo` should now search roughly the same number of
bytes as `grep -r foo`, and `rg -uuua foo` should search roughly the
same number of bytes as `grep -ra foo`. (The "roughly" weasel word is
used because grep's and ripgrep's binary file detection might differ
somewhat---perhaps based on buffer sizes---which can impact exactly what
is and isn't searched.)
See the numerous tests in tests/binary.rs for intended behavior.
Fixes #306, Fixes #855
2019-04-09 01:28:38 +02:00
|
|
|
eqnice!(expected, cmd.arg("-f-").pipe(b"Sherlock"));
|
2018-08-07 02:11:58 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/20
|
|
|
|
rgtest!(f20_no_filename, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
cmd.arg("--no-filename");
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
be, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.arg("--no-filename").arg("Sherlock").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/34
|
|
|
|
rgtest!(f34_only_matching, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
sherlock:Sherlock
|
|
|
|
sherlock:Sherlock
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.arg("-o").arg("Sherlock").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/34
|
|
|
|
rgtest!(f34_only_matching_line_column, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
sherlock:1:57:Sherlock
|
|
|
|
sherlock:3:49:Sherlock
|
|
|
|
";
|
|
|
|
cmd.arg("-o").arg("--column").arg("-n").arg("Sherlock");
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/45
|
|
|
|
rgtest!(f45_relative_cwd, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create(".not-an-ignore", "foo\n/bar");
|
|
|
|
dir.create_dir("bar");
|
|
|
|
dir.create_dir("baz/bar");
|
|
|
|
dir.create_dir("baz/baz/bar");
|
|
|
|
dir.create("bar/test", "test");
|
|
|
|
dir.create("baz/bar/test", "test");
|
|
|
|
dir.create("baz/baz/bar/test", "test");
|
|
|
|
dir.create("baz/foo", "test");
|
|
|
|
dir.create("baz/test", "test");
|
|
|
|
dir.create("foo", "test");
|
|
|
|
dir.create("test", "test");
|
|
|
|
|
|
|
|
cmd.arg("-l").arg("test");
|
|
|
|
|
|
|
|
// First, get a baseline without applying ignore rules.
|
|
|
|
let expected = "
|
|
|
|
bar/test
|
|
|
|
baz/bar/test
|
|
|
|
baz/baz/bar/test
|
|
|
|
baz/foo
|
|
|
|
baz/test
|
|
|
|
foo
|
|
|
|
test
|
|
|
|
";
|
|
|
|
eqnice!(sort_lines(expected), sort_lines(&cmd.stdout()));
|
|
|
|
|
|
|
|
// Now try again with the ignore file activated.
|
|
|
|
cmd.arg("--ignore-file").arg(".not-an-ignore");
|
|
|
|
let expected = "
|
|
|
|
baz/bar/test
|
|
|
|
baz/baz/bar/test
|
|
|
|
baz/test
|
|
|
|
test
|
|
|
|
";
|
|
|
|
eqnice!(sort_lines(expected), sort_lines(&cmd.stdout()));
|
|
|
|
|
|
|
|
// Now do it again, but inside the baz directory. Since the ignore file
|
|
|
|
// is interpreted relative to the CWD, this will cause the /bar anchored
|
|
|
|
// pattern to filter out baz/bar, which is a subtle difference between true
|
|
|
|
// parent ignore files and manually specified ignore files.
|
|
|
|
let mut cmd = dir.command();
|
|
|
|
cmd.args(&["--ignore-file", "../.not-an-ignore", "-l", "test"]);
|
|
|
|
cmd.current_dir(dir.path().join("baz"));
|
|
|
|
let expected = "
|
|
|
|
baz/bar/test
|
|
|
|
test
|
|
|
|
";
|
|
|
|
eqnice!(sort_lines(expected), sort_lines(&cmd.stdout()));
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/45
|
|
|
|
rgtest!(f45_precedence_with_others, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create(".not-an-ignore", "*.log");
|
|
|
|
dir.create(".ignore", "!imp.log");
|
|
|
|
dir.create("imp.log", "test");
|
|
|
|
dir.create("wat.log", "test");
|
|
|
|
|
|
|
|
cmd.arg("--ignore-file").arg(".not-an-ignore").arg("test");
|
|
|
|
eqnice!("imp.log:test\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/45
|
|
|
|
rgtest!(f45_precedence_internal, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create(".not-an-ignore1", "*.log");
|
|
|
|
dir.create(".not-an-ignore2", "!imp.log");
|
|
|
|
dir.create("imp.log", "test");
|
|
|
|
dir.create("wat.log", "test");
|
|
|
|
|
|
|
|
cmd.args(&[
|
2020-02-18 01:08:47 +02:00
|
|
|
"--ignore-file",
|
|
|
|
".not-an-ignore1",
|
|
|
|
"--ignore-file",
|
|
|
|
".not-an-ignore2",
|
2018-08-07 02:11:58 +02:00
|
|
|
"test",
|
|
|
|
]);
|
|
|
|
eqnice!("imp.log:test\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/68
|
|
|
|
rgtest!(f68_no_ignore_vcs, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create_dir(".git");
|
|
|
|
dir.create(".gitignore", "foo");
|
|
|
|
dir.create(".ignore", "bar");
|
|
|
|
dir.create("foo", "test");
|
|
|
|
dir.create("bar", "test");
|
|
|
|
|
|
|
|
eqnice!("foo:test\n", cmd.arg("--no-ignore-vcs").arg("test").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/70
|
|
|
|
rgtest!(f70_smart_case, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
sherlock:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
sherlock:be, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.arg("-S").arg("sherlock").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/89
|
|
|
|
rgtest!(f89_files_with_matches, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
cmd.arg("--null").arg("--files-with-matches").arg("Sherlock");
|
|
|
|
eqnice!("sherlock\x00", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/89
|
|
|
|
rgtest!(f89_files_without_match, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
dir.create("file.py", "foo");
|
|
|
|
|
|
|
|
cmd.arg("--null").arg("--files-without-match").arg("Sherlock");
|
|
|
|
eqnice!("file.py\x00", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/89
|
|
|
|
rgtest!(f89_count, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
cmd.arg("--null").arg("--count").arg("Sherlock");
|
|
|
|
eqnice!("sherlock\x002\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/89
|
|
|
|
rgtest!(f89_files, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
eqnice!("sherlock\x00", cmd.arg("--null").arg("--files").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/89
|
|
|
|
rgtest!(f89_match, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
sherlock\x00For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
sherlock\x00Holmeses, success in the province of detective work must always
|
|
|
|
sherlock\x00be, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
sherlock\x00can extract a clew from a wisp of straw or a flake of cigar ash;
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.arg("--null").arg("-C1").arg("Sherlock").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/109
|
|
|
|
rgtest!(f109_max_depth, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create_dir("one");
|
|
|
|
dir.create("one/pass", "far");
|
|
|
|
dir.create_dir("one/too");
|
|
|
|
dir.create("one/too/many", "far");
|
|
|
|
|
|
|
|
cmd.arg("--maxdepth").arg("2").arg("far");
|
|
|
|
eqnice!("one/pass:far\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/124
|
|
|
|
rgtest!(f109_case_sensitive_part1, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "tEsT");
|
|
|
|
|
|
|
|
cmd.arg("--smart-case").arg("--case-sensitive").arg("test").assert_err();
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/124
|
|
|
|
rgtest!(f109_case_sensitive_part2, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "tEsT");
|
|
|
|
cmd.arg("--ignore-case").arg("--case-sensitive").arg("test").assert_err();
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/129
|
|
|
|
rgtest!(f129_matches, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "test\ntest abcdefghijklmnopqrstuvwxyz test");
|
|
|
|
|
|
|
|
let expected = "foo:test\nfoo:[Omitted long matching line]\n";
|
|
|
|
eqnice!(expected, cmd.arg("-M26").arg("test").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/129
|
|
|
|
rgtest!(f129_context, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "test\nabcdefghijklmnopqrstuvwxyz");
|
|
|
|
|
|
|
|
let expected = "foo:test\nfoo-[Omitted long context line]\n";
|
|
|
|
eqnice!(expected, cmd.arg("-M20").arg("-C1").arg("test").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/129
|
|
|
|
rgtest!(f129_replace, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "test\ntest abcdefghijklmnopqrstuvwxyz test");
|
|
|
|
|
|
|
|
let expected = "foo:foo\nfoo:[Omitted long line with 2 matches]\n";
|
|
|
|
eqnice!(expected, cmd.arg("-M26").arg("-rfoo").arg("test").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/159
|
|
|
|
rgtest!(f159_max_count, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "test\ntest");
|
|
|
|
|
|
|
|
eqnice!("foo:test\n", cmd.arg("-m1").arg("test").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/159
|
|
|
|
rgtest!(f159_max_count_zero, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "test\ntest");
|
|
|
|
|
|
|
|
cmd.arg("-m0").arg("test").assert_err();
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/196
|
|
|
|
rgtest!(f196_persistent_config, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
cmd.arg("sherlock").arg("sherlock");
|
|
|
|
|
|
|
|
// Make sure we get no matches by default.
|
|
|
|
cmd.assert_err();
|
|
|
|
|
|
|
|
// Now add our config file, and make sure it impacts ripgrep.
|
|
|
|
dir.create(".ripgreprc", "--ignore-case");
|
|
|
|
cmd.cmd().env("RIPGREP_CONFIG_PATH", ".ripgreprc");
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
be, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/243
|
|
|
|
rgtest!(f243_column_line, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "test");
|
|
|
|
|
|
|
|
eqnice!("foo:1:1:test\n", cmd.arg("--column").arg("test").stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/263
|
|
|
|
rgtest!(f263_sort_files, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "test");
|
|
|
|
dir.create("abc", "test");
|
|
|
|
dir.create("zoo", "test");
|
|
|
|
dir.create("bar", "test");
|
|
|
|
|
|
|
|
let expected = "abc:test\nbar:test\nfoo:test\nzoo:test\n";
|
|
|
|
eqnice!(expected, cmd.arg("--sort-files").arg("test").stdout());
|
|
|
|
});
|
|
|
|
|
2023-11-28 23:14:22 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/263
|
|
|
|
rgtest!(f263_sort_files_reverse, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("foo", "test");
|
|
|
|
dir.create("abc", "test");
|
|
|
|
dir.create("zoo", "test");
|
|
|
|
dir.create("bar", "test");
|
|
|
|
|
|
|
|
let expected = "zoo:test\nfoo:test\nbar:test\nabc:test\n";
|
|
|
|
eqnice!(expected, cmd.arg("--sortr=path").arg("test").stdout());
|
|
|
|
});
|
|
|
|
|
2018-08-07 02:11:58 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/275
|
|
|
|
rgtest!(f275_pathsep, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create_dir("foo");
|
|
|
|
dir.create("foo/bar", "test");
|
|
|
|
|
|
|
|
cmd.arg("test").arg("--path-separator").arg("Z");
|
|
|
|
eqnice!("fooZbar:test\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/362
|
|
|
|
rgtest!(f362_dfa_size_limit, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
// This should fall back to the nfa engine but should still produce the
|
|
|
|
// expected result.
|
|
|
|
cmd.arg("--dfa-size-limit").arg("10").arg(r"For\s").arg("sherlock");
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/362
|
|
|
|
rgtest!(f362_exceeds_regex_size_limit, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
// --regex-size-limit doesn't apply to PCRE2.
|
|
|
|
if dir.is_pcre2() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cmd.arg("--regex-size-limit").arg("10K").arg(r"[0-9]\w+").assert_err();
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/362
|
|
|
|
#[cfg(target_pointer_width = "32")]
|
2020-02-18 01:08:47 +02:00
|
|
|
rgtest!(
|
|
|
|
f362_u64_to_narrow_usize_overflow,
|
|
|
|
|dir: Dir, mut cmd: TestCommand| {
|
|
|
|
// --dfa-size-limit doesn't apply to PCRE2.
|
|
|
|
if dir.is_pcre2() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dir.create_size("foo", 1000000);
|
|
|
|
|
|
|
|
// 2^35 * 2^20 is ok for u64, but not for usize
|
|
|
|
cmd.arg("--dfa-size-limit").arg("34359738368M").arg("--files");
|
|
|
|
cmd.assert_err();
|
2018-08-07 02:11:58 +02:00
|
|
|
}
|
2020-02-18 01:08:47 +02:00
|
|
|
);
|
2018-08-07 02:11:58 +02:00
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/411
|
2020-02-18 01:08:47 +02:00
|
|
|
rgtest!(
|
|
|
|
f411_single_threaded_search_stats,
|
|
|
|
|dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
cli: replace clap with lexopt and supporting code
ripgrep began it's life with docopt for argument parsing. Then it moved
to Clap and stayed there for a number of years. Clap has served ripgrep
well, and it probably could continue to serve ripgrep well, but I ended
up deciding to move off of it.
Why?
The first time I had the thought of moving off of Clap was during the
2->3->4 transition. I thought the 3.x and 4.x releases were great, but
for me, it ended up moving a little too quickly. Since the release of
4.x was telegraphed around when 3.x came out, I decided to just hold off
and wait to migrate to 4.x instead of doing a 3.x migration followed
shortly by another 4.x migration. Of course, I just never ended up doing
the migration at all. I never got around to it and there just wasn't a
compelling reason for me to upgrade. While I never investigated it, I
saw an upgrade as a non-trivial amount of work in part because I didn't
encapsulate the usage of Clap enough.
The above is just what got me started thinking about it. It wasn't
enough to get me to move off of it on its own. What ended up pushing me
over the edge was a combination of factors:
* As mentioned above, I didn't want to run on the migration treadmill.
This has proven to not be much of an issue, but at the time of the
2->3->4 releases, I didn't know how long Clap 4.x would be out before a
5.x would come out.
* The release of lexopt[1] caught my eye. IMO, that crate demonstrates
exactly how something new can arrive on the scene and just thoroughly
solve a problem minimalistically. It has the docs, the reasoning, the
simple API, the tests and good judgment. It gets all the weird corner
cases right that Clap also gets right (and is part of why I was
originally attracted to Clap).
* I have an overall desire to reduce the size of my dependency tree. In
part because a smaller dependency tree tends to correlate with better
compile times, but also in part because it reduces my reliance and trust
on others. It lets me be the "master" of ripgrep's destiny by reducing
the amount of behavior that is the result of someone else's decision
(whether good or bad).
* I perceived that Clap solves a more general problem than what I
actually need solved. Despite the vast number of flags that ripgrep has,
its requirements are actually pretty simple. We just need simple
switches and flags that support one value. No multi-value flags. No
sub-commands. And probably a lot of other functionality that Clap has
that makes it so flexible for so many different use cases. (I'm being
hand wavy on the last point.)
With all that said, perhaps most importantly, the future of ripgrep
possibly demands a more flexible CLI argument parser. In today's world,
I would really like, for example, flags like `--type` and `--type-not`
to be able to accumulate their repeated values into a single sequence
while respecting the order they appear on the CLI. For example, prior
to this migration, `rg regex-automata -Tlock -ttoml` would not return
results in `Cargo.lock` in this repository because the `-Tlock` always
took priority even though `-ttoml` appeared after it. But with this
migration, `-ttoml` now correctly overrides `-Tlock`. We would like to
do similar things for `-g/--glob` and `--iglob` and potentially even
now introduce a `-G/--glob-not` flag instead of requiring users to use
`!` to negate a glob. (Which I had done originally to work-around this
problem.) And some day, I'd like to add some kind of boolean matching to
ripgrep perhaps similar to how `git grep` does it. (Although I haven't
thought too carefully on a design yet.) In order to do that, I perceive
it would be difficult to implement correctly in Clap.
I believe that this last point is possible to implement correctly in
Clap 2.x, although it is awkward to do so. I have not looked closely
enough at the Clap 4.x API to know whether it's still possible there. In
any case, these were enough reasons to move off of Clap and own more of
the argument parsing process myself.
This did require a few things:
* I had to write my own logic for how arguments are combined into one
single state object. Of course, I wanted this. This was part of the
upside. But it's still code I didn't have to write for Clap.
* I had to write my own shell completion generator.
* I had to write my own `-h/--help` output generator.
* I also had to write my own man page generator. Well, I had to do this
with Clap 2.x too, although my understanding is that Clap 4.x supports
this. With that said, without having tried it, my guess is that I
probably wouldn't have liked the output it generated because I
ultimately had to write most of the roff by hand myself to get the man
page I wanted. (This also had the benefit of dropping the build
dependency on asciidoc/asciidoctor.)
While this is definitely a fair bit of extra work, it overall only cost
me a couple days. IMO, that's a good trade off given that this code is
unlikely to change again in any substantial way. And it should also
allow for more flexible semantics going forward.
Fixes #884, Fixes #1648, Fixes #1701, Fixes #1814, Fixes #1966
[1]: https://docs.rs/lexopt/0.3.0/lexopt/index.html
2023-10-17 00:05:39 +02:00
|
|
|
let lines = cmd.arg("-j1").arg("--stats").arg("Sherlock").stdout();
|
|
|
|
assert!(lines.contains("Sherlock"));
|
2020-02-18 01:08:47 +02:00
|
|
|
assert!(lines.contains("2 matched lines"));
|
|
|
|
assert!(lines.contains("1 files contained matches"));
|
|
|
|
assert!(lines.contains("1 files searched"));
|
|
|
|
assert!(lines.contains("seconds"));
|
|
|
|
}
|
|
|
|
);
|
2018-08-07 02:11:58 +02:00
|
|
|
|
|
|
|
rgtest!(f411_parallel_search_stats, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock_1", SHERLOCK);
|
|
|
|
dir.create("sherlock_2", SHERLOCK);
|
|
|
|
|
cli: replace clap with lexopt and supporting code
ripgrep began it's life with docopt for argument parsing. Then it moved
to Clap and stayed there for a number of years. Clap has served ripgrep
well, and it probably could continue to serve ripgrep well, but I ended
up deciding to move off of it.
Why?
The first time I had the thought of moving off of Clap was during the
2->3->4 transition. I thought the 3.x and 4.x releases were great, but
for me, it ended up moving a little too quickly. Since the release of
4.x was telegraphed around when 3.x came out, I decided to just hold off
and wait to migrate to 4.x instead of doing a 3.x migration followed
shortly by another 4.x migration. Of course, I just never ended up doing
the migration at all. I never got around to it and there just wasn't a
compelling reason for me to upgrade. While I never investigated it, I
saw an upgrade as a non-trivial amount of work in part because I didn't
encapsulate the usage of Clap enough.
The above is just what got me started thinking about it. It wasn't
enough to get me to move off of it on its own. What ended up pushing me
over the edge was a combination of factors:
* As mentioned above, I didn't want to run on the migration treadmill.
This has proven to not be much of an issue, but at the time of the
2->3->4 releases, I didn't know how long Clap 4.x would be out before a
5.x would come out.
* The release of lexopt[1] caught my eye. IMO, that crate demonstrates
exactly how something new can arrive on the scene and just thoroughly
solve a problem minimalistically. It has the docs, the reasoning, the
simple API, the tests and good judgment. It gets all the weird corner
cases right that Clap also gets right (and is part of why I was
originally attracted to Clap).
* I have an overall desire to reduce the size of my dependency tree. In
part because a smaller dependency tree tends to correlate with better
compile times, but also in part because it reduces my reliance and trust
on others. It lets me be the "master" of ripgrep's destiny by reducing
the amount of behavior that is the result of someone else's decision
(whether good or bad).
* I perceived that Clap solves a more general problem than what I
actually need solved. Despite the vast number of flags that ripgrep has,
its requirements are actually pretty simple. We just need simple
switches and flags that support one value. No multi-value flags. No
sub-commands. And probably a lot of other functionality that Clap has
that makes it so flexible for so many different use cases. (I'm being
hand wavy on the last point.)
With all that said, perhaps most importantly, the future of ripgrep
possibly demands a more flexible CLI argument parser. In today's world,
I would really like, for example, flags like `--type` and `--type-not`
to be able to accumulate their repeated values into a single sequence
while respecting the order they appear on the CLI. For example, prior
to this migration, `rg regex-automata -Tlock -ttoml` would not return
results in `Cargo.lock` in this repository because the `-Tlock` always
took priority even though `-ttoml` appeared after it. But with this
migration, `-ttoml` now correctly overrides `-Tlock`. We would like to
do similar things for `-g/--glob` and `--iglob` and potentially even
now introduce a `-G/--glob-not` flag instead of requiring users to use
`!` to negate a glob. (Which I had done originally to work-around this
problem.) And some day, I'd like to add some kind of boolean matching to
ripgrep perhaps similar to how `git grep` does it. (Although I haven't
thought too carefully on a design yet.) In order to do that, I perceive
it would be difficult to implement correctly in Clap.
I believe that this last point is possible to implement correctly in
Clap 2.x, although it is awkward to do so. I have not looked closely
enough at the Clap 4.x API to know whether it's still possible there. In
any case, these were enough reasons to move off of Clap and own more of
the argument parsing process myself.
This did require a few things:
* I had to write my own logic for how arguments are combined into one
single state object. Of course, I wanted this. This was part of the
upside. But it's still code I didn't have to write for Clap.
* I had to write my own shell completion generator.
* I had to write my own `-h/--help` output generator.
* I also had to write my own man page generator. Well, I had to do this
with Clap 2.x too, although my understanding is that Clap 4.x supports
this. With that said, without having tried it, my guess is that I
probably wouldn't have liked the output it generated because I
ultimately had to write most of the roff by hand myself to get the man
page I wanted. (This also had the benefit of dropping the build
dependency on asciidoc/asciidoctor.)
While this is definitely a fair bit of extra work, it overall only cost
me a couple days. IMO, that's a good trade off given that this code is
unlikely to change again in any substantial way. And it should also
allow for more flexible semantics going forward.
Fixes #884, Fixes #1648, Fixes #1701, Fixes #1814, Fixes #1966
[1]: https://docs.rs/lexopt/0.3.0/lexopt/index.html
2023-10-17 00:05:39 +02:00
|
|
|
let lines = cmd.arg("-j2").arg("--stats").arg("Sherlock").stdout();
|
|
|
|
assert!(lines.contains("4 matched lines"));
|
|
|
|
assert!(lines.contains("2 files contained matches"));
|
|
|
|
assert!(lines.contains("2 files searched"));
|
|
|
|
assert!(lines.contains("seconds"));
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(
|
|
|
|
f411_single_threaded_quiet_search_stats,
|
|
|
|
|dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
let lines = cmd
|
|
|
|
.arg("--quiet")
|
|
|
|
.arg("-j1")
|
|
|
|
.arg("--stats")
|
|
|
|
.arg("Sherlock")
|
|
|
|
.stdout();
|
|
|
|
assert!(!lines.contains("Sherlock"));
|
|
|
|
assert!(lines.contains("2 matched lines"));
|
|
|
|
assert!(lines.contains("1 files contained matches"));
|
|
|
|
assert!(lines.contains("1 files searched"));
|
|
|
|
assert!(lines.contains("seconds"));
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
rgtest!(f411_parallel_quiet_search_stats, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock_1", SHERLOCK);
|
|
|
|
dir.create("sherlock_2", SHERLOCK);
|
|
|
|
|
|
|
|
let lines =
|
|
|
|
cmd.arg("-j2").arg("--quiet").arg("--stats").arg("Sherlock").stdout();
|
|
|
|
assert!(!lines.contains("Sherlock"));
|
2018-08-07 02:11:58 +02:00
|
|
|
assert!(lines.contains("4 matched lines"));
|
|
|
|
assert!(lines.contains("2 files contained matches"));
|
|
|
|
assert!(lines.contains("2 files searched"));
|
|
|
|
assert!(lines.contains("seconds"));
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/416
|
|
|
|
rgtest!(f416_crlf, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK_CRLF);
|
|
|
|
cmd.arg("--crlf").arg(r"Sherlock$").arg("sherlock");
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
For the Doctor Watsons of this world, as opposed to the Sherlock\r
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/416
|
|
|
|
rgtest!(f416_crlf_multiline, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK_CRLF);
|
|
|
|
cmd.arg("--crlf").arg("-U").arg(r"Sherlock$").arg("sherlock");
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
For the Doctor Watsons of this world, as opposed to the Sherlock\r
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/416
|
|
|
|
rgtest!(f416_crlf_only_matching, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK_CRLF);
|
|
|
|
cmd.arg("--crlf").arg("-o").arg(r"Sherlock$").arg("sherlock");
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
Sherlock\r
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/419
|
|
|
|
rgtest!(f419_zero_as_shortcut_for_null, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
cmd.arg("-0").arg("--count").arg("Sherlock");
|
|
|
|
eqnice!("sherlock\x002\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(f740_passthru, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("file", "\nfoo\nbar\nfoobar\n\nbaz\n");
|
|
|
|
dir.create("patterns", "foo\nbar\n");
|
|
|
|
|
|
|
|
// We can't assume that the way colour specs are translated to ANSI
|
|
|
|
// sequences will remain stable, and --replace doesn't currently work with
|
|
|
|
// pass-through, so for now we don't actually test the match sub-strings
|
|
|
|
let common_args = &["-n", "--passthru"];
|
|
|
|
let foo_expected = "\
|
|
|
|
1-
|
|
|
|
2:foo
|
|
|
|
3-bar
|
|
|
|
4:foobar
|
|
|
|
5-
|
|
|
|
6-baz
|
|
|
|
";
|
|
|
|
|
|
|
|
// With single pattern
|
|
|
|
cmd.args(common_args).arg("foo").arg("file");
|
|
|
|
eqnice!(foo_expected, cmd.stdout());
|
|
|
|
|
|
|
|
let foo_bar_expected = "\
|
|
|
|
1-
|
|
|
|
2:foo
|
|
|
|
3:bar
|
|
|
|
4:foobar
|
|
|
|
5-
|
|
|
|
6-baz
|
|
|
|
";
|
|
|
|
|
|
|
|
// With multiple -e patterns
|
|
|
|
let mut cmd = dir.command();
|
|
|
|
cmd.args(common_args);
|
|
|
|
cmd.args(&["-e", "foo", "-e", "bar", "file"]);
|
|
|
|
eqnice!(foo_bar_expected, cmd.stdout());
|
|
|
|
|
|
|
|
// With multiple -f patterns
|
|
|
|
let mut cmd = dir.command();
|
|
|
|
cmd.args(common_args);
|
|
|
|
cmd.args(&["-f", "patterns", "file"]);
|
|
|
|
eqnice!(foo_bar_expected, cmd.stdout());
|
|
|
|
|
|
|
|
// -c should override
|
|
|
|
let mut cmd = dir.command();
|
|
|
|
cmd.args(common_args);
|
|
|
|
cmd.args(&["-c", "foo", "file"]);
|
|
|
|
eqnice!("2\n", cmd.stdout());
|
|
|
|
|
|
|
|
let only_foo_expected = "\
|
|
|
|
1-
|
|
|
|
2:foo
|
|
|
|
3-bar
|
|
|
|
4:foo
|
|
|
|
5-
|
|
|
|
6-baz
|
|
|
|
";
|
|
|
|
|
|
|
|
// -o should work
|
|
|
|
let mut cmd = dir.command();
|
|
|
|
cmd.args(common_args);
|
|
|
|
cmd.args(&["-o", "foo", "file"]);
|
|
|
|
eqnice!(only_foo_expected, cmd.stdout());
|
|
|
|
|
|
|
|
let replace_foo_expected = "\
|
|
|
|
1-
|
|
|
|
2:wat
|
|
|
|
3-bar
|
|
|
|
4:watbar
|
|
|
|
5-
|
|
|
|
6-baz
|
|
|
|
";
|
|
|
|
|
|
|
|
// -r should work
|
|
|
|
let mut cmd = dir.command();
|
|
|
|
cmd.args(common_args);
|
|
|
|
cmd.args(&["-r", "wat", "foo", "file"]);
|
|
|
|
eqnice!(replace_foo_expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/948
|
|
|
|
rgtest!(f948_exit_code_match, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
cmd.arg(".");
|
|
|
|
|
|
|
|
cmd.assert_exit_code(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/948
|
|
|
|
rgtest!(f948_exit_code_no_match, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
cmd.arg("NADA");
|
|
|
|
|
|
|
|
cmd.assert_exit_code(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/948
|
|
|
|
rgtest!(f948_exit_code_error, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
cmd.arg("*");
|
|
|
|
|
|
|
|
cmd.assert_exit_code(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/917
|
|
|
|
rgtest!(f917_trim, |dir: Dir, mut cmd: TestCommand| {
|
2020-02-18 01:08:47 +02:00
|
|
|
const SHERLOCK: &'static str = "\
|
2018-08-07 02:11:58 +02:00
|
|
|
zzz
|
|
|
|
For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
Holmeses, success in the province of detective work must always
|
|
|
|
\tbe, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
can extract a clew from a wisp of straw or a flake of cigar ash;
|
|
|
|
but Doctor Watson has to have it taken out for him and dusted,
|
|
|
|
and exhibited clearly, with a label attached.
|
|
|
|
";
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
2020-02-18 01:08:47 +02:00
|
|
|
cmd.args(&["-n", "-B1", "-A2", "--trim", "Holmeses", "sherlock"]);
|
2018-08-07 02:11:58 +02:00
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
2-For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
3:Holmeses, success in the province of detective work must always
|
|
|
|
4-be, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
5-can extract a clew from a wisp of straw or a flake of cigar ash;
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/917
|
|
|
|
//
|
|
|
|
// This is like f917_trim, except this tests that trimming occurs even when the
|
|
|
|
// whitespace is part of a match.
|
|
|
|
rgtest!(f917_trim_match, |dir: Dir, mut cmd: TestCommand| {
|
2020-02-18 01:08:47 +02:00
|
|
|
const SHERLOCK: &'static str = "\
|
2018-08-07 02:11:58 +02:00
|
|
|
zzz
|
|
|
|
For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
Holmeses, success in the province of detective work must always
|
|
|
|
\tbe, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
can extract a clew from a wisp of straw or a flake of cigar ash;
|
|
|
|
but Doctor Watson has to have it taken out for him and dusted,
|
|
|
|
and exhibited clearly, with a label attached.
|
|
|
|
";
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
2020-02-18 01:08:47 +02:00
|
|
|
cmd.args(&["-n", "-B1", "-A2", "--trim", r"\s+Holmeses", "sherlock"]);
|
2018-08-07 02:11:58 +02:00
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
2-For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
3:Holmeses, success in the province of detective work must always
|
|
|
|
4-be, to a very large extent, the result of luck. Sherlock Holmes
|
|
|
|
5-can extract a clew from a wisp of straw or a flake of cigar ash;
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
2023-11-22 23:04:26 +02:00
|
|
|
rgtest!(f917_trim_multi_standard, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
const HAYSTACK: &str = " 0123456789abcdefghijklmnopqrstuvwxyz";
|
|
|
|
dir.create("haystack", HAYSTACK);
|
|
|
|
cmd.args(&["--multiline", "--trim", "-r$0", "--no-filename", r"a\n?bc"]);
|
|
|
|
|
|
|
|
let expected = "0123456789abcdefghijklmnopqrstuvwxyz\n";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(f917_trim_max_columns_normal, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
const HAYSTACK: &str = " 0123456789abcdefghijklmnopqrstuvwxyz";
|
|
|
|
dir.create("haystack", HAYSTACK);
|
|
|
|
cmd.args(&[
|
|
|
|
"--trim",
|
|
|
|
"--max-columns-preview",
|
|
|
|
"-M8",
|
|
|
|
"--no-filename",
|
|
|
|
"abc",
|
|
|
|
]);
|
|
|
|
|
|
|
|
let expected = "01234567 [... omitted end of long line]\n";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(f917_trim_max_columns_matches, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
const HAYSTACK: &str = " 0123456789abcdefghijklmnopqrstuvwxyz";
|
|
|
|
dir.create("haystack", HAYSTACK);
|
|
|
|
cmd.args(&[
|
|
|
|
"--trim",
|
|
|
|
"--max-columns-preview",
|
|
|
|
"-M8",
|
|
|
|
"--color=always",
|
|
|
|
"--colors=path:none",
|
|
|
|
"--no-filename",
|
|
|
|
"abc",
|
|
|
|
]);
|
|
|
|
|
|
|
|
let expected = "01234567 [... 1 more match]\n";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(
|
|
|
|
f917_trim_max_columns_multi_standard,
|
|
|
|
|dir: Dir, mut cmd: TestCommand| {
|
|
|
|
const HAYSTACK: &str = " 0123456789abcdefghijklmnopqrstuvwxyz";
|
|
|
|
dir.create("haystack", HAYSTACK);
|
|
|
|
cmd.args(&[
|
|
|
|
"--multiline",
|
|
|
|
"--trim",
|
|
|
|
"--max-columns-preview",
|
|
|
|
"-M8",
|
|
|
|
// Force the "slow" printing path without actually
|
|
|
|
// putting colors in the output.
|
|
|
|
"--color=always",
|
|
|
|
"--colors=path:none",
|
|
|
|
"--no-filename",
|
|
|
|
r"a\n?bc",
|
|
|
|
]);
|
|
|
|
|
|
|
|
let expected = "01234567 [... 1 more match]\n";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
rgtest!(
|
|
|
|
f917_trim_max_columns_multi_only_matching,
|
|
|
|
|dir: Dir, mut cmd: TestCommand| {
|
|
|
|
const HAYSTACK: &str = " 0123456789abcdefghijklmnopqrstuvwxyz";
|
|
|
|
dir.create("haystack", HAYSTACK);
|
|
|
|
cmd.args(&[
|
|
|
|
"--multiline",
|
|
|
|
"--trim",
|
|
|
|
"--max-columns-preview",
|
|
|
|
"-M8",
|
|
|
|
"--only-matching",
|
|
|
|
"--no-filename",
|
|
|
|
r".*a\n?bc.*",
|
|
|
|
]);
|
|
|
|
|
|
|
|
let expected = "01234567 [... 0 more matches]\n";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
rgtest!(
|
|
|
|
f917_trim_max_columns_multi_per_match,
|
|
|
|
|dir: Dir, mut cmd: TestCommand| {
|
|
|
|
const HAYSTACK: &str = " 0123456789abcdefghijklmnopqrstuvwxyz";
|
|
|
|
dir.create("haystack", HAYSTACK);
|
|
|
|
cmd.args(&[
|
|
|
|
"--multiline",
|
|
|
|
"--trim",
|
|
|
|
"--max-columns-preview",
|
|
|
|
"-M8",
|
|
|
|
"--vimgrep",
|
|
|
|
"--no-filename",
|
|
|
|
r".*a\n?bc.*",
|
|
|
|
]);
|
|
|
|
|
|
|
|
let expected = "1:1:01234567 [... 0 more matches]\n";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2018-08-07 02:11:58 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/993
|
|
|
|
rgtest!(f993_null_data, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "foo\x00bar\x00\x00\x00baz\x00");
|
|
|
|
cmd.arg("--null-data").arg(r".+").arg("test");
|
|
|
|
|
|
|
|
// If we just used -a instead of --null-data, then the result would include
|
|
|
|
// all NUL bytes.
|
|
|
|
let expected = "foo\x00bar\x00baz\x00";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
2019-01-26 20:40:12 +02:00
|
|
|
|
2019-04-14 00:35:24 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1078
|
|
|
|
//
|
|
|
|
// N.B. There are many more tests in the grep-printer crate.
|
2019-04-15 12:51:51 +02:00
|
|
|
rgtest!(f1078_max_columns_preview1, |dir: Dir, mut cmd: TestCommand| {
|
2019-04-14 00:35:24 +02:00
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
cmd.args(&[
|
2020-02-18 01:08:47 +02:00
|
|
|
"-M46",
|
|
|
|
"--max-columns-preview",
|
2019-04-14 00:35:24 +02:00
|
|
|
"exhibited|dusted|has to have it",
|
|
|
|
]);
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
sherlock:but Doctor Watson has to have it taken out for [... omitted end of long line]
|
|
|
|
sherlock:and exhibited clearly, with a label attached.
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
2019-04-15 12:51:51 +02:00
|
|
|
rgtest!(f1078_max_columns_preview2, |dir: Dir, mut cmd: TestCommand| {
|
2019-04-14 00:35:24 +02:00
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
cmd.args(&[
|
2020-02-18 01:08:47 +02:00
|
|
|
"-M43",
|
|
|
|
"--max-columns-preview",
|
2019-04-14 00:35:24 +02:00
|
|
|
// Doing a replacement forces ripgrep to show the number of remaining
|
|
|
|
// matches. Normally, this happens by default when printing a tty with
|
|
|
|
// colors.
|
|
|
|
"-rxxx",
|
|
|
|
"exhibited|dusted|has to have it",
|
|
|
|
]);
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
sherlock:but Doctor Watson xxx taken out for him and [... 1 more match]
|
|
|
|
sherlock:and xxx clearly, with a label attached.
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
|
|
|
|
2019-01-26 20:40:12 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1138
|
|
|
|
rgtest!(f1138_no_ignore_dot, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create_dir(".git");
|
|
|
|
dir.create(".gitignore", "foo");
|
|
|
|
dir.create(".ignore", "bar");
|
|
|
|
dir.create(".fzf-ignore", "quux");
|
|
|
|
dir.create("foo", "");
|
|
|
|
dir.create("bar", "");
|
|
|
|
dir.create("quux", "");
|
|
|
|
|
|
|
|
cmd.arg("--sort").arg("path").arg("--files");
|
|
|
|
eqnice!("quux\n", cmd.stdout());
|
|
|
|
eqnice!("bar\nquux\n", cmd.arg("--no-ignore-dot").stdout());
|
|
|
|
eqnice!("bar\n", cmd.arg("--ignore-file").arg(".fzf-ignore").stdout());
|
|
|
|
});
|
2019-03-04 18:18:45 +02:00
|
|
|
|
2019-04-14 23:39:37 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1155
|
|
|
|
rgtest!(f1155_auto_hybrid_regex, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
// No sense in testing a hybrid regex engine with only one engine!
|
|
|
|
if !dir.is_pcre2() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
cmd.arg("--no-pcre2").arg("--auto-hybrid-regex").arg(r"(?<=the )Sherlock");
|
|
|
|
|
|
|
|
let expected = "\
|
|
|
|
sherlock:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
";
|
|
|
|
eqnice!(expected, cmd.stdout());
|
|
|
|
});
|
2019-03-04 18:18:45 +02:00
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1207
|
|
|
|
//
|
|
|
|
// Tests if without encoding 'none' flag null bytes are consumed by automatic
|
|
|
|
// encoding detection.
|
|
|
|
rgtest!(f1207_auto_encoding, |dir: Dir, mut cmd: TestCommand| {
|
2020-02-18 01:08:47 +02:00
|
|
|
dir.create_bytes("foo", b"\xFF\xFE\x00\x62");
|
2019-03-04 18:18:45 +02:00
|
|
|
cmd.arg("-a").arg("\\x00").arg("foo");
|
|
|
|
cmd.assert_exit_code(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1207
|
|
|
|
//
|
|
|
|
// Tests if encoding 'none' flag does treat file as raw bytes
|
|
|
|
rgtest!(f1207_ignore_encoding, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
// PCRE2 chokes on this test because it can't search invalid non-UTF-8
|
|
|
|
// and the point of this test is to search raw UTF-16.
|
|
|
|
if dir.is_pcre2() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-02-18 01:08:47 +02:00
|
|
|
dir.create_bytes("foo", b"\xFF\xFE\x00\x62");
|
2019-03-04 18:18:45 +02:00
|
|
|
cmd.arg("--encoding").arg("none").arg("-a").arg("\\x00").arg("foo");
|
|
|
|
eqnice!("\u{FFFD}\u{FFFD}\x00b\n", cmd.stdout());
|
|
|
|
});
|
2019-09-26 13:50:40 +02:00
|
|
|
|
2020-02-17 21:43:22 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1414
|
|
|
|
rgtest!(f1414_no_require_git, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create(".gitignore", "foo");
|
|
|
|
dir.create("foo", "");
|
|
|
|
dir.create("bar", "");
|
|
|
|
|
2020-02-18 01:08:47 +02:00
|
|
|
let stdout = cmd.args(&["--sort", "path", "--files"]).stdout();
|
2020-02-17 21:43:22 +02:00
|
|
|
eqnice!("bar\nfoo\n", stdout);
|
|
|
|
|
2020-02-18 01:08:47 +02:00
|
|
|
let stdout =
|
|
|
|
cmd.args(&["--sort", "path", "--files", "--no-require-git"]).stdout();
|
2020-02-17 21:43:22 +02:00
|
|
|
eqnice!("bar\n", stdout);
|
|
|
|
|
2020-02-18 01:08:47 +02:00
|
|
|
let stdout = cmd
|
|
|
|
.args(&[
|
|
|
|
"--sort",
|
|
|
|
"path",
|
|
|
|
"--files",
|
|
|
|
"--no-require-git",
|
|
|
|
"--require-git",
|
|
|
|
])
|
|
|
|
.stdout();
|
2020-02-17 21:43:22 +02:00
|
|
|
eqnice!("bar\nfoo\n", stdout);
|
|
|
|
});
|
|
|
|
|
2019-11-07 02:23:57 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/pull/1420
|
2020-03-15 17:04:47 +02:00
|
|
|
rgtest!(f1420_no_ignore_exclude, |dir: Dir, mut cmd: TestCommand| {
|
2019-11-07 02:23:57 +02:00
|
|
|
dir.create_dir(".git/info");
|
|
|
|
dir.create(".git/info/exclude", "foo");
|
|
|
|
dir.create("bar", "");
|
|
|
|
dir.create("foo", "");
|
|
|
|
|
|
|
|
cmd.arg("--sort").arg("path").arg("--files");
|
|
|
|
eqnice!("bar\n", cmd.stdout());
|
|
|
|
eqnice!("bar\nfoo\n", cmd.arg("--no-ignore-exclude").stdout());
|
|
|
|
});
|
|
|
|
|
2020-03-15 17:04:47 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/pull/1466
|
|
|
|
rgtest!(f1466_no_ignore_files, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create(".myignore", "bar");
|
|
|
|
dir.create("bar", "");
|
|
|
|
dir.create("foo", "");
|
|
|
|
|
|
|
|
// Test that --no-ignore-files disables --ignore-file.
|
|
|
|
// And that --ignore-files overrides --no-ignore-files.
|
|
|
|
cmd.arg("--sort").arg("path").arg("--files");
|
|
|
|
eqnice!("bar\nfoo\n", cmd.stdout());
|
|
|
|
eqnice!("foo\n", cmd.arg("--ignore-file").arg(".myignore").stdout());
|
|
|
|
eqnice!("bar\nfoo\n", cmd.arg("--no-ignore-files").stdout());
|
|
|
|
eqnice!("foo\n", cmd.arg("--ignore-files").stdout());
|
|
|
|
|
|
|
|
// Test that the -u flag does not disable --ignore-file.
|
|
|
|
let mut cmd = dir.command();
|
|
|
|
cmd.arg("--sort").arg("path").arg("--files");
|
|
|
|
cmd.arg("--ignore-file").arg(".myignore");
|
|
|
|
eqnice!("foo\n", cmd.stdout());
|
|
|
|
eqnice!("foo\n", cmd.arg("-u").stdout());
|
|
|
|
});
|
|
|
|
|
2022-11-28 06:36:15 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/pull/2361
|
|
|
|
rgtest!(f2361_sort_nested_files, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
use std::{thread::sleep, time::Duration};
|
|
|
|
|
2023-08-29 02:17:04 +02:00
|
|
|
if crate::util::is_cross() {
|
|
|
|
return;
|
|
|
|
}
|
2022-11-28 06:36:15 +02:00
|
|
|
dir.create("foo", "1");
|
|
|
|
sleep(Duration::from_millis(100));
|
|
|
|
dir.create_dir("dir");
|
|
|
|
sleep(Duration::from_millis(100));
|
|
|
|
dir.create(dir.path().join("dir").join("bar"), "1");
|
|
|
|
|
|
|
|
cmd.arg("--sort").arg("accessed").arg("--files");
|
|
|
|
eqnice!("foo\ndir/bar\n", cmd.stdout());
|
|
|
|
|
|
|
|
dir.create("foo", "2");
|
|
|
|
sleep(Duration::from_millis(100));
|
|
|
|
dir.create(dir.path().join("dir").join("bar"), "2");
|
|
|
|
sleep(Duration::from_millis(100));
|
|
|
|
|
|
|
|
cmd.arg("--sort").arg("accessed").arg("--files");
|
|
|
|
eqnice!("foo\ndir/bar\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
cli: print warning if nothing was searched
This was once part of ripgrep, but at some point, was unintentionally
removed. The value of this warning is that since ripgrep tries to be
"smart" by default, it can be surprising if it doesn't search certain
things. This warning covers the case when ripgrep searches *nothing*,
which happens somewhat more frequently than you might expect. e.g., If
you're searching within an ignore directory.
Note that for now, we only print this message when the user has not
supplied any explicit paths. It's not clear that we want to print this
otherwise, and in particular, it seems that the message shows up too
eagerly. e.g., 'rg foo does-not-exist' will both print an error about
'does-not-exist' not existing, *and* the message about no files being
searched, which seems annoying in this case. We can always refine this
logic later.
Fixes #1404, Closes #1762
2020-12-15 09:59:55 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1404
|
|
|
|
rgtest!(f1404_nothing_searched_warning, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create(".ignore", "ignored-dir/**");
|
|
|
|
dir.create_dir("ignored-dir");
|
|
|
|
dir.create("ignored-dir/foo", "needle");
|
|
|
|
|
|
|
|
// Test that, if ripgrep searches only ignored folders/files, then there
|
|
|
|
// is a non-zero exit code.
|
|
|
|
cmd.arg("needle");
|
|
|
|
cmd.assert_err();
|
|
|
|
|
|
|
|
// Test that we actually get an error message that we expect.
|
2024-01-05 08:06:42 +02:00
|
|
|
let output = cmd.raw_output();
|
cli: print warning if nothing was searched
This was once part of ripgrep, but at some point, was unintentionally
removed. The value of this warning is that since ripgrep tries to be
"smart" by default, it can be surprising if it doesn't search certain
things. This warning covers the case when ripgrep searches *nothing*,
which happens somewhat more frequently than you might expect. e.g., If
you're searching within an ignore directory.
Note that for now, we only print this message when the user has not
supplied any explicit paths. It's not clear that we want to print this
otherwise, and in particular, it seems that the message shows up too
eagerly. e.g., 'rg foo does-not-exist' will both print an error about
'does-not-exist' not existing, *and* the message about no files being
searched, which seems annoying in this case. We can always refine this
logic later.
Fixes #1404, Closes #1762
2020-12-15 09:59:55 +02:00
|
|
|
let stderr = String::from_utf8_lossy(&output.stderr);
|
|
|
|
let expected = "\
|
2024-01-06 21:15:52 +02:00
|
|
|
rg: No files were searched, which means ripgrep probably applied \
|
cli: print warning if nothing was searched
This was once part of ripgrep, but at some point, was unintentionally
removed. The value of this warning is that since ripgrep tries to be
"smart" by default, it can be surprising if it doesn't search certain
things. This warning covers the case when ripgrep searches *nothing*,
which happens somewhat more frequently than you might expect. e.g., If
you're searching within an ignore directory.
Note that for now, we only print this message when the user has not
supplied any explicit paths. It's not clear that we want to print this
otherwise, and in particular, it seems that the message shows up too
eagerly. e.g., 'rg foo does-not-exist' will both print an error about
'does-not-exist' not existing, *and* the message about no files being
searched, which seems annoying in this case. We can always refine this
logic later.
Fixes #1404, Closes #1762
2020-12-15 09:59:55 +02:00
|
|
|
a filter you didn't expect.\n\
|
|
|
|
Running with --debug will show why files are being skipped.\n\
|
|
|
|
";
|
|
|
|
eqnice!(expected, stderr);
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1404
|
|
|
|
rgtest!(f1404_nothing_searched_ignored, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create(".ignore", "ignored-dir/**");
|
|
|
|
dir.create_dir("ignored-dir");
|
|
|
|
dir.create("ignored-dir/foo", "needle");
|
|
|
|
|
|
|
|
// Test that, if ripgrep searches only ignored folders/files, then there
|
|
|
|
// is a non-zero exit code.
|
|
|
|
cmd.arg("--no-messages").arg("needle");
|
|
|
|
cmd.assert_err();
|
|
|
|
|
|
|
|
// But since --no-messages is given, there should not be any error message
|
|
|
|
// printed.
|
2024-01-05 08:06:42 +02:00
|
|
|
let output = cmd.raw_output();
|
cli: print warning if nothing was searched
This was once part of ripgrep, but at some point, was unintentionally
removed. The value of this warning is that since ripgrep tries to be
"smart" by default, it can be surprising if it doesn't search certain
things. This warning covers the case when ripgrep searches *nothing*,
which happens somewhat more frequently than you might expect. e.g., If
you're searching within an ignore directory.
Note that for now, we only print this message when the user has not
supplied any explicit paths. It's not clear that we want to print this
otherwise, and in particular, it seems that the message shows up too
eagerly. e.g., 'rg foo does-not-exist' will both print an error about
'does-not-exist' not existing, *and* the message about no files being
searched, which seems annoying in this case. We can always refine this
logic later.
Fixes #1404, Closes #1762
2020-12-15 09:59:55 +02:00
|
|
|
let stderr = String::from_utf8_lossy(&output.stderr);
|
|
|
|
let expected = "";
|
|
|
|
eqnice!(expected, stderr);
|
|
|
|
});
|
|
|
|
|
2021-05-26 03:41:11 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1842
|
|
|
|
rgtest!(f1842_field_context_separator, |dir: Dir, _: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
// Test the default.
|
|
|
|
let base = &["-n", "-A1", "Doctor Watsons", "sherlock"];
|
|
|
|
let expected = "\
|
|
|
|
1:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
2-Holmeses, success in the province of detective work must always
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(base).stdout());
|
|
|
|
|
|
|
|
// Test that it can be overridden.
|
|
|
|
let mut args = vec!["--field-context-separator", "!"];
|
|
|
|
args.extend(base);
|
|
|
|
let expected = "\
|
|
|
|
1:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
2!Holmeses, success in the province of detective work must always
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(&args).stdout());
|
|
|
|
|
|
|
|
// Test that it can use multiple bytes.
|
|
|
|
let mut args = vec!["--field-context-separator", "!!"];
|
|
|
|
args.extend(base);
|
|
|
|
let expected = "\
|
|
|
|
1:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
2!!Holmeses, success in the province of detective work must always
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(&args).stdout());
|
|
|
|
|
|
|
|
// Test that unescaping works.
|
|
|
|
let mut args = vec!["--field-context-separator", r"\x7F"];
|
|
|
|
args.extend(base);
|
|
|
|
let expected = "\
|
|
|
|
1:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
2\x7FHolmeses, success in the province of detective work must always
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(&args).stdout());
|
|
|
|
|
|
|
|
// Test that an empty separator is OK.
|
|
|
|
let mut args = vec!["--field-context-separator", r""];
|
|
|
|
args.extend(base);
|
|
|
|
let expected = "\
|
|
|
|
1:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
2Holmeses, success in the province of detective work must always
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(&args).stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1842
|
|
|
|
rgtest!(f1842_field_match_separator, |dir: Dir, _: TestCommand| {
|
|
|
|
dir.create("sherlock", SHERLOCK);
|
|
|
|
|
|
|
|
// Test the default.
|
|
|
|
let base = &["-n", "Doctor Watsons", "sherlock"];
|
|
|
|
let expected = "\
|
|
|
|
1:For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(base).stdout());
|
|
|
|
|
|
|
|
// Test that it can be overridden.
|
|
|
|
let mut args = vec!["--field-match-separator", "!"];
|
|
|
|
args.extend(base);
|
|
|
|
let expected = "\
|
|
|
|
1!For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(&args).stdout());
|
|
|
|
|
|
|
|
// Test that it can use multiple bytes.
|
|
|
|
let mut args = vec!["--field-match-separator", "!!"];
|
|
|
|
args.extend(base);
|
|
|
|
let expected = "\
|
|
|
|
1!!For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(&args).stdout());
|
|
|
|
|
|
|
|
// Test that unescaping works.
|
|
|
|
let mut args = vec!["--field-match-separator", r"\x7F"];
|
|
|
|
args.extend(base);
|
|
|
|
let expected = "\
|
|
|
|
1\x7FFor the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(&args).stdout());
|
|
|
|
|
|
|
|
// Test that an empty separator is OK.
|
|
|
|
let mut args = vec!["--field-match-separator", r""];
|
|
|
|
args.extend(base);
|
|
|
|
let expected = "\
|
|
|
|
1For the Doctor Watsons of this world, as opposed to the Sherlock
|
|
|
|
";
|
|
|
|
eqnice!(expected, dir.command().args(&args).stdout());
|
|
|
|
});
|
|
|
|
|
2023-07-07 16:51:51 +02:00
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/2288
|
|
|
|
rgtest!(f2288_context_partial_override, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "1\n2\n3\n4\n5\n6\n7\n8\n9\n");
|
|
|
|
cmd.args(&["-C1", "-A2", "5", "test"]);
|
|
|
|
eqnice!("4\n5\n6\n7\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/2288
|
|
|
|
rgtest!(
|
|
|
|
f2288_context_partial_override_rev,
|
|
|
|
|dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "1\n2\n3\n4\n5\n6\n7\n8\n9\n");
|
|
|
|
cmd.args(&["-A2", "-C1", "5", "test"]);
|
|
|
|
eqnice!("4\n5\n6\n7\n", cmd.stdout());
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-09-26 13:50:40 +02:00
|
|
|
rgtest!(no_context_sep, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "foo\nctx\nbar\nctx\nfoo\nctx");
|
2020-02-18 01:08:47 +02:00
|
|
|
cmd.args(&["-A1", "--no-context-separator", "foo", "test"]);
|
2019-09-26 13:50:40 +02:00
|
|
|
eqnice!("foo\nctx\nfoo\nctx\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(no_context_sep_overrides, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "foo\nctx\nbar\nctx\nfoo\nctx");
|
|
|
|
cmd.args(&[
|
|
|
|
"-A1",
|
2020-02-18 01:08:47 +02:00
|
|
|
"--context-separator",
|
|
|
|
"AAA",
|
2019-09-26 13:50:40 +02:00
|
|
|
"--no-context-separator",
|
|
|
|
"foo",
|
|
|
|
"test",
|
|
|
|
]);
|
|
|
|
eqnice!("foo\nctx\nfoo\nctx\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(no_context_sep_overridden, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "foo\nctx\nbar\nctx\nfoo\nctx");
|
|
|
|
cmd.args(&[
|
|
|
|
"-A1",
|
|
|
|
"--no-context-separator",
|
2020-02-18 01:08:47 +02:00
|
|
|
"--context-separator",
|
|
|
|
"AAA",
|
2019-09-26 13:50:40 +02:00
|
|
|
"foo",
|
|
|
|
"test",
|
|
|
|
]);
|
|
|
|
eqnice!("foo\nctx\nAAA\nfoo\nctx\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(context_sep, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "foo\nctx\nbar\nctx\nfoo\nctx");
|
2020-02-18 01:08:47 +02:00
|
|
|
cmd.args(&["-A1", "--context-separator", "AAA", "foo", "test"]);
|
2019-09-26 13:50:40 +02:00
|
|
|
eqnice!("foo\nctx\nAAA\nfoo\nctx\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(context_sep_default, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "foo\nctx\nbar\nctx\nfoo\nctx");
|
2020-02-18 01:08:47 +02:00
|
|
|
cmd.args(&["-A1", "foo", "test"]);
|
2019-09-26 13:50:40 +02:00
|
|
|
eqnice!("foo\nctx\n--\nfoo\nctx\n", cmd.stdout());
|
|
|
|
});
|
|
|
|
|
|
|
|
rgtest!(context_sep_empty, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "foo\nctx\nbar\nctx\nfoo\nctx");
|
2020-02-18 01:08:47 +02:00
|
|
|
cmd.args(&["-A1", "--context-separator", "", "foo", "test"]);
|
2019-09-26 13:50:40 +02:00
|
|
|
eqnice!("foo\nctx\n\nfoo\nctx\n", cmd.stdout());
|
|
|
|
});
|
2020-02-17 22:34:59 +02:00
|
|
|
|
|
|
|
rgtest!(no_unicode, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "δ");
|
|
|
|
cmd.arg("-i").arg("--no-unicode").arg("Δ").assert_err();
|
|
|
|
});
|
2021-07-07 18:50:23 +02:00
|
|
|
|
|
|
|
// See: https://github.com/BurntSushi/ripgrep/issues/1790
|
|
|
|
rgtest!(stop_on_nonmatch, |dir: Dir, mut cmd: TestCommand| {
|
|
|
|
dir.create("test", "line1\nline2\nline3\nline4\nline5");
|
|
|
|
cmd.args(&["--stop-on-nonmatch", "[235]"]);
|
|
|
|
eqnice!("test:line2\ntest:line3\n", cmd.stdout());
|
|
|
|
});
|