Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 1 | #/usr/bin/env perl |
| 2 | use strict; |
| 3 | use warnings; |
| 4 | use File::Basename 'dirname'; |
| 5 | use File::Spec::Functions qw/catdir catfile/; |
Akron | d5bb434 | 2017-06-19 11:50:49 +0200 | [diff] [blame] | 6 | use File::Temp qw/:POSIX/; |
Akron | 3ec0a1c | 2017-01-18 14:41:55 +0100 | [diff] [blame] | 7 | use Mojo::File; |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 8 | use Mojo::Util qw/quote/; |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 9 | use Mojo::JSON qw/decode_json/; |
| 10 | use IO::Uncompress::Gunzip; |
| 11 | use Test::More; |
Akron | 63d03ee | 2019-02-13 18:49:38 +0100 | [diff] [blame] | 12 | use Test::Output qw/:stdout :stderr :combined :functions/; |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 13 | use Data::Dumper; |
Nils Diewald | b3e9ccd | 2016-10-24 15:16:52 +0200 | [diff] [blame] | 14 | use KorAP::XML::Archive; |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 15 | use utf8; |
| 16 | |
Akron | fab17d3 | 2020-07-31 14:38:29 +0200 | [diff] [blame^] | 17 | if ($ENV{SKIP_SCRIPT}) { |
| 18 | plan skip_all => 'Skip script tests'; |
| 19 | }; |
| 20 | |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 21 | my $f = dirname(__FILE__); |
| 22 | my $script = catfile($f, '..', '..', 'script', 'korapxml2krill'); |
| 23 | |
| 24 | my $call = join( |
| 25 | ' ', |
| 26 | 'perl', $script, |
| 27 | 'archive' |
| 28 | ); |
| 29 | |
Nils Diewald | b3e9ccd | 2016-10-24 15:16:52 +0200 | [diff] [blame] | 30 | unless (KorAP::XML::Archive::test_unzip) { |
| 31 | plan skip_all => 'unzip not found'; |
| 32 | }; |
| 33 | |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 34 | # Test without parameters |
| 35 | stdout_like( |
| 36 | sub { |
| 37 | system($call); |
| 38 | }, |
Akron | a76d835 | 2016-10-27 16:27:32 +0200 | [diff] [blame] | 39 | qr!archive.+?\$ korapxml2krill!s, |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 40 | $call |
| 41 | ); |
| 42 | |
| 43 | my $input = catfile($f, '..', 'corpus', 'archive.zip'); |
| 44 | ok(-f $input, 'Input archive found'); |
Akron | 3ec4897 | 2016-08-17 23:24:52 +0200 | [diff] [blame] | 45 | my $output = File::Temp->newdir(CLEANUP => 0); |
| 46 | $output->unlink_on_destroy(0); |
| 47 | |
Akron | d5bb434 | 2017-06-19 11:50:49 +0200 | [diff] [blame] | 48 | my $cache = tmpnam(); |
| 49 | |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 50 | ok(-d $output, 'Output directory exists'); |
| 51 | |
| 52 | $call = join( |
| 53 | ' ', |
| 54 | 'perl', $script, |
| 55 | 'archive', |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 56 | '--input' => '' . $input, |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 57 | '--output' => $output, |
Akron | d5bb434 | 2017-06-19 11:50:49 +0200 | [diff] [blame] | 58 | '--cache' => $cache, |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 59 | '-t' => 'Base#tokens_aggr', |
| 60 | '-m' => 'Sgbr' |
| 61 | ); |
| 62 | |
| 63 | # Test without compression |
| 64 | my $json; |
| 65 | { |
| 66 | local $SIG{__WARN__} = sub {}; |
| 67 | my $out = stdout_from(sub { system($call); }); |
| 68 | |
| 69 | like($out, qr!TEST-BSP-1\.json!s, $call); |
| 70 | |
| 71 | $out =~ m!Processed (.+?\.json)!; |
| 72 | $json = $1; |
| 73 | }; |
| 74 | |
| 75 | ok(-f $json, 'Json file exists'); |
Akron | 3ec0a1c | 2017-01-18 14:41:55 +0100 | [diff] [blame] | 76 | ok((my $file = Mojo::File->new($json)->slurp), 'Slurp data'); |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 77 | ok(($json = decode_json $file), 'decode json'); |
| 78 | |
| 79 | is($json->{data}->{tokenSource}, 'base#tokens_aggr', 'Title'); |
| 80 | is($json->{data}->{foundries}, 'base base/paragraphs base/sentences dereko dereko/structure sgbr sgbr/lemma sgbr/morpho', 'Foundries'); |
| 81 | is($json->{sgbrKodex}, 'M', 'Kodex meta data'); |
| 82 | |
Akron | 3ec4897 | 2016-08-17 23:24:52 +0200 | [diff] [blame] | 83 | |
| 84 | # Use directory |
| 85 | $input = catdir($f, '..', 'annotation', 'corpus'); |
| 86 | |
| 87 | $call = join( |
| 88 | ' ', |
| 89 | 'perl', $script, |
| 90 | 'archive', |
| 91 | '--input' => $input, |
| 92 | '--output' => $output, |
Akron | d5bb434 | 2017-06-19 11:50:49 +0200 | [diff] [blame] | 93 | '--cache' => $cache, |
Akron | 3ec4897 | 2016-08-17 23:24:52 +0200 | [diff] [blame] | 94 | '-t' => 'Tree_Tagger#Tokens', |
| 95 | '-j' => 4 # 4 jobs! |
| 96 | ); |
| 97 | |
| 98 | my ($json_1, $json_2); |
| 99 | |
| 100 | { |
| 101 | local $SIG{__WARN__} = sub {}; |
| 102 | |
| 103 | # That's not really stable on slow machines! |
| 104 | my $out = stdout_from(sub { system($call); }); |
| 105 | |
| 106 | ok($out =~ m!\[\$(\d+?):1\/2\]!s, $call . ' pid 1'); |
| 107 | my $pid1 = $1; |
| 108 | ok($out =~ m!\[\$(\d+?):2\/2\]!s, $call . ' pid 2'); |
| 109 | my $pid2 = $1; |
| 110 | |
| 111 | isnt($pid1, $pid2, 'No PID match'); |
| 112 | |
| 113 | ok($out =~ m!Processed .+?\/corpus-doc-0001\.json!s, $call); |
| 114 | ok($out =~ m!Processed .+?\/corpus-doc-0002\.json!s, $call); |
| 115 | |
| 116 | ok(-d $output, 'Temporary directory still exists'); |
| 117 | my $json_1 = catfile($output, 'corpus-doc-0001.json'); |
| 118 | ok(-f $json_1, 'Json file exists 1'); |
| 119 | my $json_2 = catfile($output, 'corpus-doc-0002.json'); |
| 120 | ok(-f $json_2, 'Json file exists 2'); |
| 121 | |
Akron | 3ec0a1c | 2017-01-18 14:41:55 +0100 | [diff] [blame] | 122 | ok(($file = Mojo::File->new($json_1)->slurp), 'Slurp data'); |
Akron | 3ec4897 | 2016-08-17 23:24:52 +0200 | [diff] [blame] | 123 | ok(($json_1 = decode_json $file), 'decode json'); |
| 124 | |
| 125 | is($json_1->{data}->{tokenSource}, 'tree_tagger#tokens', 'TokenSource'); |
| 126 | is($json_1->{data}->{foundries}, 'base base/paragraphs base/sentences connexor connexor/morpho connexor/phrase connexor/sentences connexor/syntax corenlp corenlp/constituency corenlp/morpho corenlp/sentences dereko dereko/structure glemm glemm/morpho mate mate/dependency mate/morpho opennlp opennlp/morpho opennlp/sentences treetagger treetagger/morpho treetagger/sentences xip xip/constituency xip/morpho xip/sentences', 'Foundries'); |
| 127 | is($json_1->{textSigle}, 'Corpus/Doc/0001', 'Sigle'); |
| 128 | |
| 129 | ok(-f $json_2, 'Json file exists'); |
Akron | 3ec0a1c | 2017-01-18 14:41:55 +0100 | [diff] [blame] | 130 | ok(($file = Mojo::File->new($json_2)->slurp), 'Slurp data'); |
Akron | 3ec4897 | 2016-08-17 23:24:52 +0200 | [diff] [blame] | 131 | ok(($json_2 = decode_json $file), 'decode json'); |
| 132 | |
| 133 | is($json_2->{data}->{tokenSource}, 'tree_tagger#tokens', 'TokenSource'); |
| 134 | is($json_2->{data}->{foundries}, 'base base/paragraphs base/sentences dereko dereko/structure malt malt/dependency treetagger treetagger/morpho treetagger/sentences', 'Foundries'); |
| 135 | is($json_2->{textSigle}, 'Corpus/Doc/0002', 'Sigle'); |
| 136 | }; |
| 137 | |
| 138 | ok(-d $output, 'Ouput directory exists'); |
Akron | 89df4fa | 2016-11-04 14:35:37 +0100 | [diff] [blame] | 139 | |
| 140 | |
Akron | 63d03ee | 2019-02-13 18:49:38 +0100 | [diff] [blame] | 141 | my $temp_extract = tmpnam(); |
| 142 | |
| 143 | # Ignore -te when archive is a directory |
| 144 | $call = join( |
| 145 | ' ', |
| 146 | 'perl', $script, |
| 147 | 'archive', |
| 148 | '--input' => $input, |
| 149 | '--output' => $output, |
| 150 | '--cache' => $cache, |
| 151 | '-t' => 'Tree_Tagger#Tokens', |
| 152 | '-j' => 4, # 4 jobs! |
| 153 | '-te' => $temp_extract |
| 154 | ); |
| 155 | |
| 156 | { |
| 157 | local $SIG{__WARN__} = sub {}; |
| 158 | |
| 159 | my $out = combined_from(sub { system($call); }); |
| 160 | |
| 161 | ok($out =~ m!Processed .+?\/corpus-doc-0001\.json!s, $call); |
| 162 | ok($out =~ m!Processed .+?\/corpus-doc-0002\.json!s, $call); |
| 163 | }; |
| 164 | |
| 165 | |
Akron | 89df4fa | 2016-11-04 14:35:37 +0100 | [diff] [blame] | 166 | $input = catfile($f, '..', 'corpus', 'WDD15', 'A79', '83946'); |
| 167 | $call = join( |
| 168 | ' ', |
| 169 | 'perl', $script, |
Akron | d5bb434 | 2017-06-19 11:50:49 +0200 | [diff] [blame] | 170 | '--input' => $input, |
| 171 | '--cache' => $cache |
Akron | 89df4fa | 2016-11-04 14:35:37 +0100 | [diff] [blame] | 172 | ); |
| 173 | |
| 174 | # Test without compression |
| 175 | { |
| 176 | local $SIG{__WARN__} = sub {}; |
Akron | f021ad6 | 2019-03-08 17:25:59 +0100 | [diff] [blame] | 177 | my $out = combined_from(sub { system($call); }); |
Akron | 89df4fa | 2016-11-04 14:35:37 +0100 | [diff] [blame] | 178 | |
Akron | f021ad6 | 2019-03-08 17:25:59 +0100 | [diff] [blame] | 179 | like($out, qr!No tokens found!s, $call); |
Akron | 89df4fa | 2016-11-04 14:35:37 +0100 | [diff] [blame] | 180 | }; |
| 181 | |
Akron | f624084 | 2017-02-17 23:45:26 +0100 | [diff] [blame] | 182 | my $input_quotes = catfile($f, '..', 'corpus', 'archive_quotes.zip'); |
| 183 | $call = join( |
| 184 | ' ', |
| 185 | 'perl', $script, |
| 186 | 'archive', |
| 187 | '--input' => $input_quotes, |
| 188 | '--output' => $output, |
Akron | d5bb434 | 2017-06-19 11:50:49 +0200 | [diff] [blame] | 189 | '--cache' => $cache, |
Akron | f624084 | 2017-02-17 23:45:26 +0100 | [diff] [blame] | 190 | '-t' => 'Base#tokens_aggr' |
| 191 | ); |
| 192 | |
| 193 | # Test without parameters |
| 194 | stdout_like( |
| 195 | sub { |
| 196 | system($call); |
| 197 | }, |
| 198 | qr!Done\.!is, |
| 199 | $call |
| 200 | ); |
| 201 | |
Akron | 89df4fa | 2016-11-04 14:35:37 +0100 | [diff] [blame] | 202 | |
Akron | 3ec4897 | 2016-08-17 23:24:52 +0200 | [diff] [blame] | 203 | unlink($output); |
| 204 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 205 | |
| 206 | $input_quotes = "'".catfile($f, '..', 'corpus', 'archives', 'wpd15*.zip') . "'"; |
| 207 | |
| 208 | $call = join( |
| 209 | ' ', |
| 210 | 'perl', $script, |
| 211 | 'archive', |
| 212 | '--input' => $input_quotes, |
| 213 | '--output' => $output, |
Akron | d5bb434 | 2017-06-19 11:50:49 +0200 | [diff] [blame] | 214 | '--cache' => $cache, |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 215 | '-t' => 'Base#tokens_aggr' |
| 216 | ); |
| 217 | |
| 218 | # Test without parameters |
| 219 | stdout_like( |
| 220 | sub { |
| 221 | system($call); |
| 222 | }, |
Akron | 63f20d4 | 2017-04-10 23:40:29 +0200 | [diff] [blame] | 223 | qr!Input is .+?wpd15-single\.zip,.+?wpd15-single\.malt\.zip,.+?wpd15-single\.corenlp\.zip,.+?wpd15-single\.opennlp\.zip,.+?wpd15-single\.mdparser\.zip,.+?wpd15-single\.tree_tagger\.zip!is, |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 224 | $call |
| 225 | ); |
| 226 | |
Akron | 31a08cb | 2019-02-20 20:43:26 +0100 | [diff] [blame] | 227 | |
| 228 | |
| 229 | # Test with sigles |
| 230 | $input = catfile($f, '..', 'corpus', 'archive.zip'); |
| 231 | ok(-f $input, 'Input archive found'); |
| 232 | |
| 233 | unlink($output); |
| 234 | |
| 235 | $call = join( |
| 236 | ' ', |
| 237 | 'perl', $script, |
| 238 | 'archive', |
| 239 | '--input' => '' . $input, |
| 240 | '--output' => $output, |
| 241 | '--sigle' => 'TEST/BSP/2', |
| 242 | '--sigle' => 'TEST/BSP/5', |
| 243 | '-t' => 'Base#tokens_aggr', |
| 244 | '-m' => 'Sgbr' |
| 245 | ); |
| 246 | |
| 247 | { |
| 248 | local $SIG{__WARN__} = sub {}; |
| 249 | my $out = stdout_from(sub { system($call); }); |
| 250 | |
| 251 | like($out, qr!TEST-BSP-1\.json!s, $call); |
| 252 | |
| 253 | $out =~ m!Processed (.+?\.json)!; |
| 254 | $json = $1; |
| 255 | }; |
| 256 | |
| 257 | ok(-f $json, 'Json file exists'); |
| 258 | |
| 259 | |
Akron | 7d4cdd8 | 2016-08-17 21:39:45 +0200 | [diff] [blame] | 260 | done_testing; |
| 261 | __END__ |