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
|
#!/usr/bin/perl -w
use strict;
use Carp;
use File::Spec;
use lib File::Spec->catdir(File::Spec->curdir,"t");
use tools;
use Config;
my $devnull = File::Spec->devnull;
my $DEBUG=0;
my $extra_flags= $Devel::Cover::VERSION ? '-MDevel::Cover -Ilib' : '-Ilib';
# be cautious: run this only on systems I have tested it on
my %os_ok=( linux => 1, solaris => 1, darwin => 1, MSWin32 => 1);
if( !$os_ok{$^O}) { print "1..1\nok 1\n"; warn "skipping, test runs only on some OSs\n"; exit; }
if( $] < 5.006) { print "1..1\nok 1\n"; warn "skipping, xml_merge runs only on perl 5.6 and later\n"; exit; }
print "1..59\n";
my $perl= $Config{perlpath};
if ($^O ne 'VMS') { $perl .= $Config{_exe} unless $perl =~ m/$Config{_exe}$/i; }
$perl.= " $extra_flags";
my $xml_split = File::Spec->catfile( "tools", "xml_split", "xml_split");
my $xml_merge = File::Spec->catfile( "tools", "xml_merge", "xml_merge");
my $xml_pp = File::Spec->catfile( "tools", "xml_pp", "xml_pp");
sys_ok( "$perl -c $xml_split", "xml_split compilation");
sys_ok( "$perl -c $xml_merge", "xml_merge compilation");
my $test_dir = File::Spec->catfile( "t", "test_xml_split");
my $test_file = File::Spec->catfile( "t", "test_xml_split.xml");
my $base_nb; # global, managed by test_split_merge
test_split_merge( $test_file, "", "" );
test_split_merge( $test_file, "-i", "-i" );
test_split_merge( $test_file, "-c elt1", "" );
test_split_merge( $test_file, "-i -c elt1", "-i" );
test_split_merge( $test_file, "-c elt2", "" );
test_split_merge( $test_file, "-i -c elt2", "-i" );
test_split_merge( $test_file, "-s 1K", "" );
test_split_merge( $test_file, "-i -s 1K", "-i" );
test_split_merge( $test_file, "-l 1", "" );
test_split_merge( $test_file, "-i -l 1", "-i" );
test_split_merge( $test_file, "-g 5", "" );
test_split_merge( $test_file, "-i -g 5", "-i" );
$test_file=File::Spec->catfile( "t", "test_xml_split_entities.xml");
test_split_merge( $test_file, "", "" );
test_split_merge( $test_file, "-g 2", "" );
test_split_merge( $test_file, "-l 1", "" );
$test_file=File::Spec->catfile( "t", "test_xml_split_w_decl.xml");
test_split_merge( $test_file, "", "" );
test_split_merge( $test_file, "-c elt1", "" );
test_split_merge( $test_file, "-g 2", "" );
test_split_merge( $test_file, "-l 1", "" );
test_split_merge( $test_file, "-s 1K", "" );
test_split_merge( $test_file, "-g 2 -l 2", "" );
if( _use( 'IO::CaptureOutput'))
{ test_error( $xml_split => "-h", 'xml_split ');
test_error( $xml_merge => "-h", 'xml_merge ');
test_out( $xml_split => "-V", 'xml_split ');
test_out( $xml_merge => "-V", 'xml_merge ');
if( `pod2text -h` && $^O !~ m{^MS})
{ test_out( $xml_split => "-m", 'NAME\s*xml_split ');
test_out( $xml_merge => "-m", 'NAME\s*xml_merge ');
test_out( $xml_pp => "-h", 'NAME\s*xml_pp ');
}
else
{ skip( 3, "pod2text not found in the path, cannot use -m oprion for xml_split and xml_merge"); }
test_error( $xml_split => "-c foo -s 1K", 'cannot use -c and -s at the same time');
test_error( $xml_split => "-g 100 -s 1K", 'cannot use -g and -s at the same time');
test_error( $xml_split => "-g 100 -c fo", 'cannot use -g and -c at the same time');
test_error( $xml_split => "-s 1Kc", 'invalid size');
test_error( $xml_pp => "-s --style", 'usage:');
test_error( $xml_pp => "-i --in_place", 'usage:');
test_error( $xml_pp => "-e utf8 --encoding utf8", 'usage:');
test_error( $xml_pp => "-l --load", 'usage:');
}
else
{ skip( 15, 'need IO::CaptureOutput to test tool options'); }
sub test_error
{ my( $command, $options, $expected)= @_;
my( $stdout, $stderr, $success, $exit_code) = IO::CaptureOutput::capture_exec( "$perl $command $options test_xml_split.xml");
matches( $stderr, qr/$expected/, "$command $options");
}
sub test_out
{ my( $command, $options, $expected)= @_;
my( $stdout, $stderr, $success, $exit_code) = IO::CaptureOutput::capture_exec( "$perl $command $options test_xml_split.xml");
matches( $stdout, qr/^$expected/, "$command $options");
}
sub test_split_merge
{ my( $file, $split_opts, $merge_opts)= @_;
$split_opts ||= '';
$merge_opts ||= '';
$base_nb++;
my $verbifdebug = $DEBUG ? '-v' : '';
my $expected_base= File::Spec->catfile( "$test_dir", "test_xml_split_expected-$base_nb");
my $base= File::Spec->catfile( "$test_dir", "test_xml_split-$base_nb");
systemq( "$perl $xml_split $verbifdebug -b $base $split_opts $file");
ok( same_files( $expected_base, $base), "xml_split $split_opts $test_file");
my $merged= "$base.xml";
system "$perl $xml_merge $verbifdebug -o $merged $merge_opts $base-00.xml";
system "$perl $xml_pp -i $merged";
ok( same_file( $merged, $file), "xml_merge $merge_opts $test_file ($merged $base-00.xml");
unlink( glob( "$base*")) unless( $DEBUG);
}
sub same_files
{ my( $expected_base, $base)= @_;
my $nb="00";
while( -f "$base-$nb.xml")
{ my( $real, $expected)= ( "$base-$nb.xml", "$expected_base-$nb.xml");
if( ! -z $expected) { _use( 'File::Copy'); copy( $real, $expected); }
unless( same_file( $expected, $real))
{ warn " $expected and $real are different";
if( $DEBUG) { warn `diff $expected, $real`; }
return 0;
}
$nb++;
}
return 1;
}
sub same_file
{ my( $file1, $file2)= @_;
my $eq= slurp_mod( $file1) eq slurp_mod( $file2);
if( $DEBUG && ! $eq) { system "diff $file1 $file2\n"; }
return $eq;
}
# slurp and remove spaces and _expected from the file
sub slurp_mod
{ my( $file)= @_;
local undef $/;
open( FHSLURP, "<$file") or return "$file not found:$!";
my $content=<FHSLURP>;
$content=~ s{\s}{}g;
$content=~ s{_expected}{}g;
return $content;
}
sub systemq
{ if( !$DEBUG)
{ system "$_[0] 1>$devnull 2>$devnull"; }
else
{ warn "$_[0]\n";
system $_[0];
}
}
|