blob: 5c23b76b49dc705307e47b84993b062dd682ca53 [file] [log] [blame]
Akron7d4cdd82016-08-17 21:39:45 +02001#/usr/bin/env perl
2use strict;
3use warnings;
4use File::Basename 'dirname';
5use File::Spec::Functions qw/catdir catfile/;
Akrond5bb4342017-06-19 11:50:49 +02006use File::Temp qw/:POSIX/;
Akron3ec0a1c2017-01-18 14:41:55 +01007use Mojo::File;
Akron821db3d2017-04-06 21:19:31 +02008use Mojo::Util qw/quote/;
Akron7d4cdd82016-08-17 21:39:45 +02009use Mojo::JSON qw/decode_json/;
10use IO::Uncompress::Gunzip;
11use Test::More;
Akron63d03ee2019-02-13 18:49:38 +010012use Test::Output qw/:stdout :stderr :combined :functions/;
Akron7d4cdd82016-08-17 21:39:45 +020013use Data::Dumper;
Nils Diewaldb3e9ccd2016-10-24 15:16:52 +020014use KorAP::XML::Archive;
Akron7d4cdd82016-08-17 21:39:45 +020015use utf8;
16
Akronfab17d32020-07-31 14:38:29 +020017if ($ENV{SKIP_SCRIPT}) {
18 plan skip_all => 'Skip script tests';
19};
20
Akron7d4cdd82016-08-17 21:39:45 +020021my $f = dirname(__FILE__);
22my $script = catfile($f, '..', '..', 'script', 'korapxml2krill');
23
24my $call = join(
25 ' ',
26 'perl', $script,
27 'archive'
28);
29
Nils Diewaldb3e9ccd2016-10-24 15:16:52 +020030unless (KorAP::XML::Archive::test_unzip) {
31 plan skip_all => 'unzip not found';
32};
33
Akron7d4cdd82016-08-17 21:39:45 +020034# Test without parameters
35stdout_like(
36 sub {
37 system($call);
38 },
Akrona76d8352016-10-27 16:27:32 +020039 qr!archive.+?\$ korapxml2krill!s,
Akron7d4cdd82016-08-17 21:39:45 +020040 $call
41);
42
43my $input = catfile($f, '..', 'corpus', 'archive.zip');
44ok(-f $input, 'Input archive found');
Akron3ec48972016-08-17 23:24:52 +020045my $output = File::Temp->newdir(CLEANUP => 0);
46$output->unlink_on_destroy(0);
47
Akrond5bb4342017-06-19 11:50:49 +020048my $cache = tmpnam();
49
Akron7d4cdd82016-08-17 21:39:45 +020050ok(-d $output, 'Output directory exists');
51
52$call = join(
53 ' ',
54 'perl', $script,
55 'archive',
Akron821db3d2017-04-06 21:19:31 +020056 '--input' => '' . $input,
Akron7d4cdd82016-08-17 21:39:45 +020057 '--output' => $output,
Akrond5bb4342017-06-19 11:50:49 +020058 '--cache' => $cache,
Akron7d4cdd82016-08-17 21:39:45 +020059 '-t' => 'Base#tokens_aggr',
60 '-m' => 'Sgbr'
61);
62
63# Test without compression
64my $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
75ok(-f $json, 'Json file exists');
Akron3ec0a1c2017-01-18 14:41:55 +010076ok((my $file = Mojo::File->new($json)->slurp), 'Slurp data');
Akron7d4cdd82016-08-17 21:39:45 +020077ok(($json = decode_json $file), 'decode json');
78
79is($json->{data}->{tokenSource}, 'base#tokens_aggr', 'Title');
80is($json->{data}->{foundries}, 'base base/paragraphs base/sentences dereko dereko/structure sgbr sgbr/lemma sgbr/morpho', 'Foundries');
81is($json->{sgbrKodex}, 'M', 'Kodex meta data');
82
Akron3ec48972016-08-17 23:24:52 +020083
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,
Akrond5bb4342017-06-19 11:50:49 +020093 '--cache' => $cache,
Akron3ec48972016-08-17 23:24:52 +020094 '-t' => 'Tree_Tagger#Tokens',
95 '-j' => 4 # 4 jobs!
96);
97
98my ($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
Akron3ec0a1c2017-01-18 14:41:55 +0100122 ok(($file = Mojo::File->new($json_1)->slurp), 'Slurp data');
Akron3ec48972016-08-17 23:24:52 +0200123 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');
Akron3ec0a1c2017-01-18 14:41:55 +0100130 ok(($file = Mojo::File->new($json_2)->slurp), 'Slurp data');
Akron3ec48972016-08-17 23:24:52 +0200131 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
138ok(-d $output, 'Ouput directory exists');
Akron89df4fa2016-11-04 14:35:37 +0100139
140
Akron63d03ee2019-02-13 18:49:38 +0100141my $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
Akron89df4fa2016-11-04 14:35:37 +0100166$input = catfile($f, '..', 'corpus', 'WDD15', 'A79', '83946');
167$call = join(
168 ' ',
169 'perl', $script,
Akrond5bb4342017-06-19 11:50:49 +0200170 '--input' => $input,
171 '--cache' => $cache
Akron89df4fa2016-11-04 14:35:37 +0100172);
173
174# Test without compression
175{
176 local $SIG{__WARN__} = sub {};
Akronf021ad62019-03-08 17:25:59 +0100177 my $out = combined_from(sub { system($call); });
Akron89df4fa2016-11-04 14:35:37 +0100178
Akronf021ad62019-03-08 17:25:59 +0100179 like($out, qr!No tokens found!s, $call);
Akron89df4fa2016-11-04 14:35:37 +0100180};
181
Akronf6240842017-02-17 23:45:26 +0100182my $input_quotes = catfile($f, '..', 'corpus', 'archive_quotes.zip');
183$call = join(
184 ' ',
185 'perl', $script,
186 'archive',
187 '--input' => $input_quotes,
188 '--output' => $output,
Akrond5bb4342017-06-19 11:50:49 +0200189 '--cache' => $cache,
Akronf6240842017-02-17 23:45:26 +0100190 '-t' => 'Base#tokens_aggr'
191);
192
193# Test without parameters
194stdout_like(
195 sub {
196 system($call);
197 },
198 qr!Done\.!is,
199 $call
200);
201
Akron89df4fa2016-11-04 14:35:37 +0100202
Akron3ec48972016-08-17 23:24:52 +0200203unlink($output);
204
Akron821db3d2017-04-06 21:19:31 +0200205
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,
Akrond5bb4342017-06-19 11:50:49 +0200214 '--cache' => $cache,
Akron821db3d2017-04-06 21:19:31 +0200215 '-t' => 'Base#tokens_aggr'
216);
217
218# Test without parameters
219stdout_like(
220 sub {
221 system($call);
222 },
Akron63f20d42017-04-10 23:40:29 +0200223 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,
Akron821db3d2017-04-06 21:19:31 +0200224 $call
225);
226
Akron31a08cb2019-02-20 20:43:26 +0100227
228
229# Test with sigles
230$input = catfile($f, '..', 'corpus', 'archive.zip');
231ok(-f $input, 'Input archive found');
232
233unlink($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
257ok(-f $json, 'Json file exists');
258
259
Akron7d4cdd82016-08-17 21:39:45 +0200260done_testing;
261__END__