blob: e9d9dc906c49608911598f6d854613b75be09663 [file] [log] [blame]
Akron797e8072020-02-13 07:59:40 +01001use strict;
2use warnings;
3use File::Basename 'dirname';
4use File::Spec::Functions qw/catfile/;
Peter Harders1c5ce152020-07-22 18:02:50 +02005use Encode qw!encode_utf8 decode_utf8 encode!;
Akron797e8072020-02-13 07:59:40 +01006
7use Test::More;
8use Test::Output;
Peter Harders42e18a62020-07-21 02:43:26 +02009
10use FindBin;
11BEGIN {
12 unshift @INC, "$FindBin::Bin/../lib";
13};
Peter Harders1c5ce152020-07-22 18:02:50 +020014
Akron044bd922020-07-30 09:12:28 +020015use Test::KorAP::XML::TEI qw!korap_tempfile i5_template test_tei2korapxml!;
Peter Harders57c884e2020-07-16 01:28:52 +020016
Akron797e8072020-02-13 07:59:40 +010017my $f = dirname(__FILE__);
18my $script = catfile($f, '..', 'script', 'tei2korapxml');
19ok(-f $script, 'Script found');
20
Akrond949e182020-02-14 12:23:57 +010021stdout_like(
Akron797e8072020-02-13 07:59:40 +010022 sub { system('perl', $script, '--help') },
Akrond949e182020-02-14 12:23:57 +010023 qr!This\s*program\s*is\s*usually\s*called\s*from\s*inside\s*another\s*script\.!,
Akron797e8072020-02-13 07:59:40 +010024 'Help'
25);
26
Akron044bd922020-07-30 09:12:28 +020027
Akrond949e182020-02-14 12:23:57 +010028stdout_like(
29 sub { system('perl', $script, '--version') },
30 qr!tei2korapxml - v\d+?\.\d+?!,
31 'Version'
32);
33
Akron2a60c532020-02-13 15:52:18 +010034# Load example file
35my $file = catfile($f, 'data', 'goe_sample.i5.xml');
Peter Harders57c884e2020-07-16 01:28:52 +020036
Akron044bd922020-07-30 09:12:28 +020037subtest 'Basic processing' => sub {
Akron2a60c532020-02-13 15:52:18 +010038
Akron044bd922020-07-30 09:12:28 +020039 my $t = test_tei2korapxml(
40 tmp => 'script_out',
41 file => $file,
42 param => '-ti'
43 )->stderr_like(qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!);
Akron2a60c532020-02-13 15:52:18 +010044
Akron68966082020-02-13 15:52:18 +010045
Akron044bd922020-07-30 09:12:28 +020046 # Uncompress GOE/header.xml from zip file
47 $t->unzip_xml('GOE/header.xml')
Akron2a60c532020-02-13 15:52:18 +010048
Akron044bd922020-07-30 09:12:28 +020049 # TODO: check wrong encoding in header-files (compare with input document)!
50 ->text_is('korpusSigle', 'GOE', 'korpusSigle')
51 ->text_is('h\.title[type=main]', 'Goethes Werke', 'h.title')
52 ->text_is('h\.author', 'Goethe, Johann Wolfgang von', 'h.author')
53 ->text_is('pubDate[type=year]', '1982', 'pubDate');
Akron2a60c532020-02-13 15:52:18 +010054
Akron044bd922020-07-30 09:12:28 +020055 # Uncompress GOE/AGA/header.xml from zip file
56 $t->unzip_xml('GOE/AGA/header.xml')
57 ->text_is('dokumentSigle', 'GOE/AGA', 'dokumentSigle')
58 ->text_is('d\.title', 'Goethe: Autobiographische Schriften II, (1817-1825, 1832)', 'd.title')
59 ->text_is('creatDate', '1820-1822', 'creatDate');
Akron2a60c532020-02-13 15:52:18 +010060
Akron044bd922020-07-30 09:12:28 +020061 # Uncompress GOE/AGA/00000/header.xml from zip file
62 $t->unzip_xml('GOE/AGA/00000/header.xml')
63 ->text_is('textSigle', 'GOE/AGA.00000', 'textSigle')
64 ->text_is('analytic > h\.title[type=main]', 'Campagne in Frankreich', 'h.title');
Akron2a60c532020-02-13 15:52:18 +010065
66# Uncompress GOE/AGA/00000/data.xml from zip file
Akron044bd922020-07-30 09:12:28 +020067 $t->unzip_xml('GOE/AGA/00000/data.xml')
68 ->attr_is('raw_text', 'docid', 'GOE_AGA.00000', 'text id')
Marc Kupietzfd0e6a92020-09-09 18:07:29 +020069 ->text_like('raw_text > text', qr!^Campagne in Frankreich 1792.*?uns allein begl.*cke\.$!, 'text content')
70 ->text_like('raw_text > text', qr!unter dem Titel "Kriegstheater"!, 'text content');
Akron2a60c532020-02-13 15:52:18 +010071
Akron417ed2f2020-09-28 12:43:17 +020072 my $content = $t->get_content_of('GOE/AGA/00000/data.xml');
73 like($content, qr!unter dem Titel "Kriegstheater"!, 'raw text content');
74
Akron044bd922020-07-30 09:12:28 +020075 $t->unzip_xml('GOE/AGA/00000/struct/structure.xml')
Akronc57625b2020-07-30 11:46:06 +020076 ->text_is('span[id=s3] *[name=type]', 'Autobiographie', 'text content')
77 ->text_is('#s3 *[name=type]', 'Autobiographie', 'text content')
78 ->attr_is('#s0','to','1266')
79 ->attr_is('#s0','l','1')
80
81 ->attr_is('#s18','from','925')
82 ->attr_is('#s18','to','1266')
83 ->attr_is('#s18','l','5')
84 ->attr_is('#s18 > fs','type', 'struct')
85 ->attr_is('#s18 > fs > f','name','name')
86 ->text_is('#s18 > fs > f','poem')
87
88 ->attr_is('#s19','from','925')
89 ->attr_is('#s19','to','1098')
90 ->attr_is('#s19','l','6')
91 ->attr_is('#s19 > fs','type','struct')
92 ->text_is('#s19 > fs > f[name=name]','lg')
93 ->text_is('#s19 > fs > f[name=attr] > fs[type=attr] >f[name=part]','u')
94
95 ->attr_is('#s37','from','1229')
96 ->attr_is('#s37','to','1266')
97 ->attr_is('#s37','l','8')
98 ->attr_is('#s37 > fs','type','struct')
99 ->text_is('#s37 > fs > f[name=name]','s')
100 ->text_is('#s37 > fs > f[name=attr] > fs[type=attr] > f[name=type]','manual')
101
102 ->attr_is('#s38','from','1266')
103 ->attr_is('#s38','to','1266')
104 ->attr_is('#s38','l','2')
105 ->attr_is('#s38 > fs','type','struct')
106 ->text_is('#s38 > fs > f[name=name]','back')
107 ->element_count_is('', 196);
Akron2a60c532020-02-13 15:52:18 +0100108
Akron044bd922020-07-30 09:12:28 +0200109 $t->file_exists_not('GOE/AGA/00000/base/tokens.xml', 'External not generated');
Akron2a60c532020-02-13 15:52:18 +0100110
Akron044bd922020-07-30 09:12:28 +0200111 # Uncompress GOE/AGA/00000/base/tokens_aggressive.xml from zip file
112 $t->unzip_xml('GOE/AGA/00000/base/tokens_aggressive.xml')
113 ->attr_is('spanList span:nth-child(1)', 'to', 8)
114 ->attr_is('spanList span#t_1', 'from', 9)
115 ->attr_is('spanList span#t_1', 'to', 11)
Akron2a60c532020-02-13 15:52:18 +0100116
Akron044bd922020-07-30 09:12:28 +0200117 ->attr_is('spanList span#t_67', 'from', 427)
118 ->attr_is('spanList span#t_67', 'to', 430)
Akron2a60c532020-02-13 15:52:18 +0100119
Akron044bd922020-07-30 09:12:28 +0200120 ->attr_is('spanList span#t_214', 'from', 1209)
121 ->attr_is('spanList span#t_214', 'to', 1212)
Akron2a60c532020-02-13 15:52:18 +0100122
Akron044bd922020-07-30 09:12:28 +0200123 ->element_count_is('spanList span', 227);
Peter Harders57c884e2020-07-16 01:28:52 +0200124
Akron044bd922020-07-30 09:12:28 +0200125 # Uncompress GOE/AGA/00000/base/tokens_conservative.xml from zip file
126 $t->unzip_xml('GOE/AGA/00000/base/tokens_conservative.xml')
127 ->attr_is('spanList span:nth-child(1)', 'to', 8)
Akron2a60c532020-02-13 15:52:18 +0100128
Akron044bd922020-07-30 09:12:28 +0200129 ->attr_is('spanList span#t_1', 'from', 9)
130 ->attr_is('spanList span#t_1', 'to', 11)
Akron797e8072020-02-13 07:59:40 +0100131
Akron044bd922020-07-30 09:12:28 +0200132 ->attr_is('spanList span#t_67', 'from', 427)
133 ->attr_is('spanList span#t_67', 'to', 430)
Akroneac374d2020-07-07 09:00:44 +0200134
Akron044bd922020-07-30 09:12:28 +0200135 ->attr_is('spanList span#t_214', 'from', 1209)
136 ->attr_is('spanList span#t_214', 'to', 1212)
Akroneac374d2020-07-07 09:00:44 +0200137
Akron044bd922020-07-30 09:12:28 +0200138 ->element_count_is('spanList span', 227);
139};
Akroneac374d2020-07-07 09:00:44 +0200140
Akroneac374d2020-07-07 09:00:44 +0200141
Akron044bd922020-07-30 09:12:28 +0200142subtest 'Tokenize with external tokenizer' => sub {
Akroneac374d2020-07-07 09:00:44 +0200143
Akron044bd922020-07-30 09:12:28 +0200144 my $cmd = catfile($f, 'cmd', 'tokenizer.pl');
Akroneac374d2020-07-07 09:00:44 +0200145
Akron044bd922020-07-30 09:12:28 +0200146 test_tei2korapxml(
147 file => $file,
148 param => "-tc='perl $cmd'",
149 tmp => 'script_out2'
150 )
151 ->stderr_like(qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!)
152 ->file_readable('GOE/AGA/00000/base/tokens.xml')
Akroneac374d2020-07-07 09:00:44 +0200153
Akron044bd922020-07-30 09:12:28 +0200154 # Uncompress GOE/AGA/00000/base/tokens.xml from zip file
155 ->unzip_xml('GOE/AGA/00000/base/tokens.xml')
156 ->attr_is('spanList span:nth-child(1)', 'to', 8)
157 ->attr_is('spanList span#t_1', 'from', 9)
158 ->attr_is('spanList span#t_1', 'to', 11)
159 ->attr_is('spanList span#t_67', 'from', 427)
160 ->attr_is('spanList span#t_67', 'to', 430)
161 ->attr_is('spanList span#t_214', 'from', 1209)
162 ->attr_is('spanList span#t_214', 'to', 1212)
163 ->element_count_is('spanList span', 227);
164};
Akroneac374d2020-07-07 09:00:44 +0200165
166
Akron044bd922020-07-30 09:12:28 +0200167subtest 'Test Tokenizations' => sub {
Akroneac374d2020-07-07 09:00:44 +0200168
Akron044bd922020-07-30 09:12:28 +0200169 my $t = test_tei2korapxml(
170 file => catfile($f, 'data', 'text_with_blanks.i5.xml'),
171 tmp => 'script_out3',
172 param => '-ti'
173 )->stderr_like(qr!tei2korapxml: .*? text_id=CORP_DOC.00001!);
Akron8b511f92020-07-09 17:28:08 +0200174
Akron044bd922020-07-30 09:12:28 +0200175 # ~ test conservative tokenization ~
176 $t->unzip_xml('CORP/DOC/00001/base/tokens_conservative.xml')
177 ->attr_is('spanList span:nth-child(1)', 'to', 6)
Akron8b511f92020-07-09 17:28:08 +0200178
Akron044bd922020-07-30 09:12:28 +0200179 ->attr_is('spanList span#t_1', 'from', 7)
180 ->attr_is('spanList span#t_1', 'to', 9)
Akron8b511f92020-07-09 17:28:08 +0200181
Akron044bd922020-07-30 09:12:28 +0200182 ->attr_is('spanList span#t_3', 'from', 12)
183 ->attr_is('spanList span#t_3', 'to', 16)
Akron8b511f92020-07-09 17:28:08 +0200184
Akron044bd922020-07-30 09:12:28 +0200185 ->attr_is('spanList span#t_9', 'from', 36)
186 ->attr_is('spanList span#t_9', 'to', 37)
Akron8b511f92020-07-09 17:28:08 +0200187
Akron044bd922020-07-30 09:12:28 +0200188 ->attr_is('spanList span#t_13', 'from', 44)
189 ->attr_is('spanList span#t_13', 'to', 45) # "
Akron8b511f92020-07-09 17:28:08 +0200190
Akron044bd922020-07-30 09:12:28 +0200191 ->attr_is('spanList span#t_14', 'from', 45) # twenty-two
192 ->attr_is('spanList span#t_14', 'to', 55)
Peter Harders42e18a62020-07-21 02:43:26 +0200193
Akron044bd922020-07-30 09:12:28 +0200194 ->attr_is('spanList span#t_15', 'from', 55) # "
195 ->attr_is('spanList span#t_15', 'to', 56)
Akron8b511f92020-07-09 17:28:08 +0200196
Akron044bd922020-07-30 09:12:28 +0200197 ->attr_is('spanList span#t_19', 'from', 66)
198 ->attr_is('spanList span#t_19', 'to', 67)
Peter Hardersb1227172020-07-21 02:12:10 +0200199
Akron044bd922020-07-30 09:12:28 +0200200 ->element_count_is('spanList span', 20);
Peter Harders71f072b2020-07-15 14:15:01 +0200201
Peter Harders71f072b2020-07-15 14:15:01 +0200202
Akron044bd922020-07-30 09:12:28 +0200203 # ~ test aggressive tokenization ~
204 $t->unzip_xml('CORP/DOC/00001/base/tokens_aggressive.xml')
205 ->attr_is('spanList span:nth-child(1)', 'to', 6)
Peter Harders71f072b2020-07-15 14:15:01 +0200206
Akron044bd922020-07-30 09:12:28 +0200207 ->attr_is('spanList span#t_1', 'from', 7)
208 ->attr_is('spanList span#t_1', 'to', 9)
Peter Harders71f072b2020-07-15 14:15:01 +0200209
Akron044bd922020-07-30 09:12:28 +0200210 ->attr_is('spanList span#t_3', 'from', 12)
211 ->attr_is('spanList span#t_3', 'to', 16)
Peter Harders71f072b2020-07-15 14:15:01 +0200212
Akron044bd922020-07-30 09:12:28 +0200213 ->attr_is('spanList span#t_9', 'from', 36)
214 ->attr_is('spanList span#t_9', 'to', 37)
Peter Harders71f072b2020-07-15 14:15:01 +0200215
Akron044bd922020-07-30 09:12:28 +0200216 ->attr_is('spanList span#t_13', 'from', 44)
217 ->attr_is('spanList span#t_13', 'to', 45) # "
Peter Harders71f072b2020-07-15 14:15:01 +0200218
Akron044bd922020-07-30 09:12:28 +0200219 ->attr_is('spanList span#t_14', 'from', 45) # twenty
220 ->attr_is('spanList span#t_14', 'to', 51)
Peter Harders71f072b2020-07-15 14:15:01 +0200221
Akron044bd922020-07-30 09:12:28 +0200222 ->attr_is('spanList span#t_15', 'from', 51) # -
223 ->attr_is('spanList span#t_15', 'to', 52)
Peter Harders71f072b2020-07-15 14:15:01 +0200224
Akron044bd922020-07-30 09:12:28 +0200225 ->attr_is('spanList span#t_16', 'from', 52) # two
226 ->attr_is('spanList span#t_16', 'to', 55)
Peter Harders71f072b2020-07-15 14:15:01 +0200227
Akron044bd922020-07-30 09:12:28 +0200228 ->attr_is('spanList span#t_17', 'from', 55) # "
229 ->attr_is('spanList span#t_17', 'to', 56)
Peter Harders71f072b2020-07-15 14:15:01 +0200230
Akron044bd922020-07-30 09:12:28 +0200231 ->attr_is('spanList span#t_21', 'from', 66)
232 ->attr_is('spanList span#t_21', 'to', 67)
Peter Harders71f072b2020-07-15 14:15:01 +0200233
Akron044bd922020-07-30 09:12:28 +0200234 ->element_count_is('spanList span', 22);
235};
Peter Harders71f072b2020-07-15 14:15:01 +0200236
237
Peter Harders42e18a62020-07-21 02:43:26 +0200238subtest 'Check Tokenization Flags' => sub {
239
240 # Get external tokenizer
241 my $f = dirname(__FILE__);
242 my $cmd = catfile($f, 'cmd', 'tokenizer.pl');
243
244 # Load example file
Akron044bd922020-07-30 09:12:28 +0200245 test_tei2korapxml(
246 file => catfile($f, 'data', 'goe_sample.i5.xml'),
247 param => "-ti -tc 'perl $cmd'",
248 tmp => 'script_tokflags'
249 )
250 ->stderr_like(qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!)
251 ->file_exists('GOE/AGA/00000/base/tokens_aggressive.xml')
252 ->file_exists('GOE/AGA/00000/base/tokens_conservative.xml')
253 ->file_exists('GOE/AGA/00000/base/tokens.xml')
254 ;
Peter Harders42e18a62020-07-21 02:43:26 +0200255};
256
Peter Harders1c5ce152020-07-22 18:02:50 +0200257
258subtest 'Test utf-8 handling' => sub {
Peter Harders1c5ce152020-07-22 18:02:50 +0200259 # Introduce invalid utf-8 characters
260 my $text_sigle;
Akron54e363c2020-07-29 11:01:03 +0200261 {
262 no warnings;
263 # $text_sigle printed to file, without encoding: Aþƒ¿¿¿¿¿A_Bþƒ¿¿¿¿¿B.Cþƒ¿¿¿¿¿C
264 # the utf8-sequence 'þƒ¿¿¿¿¿' encodes 32 bit of data (see 0x7FFF_FFFF in perlunicode)
265 $text_sigle = "A\x{FFFF_FFFF}A_B\x{FFFF_FFFF}B.C\x{FFFF_FFFF}C"
266 }
267 # If CHECK is 0, encoding and decoding replace any malformed character
268 # with a substitution character.
Peter Harders1c5ce152020-07-22 18:02:50 +0200269 # � = substitution character
270 my $text_sigle_lax = encode_utf8($text_sigle);
271 my $text_sigle_esc = encode('UTF-8', $text_sigle);
272
273 is(length($text_sigle), 11); # A�A_B�B.C�C (char string => length(�) = 1)
274 is(length($text_sigle_lax), 29); # Aþƒ¿¿¿¿¿A_Bþƒ¿¿¿¿¿B.Cþƒ¿¿¿¿¿C (byte string)
275 is(length($text_sigle_esc), 17); # A�A_B�B.C�C (byte string => length(�) = 3)
276
Akron54e363c2020-07-29 11:01:03 +0200277
278 my $tpl;
279 {
280 no warnings;
281 $tpl = i5_template(
282 korpusSigle => "A\x{FFFF_FFFF}A",
283 dokumentSigle => "A\x{FFFF_FFFF}A_B\x{FFFF_FFFF}B",
284 text => "<p>d\x{FFFF_FFFF}d e\x{FFFF_FFFF}e f\x{FFFF_FFFF}f</p>",
285 textSigle => $text_sigle
286 );
287 };
Peter Harders1c5ce152020-07-22 18:02:50 +0200288
289 my ($fh, $tplfile) = korap_tempfile('script_out4');
290 binmode($fh);
291 print $fh encode_utf8($tpl); # => text_id=Aþƒ¿¿¿¿¿A_Bþƒ¿¿¿¿¿B.Cþƒ¿¿¿¿¿C
292 close($fh);
293
294 my (undef, $outzip) = korap_tempfile('script_out5');
295
Akron54e363c2020-07-29 11:01:03 +0200296 # because output 'textid=...' goes to STDERR (see script/tei2korapxml)
297 binmode STDERR, qw{ :encoding(UTF-8) };
Peter Harders1c5ce152020-07-22 18:02:50 +0200298
299 stderr_like(
300 sub { `cat '$tplfile' | perl '$script' -ti > '$outzip'` },
301 qr!tei2korapxml: .*? text_id=$text_sigle_lax!, # see above: print $fh encode_utf8($tpl);
302 );
303};
304
Akrone68ec0c2020-07-28 18:06:19 +0200305
306subtest 'Check Inline annotations' => sub {
307
308 # Load example file
309 my $file = catfile($f, 'data', 'goe_sample_tagged.i5.xml');
310
Akron044bd922020-07-30 09:12:28 +0200311 my $t = test_tei2korapxml(
312 file => $file,
313 env => 'KORAPXMLTEI_INLINE=1',
314 tmp => 'script_tagged'
315 )
316 ->stderr_like(qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!)
Akrone68ec0c2020-07-28 18:06:19 +0200317
Akron044bd922020-07-30 09:12:28 +0200318 # Check zip using xml loy
319 ->unzip_xml('GOE/AGA/00000/tokens/morpho.xml')
Akrone68ec0c2020-07-28 18:06:19 +0200320
Akron044bd922020-07-30 09:12:28 +0200321 ->attr_is('layer', 'docid', 'GOE_AGA.00000')
Akrone68ec0c2020-07-28 18:06:19 +0200322 ->attr_is('spanList span:nth-child(1)', 'id', 's0')
323 ->attr_is('spanList span:nth-child(1)', 'from', '75')
324 ->attr_is('spanList span:nth-child(1)', 'to', '81')
325 ->attr_is('spanList span:nth-child(1)', 'l', '7')
326
327 ->attr_is('span#s0 > fs', 'type', 'lex')
328 ->attr_is('span#s0 > fs', 'xmlns', 'http://www.tei-c.org/ns/1.0')
329 ->attr_is('span#s0 > fs > f > fs > f:nth-child(1)', 'name', 'pos')
330 ->text_is('span#s0 > fs > f > fs > f:nth-child(1)', 'A')
331 ->attr_is('span#s0 > fs > f > fs > f:nth-child(2)', 'name', 'msd')
332 ->text_is('span#s0 > fs > f > fs > f:nth-child(2)', '@NH')
333
334 ->attr_is('span#s25', 'from', '259')
335 ->attr_is('span#s25', 'to', '263')
336 ->attr_is('span#s25', 'l', '7')
337 ->attr_is('span#s25 > fs > f > fs > f:nth-child(1)', 'name', 'pos')
338 ->text_is('span#s25 > fs > f > fs > f:nth-child(1)', 'PRON')
339 ->attr_is('span#s25 > fs > f > fs > f:nth-child(2)', 'name', 'msd')
340 ->text_is('span#s25 > fs > f > fs > f:nth-child(2)', '@NH')
341
342 ->attr_is('span#s58', 'from', '495')
343 ->attr_is('span#s58', 'to', '500')
344 ->attr_is('span#s58', 'l', '7')
345 ->attr_is('span#s58 > fs > f > fs > f:nth-child(1)', 'name', 'pos')
346 ->text_is('span#s58 > fs > f > fs > f:nth-child(1)', 'N')
347 ->attr_is('span#s58 > fs > f > fs > f:nth-child(2)', 'name', 'msd')
348 ->text_is('span#s58 > fs > f > fs > f:nth-child(2)', '@NH')
349
350 ->attr_is('span#s119', 'from', '914')
351 ->attr_is('span#s119', 'to', '925')
352 ->attr_is('span#s119', 'l', '7')
353 ->attr_is('span#s119 > fs > f > fs > f:nth-child(1)', 'name', 'pos')
354 ->text_is('span#s119 > fs > f > fs > f:nth-child(1)', 'A')
355 ->attr_is('span#s119 > fs > f > fs > f:nth-child(2)', 'name', 'msd')
356 ->text_is('span#s119 > fs > f > fs > f:nth-child(2)', '@NH')
357 ->element_exists_not('span#s120')
358 ;
359};
360
Akron09e0b2c2020-07-28 15:57:01 +0200361subtest 'Check Inline annotations with untagged file' => sub {
362
363 # Load example file
364 my $file = catfile($f, 'data', 'goe_sample.i5.xml');
365
366 my ($fh, $outzip) = korap_tempfile('script_untagged');
367
368 # Generate zip file (unportable!)
369 stderr_like(
370 sub { `cat '$file' | KORAPXMLTEI_INLINE=1 perl '$script' > '$outzip'` },
371 qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!,
372 'Processing 1'
373 );
374
375 # TODO: there should be a better way to test this
376 stderr_unlike(
377 sub { `cat '$file' | KORAPXMLTEI_INLINE=1 perl '$script' > '$outzip'` },
378 qr!.*undefined value.*!,
379 'Processing 2'
380 );
381 #
382
383 ok(-e $outzip, "File $outzip exists");
384
385 my $zip = IO::Uncompress::Unzip->new(
386 $outzip,
387 Name => 'GOE/AGA/00000/tokens/morpho.xml'
388 );
389 ok((not $zip), 'missing morpho.xml');
390
391 $zip = IO::Uncompress::Unzip->new(
392 $outzip,
393 Name => 'GOE/AGA/00000/struct/structure.xml'
394 );
395 ok($zip, 'found structure.xml');
396};
Akrone68ec0c2020-07-28 18:06:19 +0200397
Akron3378dfd2020-08-01 15:01:36 +0200398
399subtest 'Test Log' => sub {
400 test_tei2korapxml(
401 tmp => 'script_out',
402 file => $file,
403 param => '-l=warn'
404 )->stderr_is('');
405};
406
407
Akron797e8072020-02-13 07:59:40 +0100408done_testing;