summaryrefslogtreecommitdiff
path: root/tests/head
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-05-03 15:11:20 +0000
committerJim Meyering <jim@meyering.net>2003-05-03 15:11:20 +0000
commit75fc3fd6a010a1f32746d0db8bc3b0507da924b6 (patch)
tree41c97fcb7bc81dbb8fbe7d66bccc7c7d5729dca8 /tests/head
parentcbbdaf78f8f9ed34f716198618d5eb88318afd50 (diff)
downloadcoreutils-75fc3fd6a010a1f32746d0db8bc3b0507da924b6.tar.xz
Add lots of tests to exercise --bytes=-N.
Diffstat (limited to 'tests/head')
-rw-r--r--tests/head/Test.pm43
1 files changed, 41 insertions, 2 deletions
diff --git a/tests/head/Test.pm b/tests/head/Test.pm
index a81c36f97..5b03eebb6 100644
--- a/tests/head/Test.pm
+++ b/tests/head/Test.pm
@@ -5,6 +5,9 @@ use strict;
# Tell head to accept old-style options like `-1'.
$Test::env_default = ['_POSIX2_VERSION=199209'];
+# This should match the definition in head.c.
+my $READ_BUFSIZE = 4096;
+
my @tv = (
# test name, options, input, expected output, expected return code
#
@@ -50,13 +53,43 @@ my @tv = (
['no-oct-2', '-010', "\n"x12, "\n"x10, 0],
['no-oct-3', '-n 08', "\n"x12, "\n"x8, 0],
['no-oct-4', '-c 08', "\n"x12, "\n"x8, 0],
+
+# Elide the exact size of the file.
+['elide-1', "--bytes=-2", "a\n", '', 0],
+# Elide more than the size of the file.
+['elide-2', "--bytes=-2", "a", '', 0],
+# Leave just one byte.
+['elide-3', "--bytes=-2", "abc", 'a', 0],
+# Make it so the elided bytes straddle the end of the first $READ_BUFSIZE block.
+['elide-4', "--bytes=-2",
+ 'a' x ($READ_BUFSIZE-3) . "\nbcd",
+ 'a' x ($READ_BUFSIZE-3) . "\nb", 0],
+# Make it so the elided bytes straddle the end of the 2nd $READ_BUFSIZE block.
+['elide-5', "--bytes=-2",
+ 'a' x (2 * $READ_BUFSIZE - 2) . 'bcd',
+ 'a' x (2 * $READ_BUFSIZE - 2) . 'b', 0],
);
+# Brute force: use all combinations of file sizes [0..20] and
+# number of bytes to elide [0..20].
+my $s = "abcdefghijklmnopqrst";
+for my $file_size (0..20)
+ {
+ for my $n_elide (0..20)
+ {
+ my $input = substr $s, 0, $file_size;
+ my $out_len = $n_elide < $file_size ? $file_size - $n_elide : 0;
+ my $output = substr $input, 0, $out_len;
+ push @tv, ["elide-$file_size-$n_elide", "--bytes=-$n_elide",
+ $input, $output, 0];
+
+ }
+ }
+
sub test_vector
{
- my $t;
my @derived_tests;
- foreach $t (@tv)
+ foreach my $t (@tv)
{
my ($test_name, $flags, $in, $exp, $ret) = @$t;
@@ -81,6 +114,12 @@ sub test_vector
push (@derived_tests, [$test_name, $flags, $in, $exp, $ret]);
}
+ foreach my $t (@tv, @derived_tests)
+ {
+ my ($test_name) = @$t;
+ $Test::input_via{$test_name} = {REDIR => 0, FILE => 0, PIPE => 0}
+ }
+
return (@tv, @derived_tests);
}