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
|
#!perl -T
use strict;
use warnings;
use Test::More tests => 12;
use lib 't';
use Util;
prep_environment();
my ($bill_, $const, $getty) = map { reslash( "t/text/$_" ) } qw( bill-of-rights.txt constitution.txt gettysburg.txt );
my @TEXT_FILES = sort map { untaint($_) } glob( 't/text/*.txt' );
NO_GROUPING: {
my @expected = line_split( <<"HERE" );
$bill_:4:or prohibiting the free exercise thereof; or abridging the freedom of
$bill_:10:A well regulated Militia, being necessary to the security of a free State,
$const:32:Number of free Persons, including those bound to Service for a Term
$getty:23:shall have a new birth of freedom -- and that government of the people,
HERE
my @cases = (
[qw( --nogroup --nocolor free )],
[qw( --nobreak --noheading --nocolor free )],
);
for my $args ( @cases ) {
my @results = run_ack( @{$args}, @TEXT_FILES );
lists_match( \@results, \@expected, 'No grouping' );
}
}
STANDARD_GROUPING: {
my @expected = line_split( <<"HERE" );
$bill_
4:or prohibiting the free exercise thereof; or abridging the freedom of
10:A well regulated Militia, being necessary to the security of a free State,
$const
32:Number of free Persons, including those bound to Service for a Term
$getty
23:shall have a new birth of freedom -- and that government of the people,
HERE
my @cases = (
[qw( --group --nocolor free )],
[qw( --heading --break --nocolor free )],
);
for my $args ( @cases ) {
my @results = run_ack( @{$args}, @TEXT_FILES );
lists_match( \@results, \@expected, 'Standard grouping' );
}
}
HEADING_NO_BREAK: {
my @expected = line_split( <<"HERE" );
$bill_
4:or prohibiting the free exercise thereof; or abridging the freedom of
10:A well regulated Militia, being necessary to the security of a free State,
$const
32:Number of free Persons, including those bound to Service for a Term
$getty
23:shall have a new birth of freedom -- and that government of the people,
HERE
my @arg_sets = (
[qw( --heading --nobreak --nocolor free )],
);
for my $set ( @arg_sets ) {
my @results = run_ack( @{$set}, @TEXT_FILES );
lists_match( \@results, \@expected, 'Standard grouping' );
}
}
BREAK_NO_HEADING: {
my @expected = line_split( <<"HERE" );
$bill_:4:or prohibiting the free exercise thereof; or abridging the freedom of
$bill_:10:A well regulated Militia, being necessary to the security of a free State,
$const:32:Number of free Persons, including those bound to Service for a Term
$getty:23:shall have a new birth of freedom -- and that government of the people,
HERE
my @arg_sets = (
[qw( --break --noheading --nocolor free )],
);
for my $set ( @arg_sets ) {
my @results = run_ack( @{$set}, @TEXT_FILES );
lists_match( \@results, \@expected, 'No grouping' );
}
}
done_testing();
exit 0;
|