Akron | 797e807 | 2020-02-13 07:59:40 +0100 | [diff] [blame] | 1 | use strict; |
| 2 | use warnings; |
| 3 | use File::Basename 'dirname'; |
| 4 | use File::Spec::Functions qw/catfile/; |
Peter Harders | 1c5ce15 | 2020-07-22 18:02:50 +0200 | [diff] [blame] | 5 | use Encode qw!encode_utf8 decode_utf8 encode!; |
Akron | 797e807 | 2020-02-13 07:59:40 +0100 | [diff] [blame] | 6 | |
| 7 | use Test::More; |
| 8 | use Test::Output; |
Peter Harders | 42e18a6 | 2020-07-21 02:43:26 +0200 | [diff] [blame] | 9 | |
| 10 | use FindBin; |
| 11 | BEGIN { |
| 12 | unshift @INC, "$FindBin::Bin/../lib"; |
| 13 | }; |
Peter Harders | 1c5ce15 | 2020-07-22 18:02:50 +0200 | [diff] [blame] | 14 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 15 | use Test::KorAP::XML::TEI qw!korap_tempfile i5_template test_tei2korapxml!; |
Peter Harders | 57c884e | 2020-07-16 01:28:52 +0200 | [diff] [blame] | 16 | |
Akron | 797e807 | 2020-02-13 07:59:40 +0100 | [diff] [blame] | 17 | my $f = dirname(__FILE__); |
| 18 | my $script = catfile($f, '..', 'script', 'tei2korapxml'); |
| 19 | ok(-f $script, 'Script found'); |
| 20 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 21 | stdout_like( |
Akron | 797e807 | 2020-02-13 07:59:40 +0100 | [diff] [blame] | 22 | sub { system('perl', $script, '--help') }, |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 23 | qr!This\s*program\s*is\s*usually\s*called\s*from\s*inside\s*another\s*script\.!, |
Akron | 797e807 | 2020-02-13 07:59:40 +0100 | [diff] [blame] | 24 | 'Help' |
| 25 | ); |
| 26 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 27 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 28 | stdout_like( |
| 29 | sub { system('perl', $script, '--version') }, |
| 30 | qr!tei2korapxml - v\d+?\.\d+?!, |
| 31 | 'Version' |
| 32 | ); |
| 33 | |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 34 | # Load example file |
| 35 | my $file = catfile($f, 'data', 'goe_sample.i5.xml'); |
Peter Harders | 57c884e | 2020-07-16 01:28:52 +0200 | [diff] [blame] | 36 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 37 | subtest 'Basic processing' => sub { |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 38 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 39 | my $t = test_tei2korapxml( |
| 40 | tmp => 'script_out', |
| 41 | file => $file, |
| 42 | param => '-ti' |
| 43 | )->stderr_like(qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!); |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 44 | |
Akron | 6896608 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 45 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 46 | # Uncompress GOE/header.xml from zip file |
| 47 | $t->unzip_xml('GOE/header.xml') |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 48 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 49 | # 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'); |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 54 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 55 | # 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'); |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 60 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 61 | # 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'); |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 65 | |
| 66 | # Uncompress GOE/AGA/00000/data.xml from zip file |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 67 | $t->unzip_xml('GOE/AGA/00000/data.xml') |
| 68 | ->attr_is('raw_text', 'docid', 'GOE_AGA.00000', 'text id') |
Marc Kupietz | fd0e6a9 | 2020-09-09 18:07:29 +0200 | [diff] [blame] | 69 | ->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'); |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 71 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 72 | $t->unzip_xml('GOE/AGA/00000/struct/structure.xml') |
Akron | c57625b | 2020-07-30 11:46:06 +0200 | [diff] [blame] | 73 | ->text_is('span[id=s3] *[name=type]', 'Autobiographie', 'text content') |
| 74 | ->text_is('#s3 *[name=type]', 'Autobiographie', 'text content') |
| 75 | ->attr_is('#s0','to','1266') |
| 76 | ->attr_is('#s0','l','1') |
| 77 | |
| 78 | ->attr_is('#s18','from','925') |
| 79 | ->attr_is('#s18','to','1266') |
| 80 | ->attr_is('#s18','l','5') |
| 81 | ->attr_is('#s18 > fs','type', 'struct') |
| 82 | ->attr_is('#s18 > fs > f','name','name') |
| 83 | ->text_is('#s18 > fs > f','poem') |
| 84 | |
| 85 | ->attr_is('#s19','from','925') |
| 86 | ->attr_is('#s19','to','1098') |
| 87 | ->attr_is('#s19','l','6') |
| 88 | ->attr_is('#s19 > fs','type','struct') |
| 89 | ->text_is('#s19 > fs > f[name=name]','lg') |
| 90 | ->text_is('#s19 > fs > f[name=attr] > fs[type=attr] >f[name=part]','u') |
| 91 | |
| 92 | ->attr_is('#s37','from','1229') |
| 93 | ->attr_is('#s37','to','1266') |
| 94 | ->attr_is('#s37','l','8') |
| 95 | ->attr_is('#s37 > fs','type','struct') |
| 96 | ->text_is('#s37 > fs > f[name=name]','s') |
| 97 | ->text_is('#s37 > fs > f[name=attr] > fs[type=attr] > f[name=type]','manual') |
| 98 | |
| 99 | ->attr_is('#s38','from','1266') |
| 100 | ->attr_is('#s38','to','1266') |
| 101 | ->attr_is('#s38','l','2') |
| 102 | ->attr_is('#s38 > fs','type','struct') |
| 103 | ->text_is('#s38 > fs > f[name=name]','back') |
| 104 | ->element_count_is('', 196); |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 105 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 106 | $t->file_exists_not('GOE/AGA/00000/base/tokens.xml', 'External not generated'); |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 107 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 108 | # Uncompress GOE/AGA/00000/base/tokens_aggressive.xml from zip file |
| 109 | $t->unzip_xml('GOE/AGA/00000/base/tokens_aggressive.xml') |
| 110 | ->attr_is('spanList span:nth-child(1)', 'to', 8) |
| 111 | ->attr_is('spanList span#t_1', 'from', 9) |
| 112 | ->attr_is('spanList span#t_1', 'to', 11) |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 113 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 114 | ->attr_is('spanList span#t_67', 'from', 427) |
| 115 | ->attr_is('spanList span#t_67', 'to', 430) |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 116 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 117 | ->attr_is('spanList span#t_214', 'from', 1209) |
| 118 | ->attr_is('spanList span#t_214', 'to', 1212) |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 119 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 120 | ->element_count_is('spanList span', 227); |
Peter Harders | 57c884e | 2020-07-16 01:28:52 +0200 | [diff] [blame] | 121 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 122 | # Uncompress GOE/AGA/00000/base/tokens_conservative.xml from zip file |
| 123 | $t->unzip_xml('GOE/AGA/00000/base/tokens_conservative.xml') |
| 124 | ->attr_is('spanList span:nth-child(1)', 'to', 8) |
Akron | 2a60c53 | 2020-02-13 15:52:18 +0100 | [diff] [blame] | 125 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 126 | ->attr_is('spanList span#t_1', 'from', 9) |
| 127 | ->attr_is('spanList span#t_1', 'to', 11) |
Akron | 797e807 | 2020-02-13 07:59:40 +0100 | [diff] [blame] | 128 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 129 | ->attr_is('spanList span#t_67', 'from', 427) |
| 130 | ->attr_is('spanList span#t_67', 'to', 430) |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 131 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 132 | ->attr_is('spanList span#t_214', 'from', 1209) |
| 133 | ->attr_is('spanList span#t_214', 'to', 1212) |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 134 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 135 | ->element_count_is('spanList span', 227); |
| 136 | }; |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 137 | |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 138 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 139 | subtest 'Tokenize with external tokenizer' => sub { |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 140 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 141 | my $cmd = catfile($f, 'cmd', 'tokenizer.pl'); |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 142 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 143 | test_tei2korapxml( |
| 144 | file => $file, |
| 145 | param => "-tc='perl $cmd'", |
| 146 | tmp => 'script_out2' |
| 147 | ) |
| 148 | ->stderr_like(qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!) |
| 149 | ->file_readable('GOE/AGA/00000/base/tokens.xml') |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 150 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 151 | # Uncompress GOE/AGA/00000/base/tokens.xml from zip file |
| 152 | ->unzip_xml('GOE/AGA/00000/base/tokens.xml') |
| 153 | ->attr_is('spanList span:nth-child(1)', 'to', 8) |
| 154 | ->attr_is('spanList span#t_1', 'from', 9) |
| 155 | ->attr_is('spanList span#t_1', 'to', 11) |
| 156 | ->attr_is('spanList span#t_67', 'from', 427) |
| 157 | ->attr_is('spanList span#t_67', 'to', 430) |
| 158 | ->attr_is('spanList span#t_214', 'from', 1209) |
| 159 | ->attr_is('spanList span#t_214', 'to', 1212) |
| 160 | ->element_count_is('spanList span', 227); |
| 161 | }; |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 162 | |
| 163 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 164 | subtest 'Test Tokenizations' => sub { |
Akron | eac374d | 2020-07-07 09:00:44 +0200 | [diff] [blame] | 165 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 166 | my $t = test_tei2korapxml( |
| 167 | file => catfile($f, 'data', 'text_with_blanks.i5.xml'), |
| 168 | tmp => 'script_out3', |
| 169 | param => '-ti' |
| 170 | )->stderr_like(qr!tei2korapxml: .*? text_id=CORP_DOC.00001!); |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 171 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 172 | # ~ test conservative tokenization ~ |
| 173 | $t->unzip_xml('CORP/DOC/00001/base/tokens_conservative.xml') |
| 174 | ->attr_is('spanList span:nth-child(1)', 'to', 6) |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 175 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 176 | ->attr_is('spanList span#t_1', 'from', 7) |
| 177 | ->attr_is('spanList span#t_1', 'to', 9) |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 178 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 179 | ->attr_is('spanList span#t_3', 'from', 12) |
| 180 | ->attr_is('spanList span#t_3', 'to', 16) |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 181 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 182 | ->attr_is('spanList span#t_9', 'from', 36) |
| 183 | ->attr_is('spanList span#t_9', 'to', 37) |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 184 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 185 | ->attr_is('spanList span#t_13', 'from', 44) |
| 186 | ->attr_is('spanList span#t_13', 'to', 45) # " |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 187 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 188 | ->attr_is('spanList span#t_14', 'from', 45) # twenty-two |
| 189 | ->attr_is('spanList span#t_14', 'to', 55) |
Peter Harders | 42e18a6 | 2020-07-21 02:43:26 +0200 | [diff] [blame] | 190 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 191 | ->attr_is('spanList span#t_15', 'from', 55) # " |
| 192 | ->attr_is('spanList span#t_15', 'to', 56) |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 193 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 194 | ->attr_is('spanList span#t_19', 'from', 66) |
| 195 | ->attr_is('spanList span#t_19', 'to', 67) |
Peter Harders | b122717 | 2020-07-21 02:12:10 +0200 | [diff] [blame] | 196 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 197 | ->element_count_is('spanList span', 20); |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 198 | |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 199 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 200 | # ~ test aggressive tokenization ~ |
| 201 | $t->unzip_xml('CORP/DOC/00001/base/tokens_aggressive.xml') |
| 202 | ->attr_is('spanList span:nth-child(1)', 'to', 6) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 203 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 204 | ->attr_is('spanList span#t_1', 'from', 7) |
| 205 | ->attr_is('spanList span#t_1', 'to', 9) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 206 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 207 | ->attr_is('spanList span#t_3', 'from', 12) |
| 208 | ->attr_is('spanList span#t_3', 'to', 16) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 209 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 210 | ->attr_is('spanList span#t_9', 'from', 36) |
| 211 | ->attr_is('spanList span#t_9', 'to', 37) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 212 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 213 | ->attr_is('spanList span#t_13', 'from', 44) |
| 214 | ->attr_is('spanList span#t_13', 'to', 45) # " |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 215 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 216 | ->attr_is('spanList span#t_14', 'from', 45) # twenty |
| 217 | ->attr_is('spanList span#t_14', 'to', 51) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 218 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 219 | ->attr_is('spanList span#t_15', 'from', 51) # - |
| 220 | ->attr_is('spanList span#t_15', 'to', 52) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 221 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 222 | ->attr_is('spanList span#t_16', 'from', 52) # two |
| 223 | ->attr_is('spanList span#t_16', 'to', 55) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 224 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 225 | ->attr_is('spanList span#t_17', 'from', 55) # " |
| 226 | ->attr_is('spanList span#t_17', 'to', 56) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 227 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 228 | ->attr_is('spanList span#t_21', 'from', 66) |
| 229 | ->attr_is('spanList span#t_21', 'to', 67) |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 230 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 231 | ->element_count_is('spanList span', 22); |
| 232 | }; |
Peter Harders | 71f072b | 2020-07-15 14:15:01 +0200 | [diff] [blame] | 233 | |
| 234 | |
Peter Harders | 42e18a6 | 2020-07-21 02:43:26 +0200 | [diff] [blame] | 235 | subtest 'Check Tokenization Flags' => sub { |
| 236 | |
| 237 | # Get external tokenizer |
| 238 | my $f = dirname(__FILE__); |
| 239 | my $cmd = catfile($f, 'cmd', 'tokenizer.pl'); |
| 240 | |
| 241 | # Load example file |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 242 | test_tei2korapxml( |
| 243 | file => catfile($f, 'data', 'goe_sample.i5.xml'), |
| 244 | param => "-ti -tc 'perl $cmd'", |
| 245 | tmp => 'script_tokflags' |
| 246 | ) |
| 247 | ->stderr_like(qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!) |
| 248 | ->file_exists('GOE/AGA/00000/base/tokens_aggressive.xml') |
| 249 | ->file_exists('GOE/AGA/00000/base/tokens_conservative.xml') |
| 250 | ->file_exists('GOE/AGA/00000/base/tokens.xml') |
| 251 | ; |
Peter Harders | 42e18a6 | 2020-07-21 02:43:26 +0200 | [diff] [blame] | 252 | }; |
| 253 | |
Peter Harders | 1c5ce15 | 2020-07-22 18:02:50 +0200 | [diff] [blame] | 254 | |
| 255 | subtest 'Test utf-8 handling' => sub { |
Peter Harders | 1c5ce15 | 2020-07-22 18:02:50 +0200 | [diff] [blame] | 256 | # Introduce invalid utf-8 characters |
| 257 | my $text_sigle; |
Akron | 54e363c | 2020-07-29 11:01:03 +0200 | [diff] [blame] | 258 | { |
| 259 | no warnings; |
| 260 | # $text_sigle printed to file, without encoding: Aþ¿¿¿¿¿A_Bþ¿¿¿¿¿B.Cþ¿¿¿¿¿C |
| 261 | # the utf8-sequence 'þ¿¿¿¿¿' encodes 32 bit of data (see 0x7FFF_FFFF in perlunicode) |
| 262 | $text_sigle = "A\x{FFFF_FFFF}A_B\x{FFFF_FFFF}B.C\x{FFFF_FFFF}C" |
| 263 | } |
| 264 | # If CHECK is 0, encoding and decoding replace any malformed character |
| 265 | # with a substitution character. |
Peter Harders | 1c5ce15 | 2020-07-22 18:02:50 +0200 | [diff] [blame] | 266 | # � = substitution character |
| 267 | my $text_sigle_lax = encode_utf8($text_sigle); |
| 268 | my $text_sigle_esc = encode('UTF-8', $text_sigle); |
| 269 | |
| 270 | is(length($text_sigle), 11); # A�A_B�B.C�C (char string => length(�) = 1) |
| 271 | is(length($text_sigle_lax), 29); # Aþ¿¿¿¿¿A_Bþ¿¿¿¿¿B.Cþ¿¿¿¿¿C (byte string) |
| 272 | is(length($text_sigle_esc), 17); # A�A_B�B.C�C (byte string => length(�) = 3) |
| 273 | |
Akron | 54e363c | 2020-07-29 11:01:03 +0200 | [diff] [blame] | 274 | |
| 275 | my $tpl; |
| 276 | { |
| 277 | no warnings; |
| 278 | $tpl = i5_template( |
| 279 | korpusSigle => "A\x{FFFF_FFFF}A", |
| 280 | dokumentSigle => "A\x{FFFF_FFFF}A_B\x{FFFF_FFFF}B", |
| 281 | text => "<p>d\x{FFFF_FFFF}d e\x{FFFF_FFFF}e f\x{FFFF_FFFF}f</p>", |
| 282 | textSigle => $text_sigle |
| 283 | ); |
| 284 | }; |
Peter Harders | 1c5ce15 | 2020-07-22 18:02:50 +0200 | [diff] [blame] | 285 | |
| 286 | my ($fh, $tplfile) = korap_tempfile('script_out4'); |
| 287 | binmode($fh); |
| 288 | print $fh encode_utf8($tpl); # => text_id=Aþ¿¿¿¿¿A_Bþ¿¿¿¿¿B.Cþ¿¿¿¿¿C |
| 289 | close($fh); |
| 290 | |
| 291 | my (undef, $outzip) = korap_tempfile('script_out5'); |
| 292 | |
Akron | 54e363c | 2020-07-29 11:01:03 +0200 | [diff] [blame] | 293 | # because output 'textid=...' goes to STDERR (see script/tei2korapxml) |
| 294 | binmode STDERR, qw{ :encoding(UTF-8) }; |
Peter Harders | 1c5ce15 | 2020-07-22 18:02:50 +0200 | [diff] [blame] | 295 | |
| 296 | stderr_like( |
| 297 | sub { `cat '$tplfile' | perl '$script' -ti > '$outzip'` }, |
| 298 | qr!tei2korapxml: .*? text_id=$text_sigle_lax!, # see above: print $fh encode_utf8($tpl); |
| 299 | ); |
| 300 | }; |
| 301 | |
Akron | e68ec0c | 2020-07-28 18:06:19 +0200 | [diff] [blame] | 302 | |
| 303 | subtest 'Check Inline annotations' => sub { |
| 304 | |
| 305 | # Load example file |
| 306 | my $file = catfile($f, 'data', 'goe_sample_tagged.i5.xml'); |
| 307 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 308 | my $t = test_tei2korapxml( |
| 309 | file => $file, |
| 310 | env => 'KORAPXMLTEI_INLINE=1', |
| 311 | tmp => 'script_tagged' |
| 312 | ) |
| 313 | ->stderr_like(qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!) |
Akron | e68ec0c | 2020-07-28 18:06:19 +0200 | [diff] [blame] | 314 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 315 | # Check zip using xml loy |
| 316 | ->unzip_xml('GOE/AGA/00000/tokens/morpho.xml') |
Akron | e68ec0c | 2020-07-28 18:06:19 +0200 | [diff] [blame] | 317 | |
Akron | 044bd92 | 2020-07-30 09:12:28 +0200 | [diff] [blame] | 318 | ->attr_is('layer', 'docid', 'GOE_AGA.00000') |
Akron | e68ec0c | 2020-07-28 18:06:19 +0200 | [diff] [blame] | 319 | ->attr_is('spanList span:nth-child(1)', 'id', 's0') |
| 320 | ->attr_is('spanList span:nth-child(1)', 'from', '75') |
| 321 | ->attr_is('spanList span:nth-child(1)', 'to', '81') |
| 322 | ->attr_is('spanList span:nth-child(1)', 'l', '7') |
| 323 | |
| 324 | ->attr_is('span#s0 > fs', 'type', 'lex') |
| 325 | ->attr_is('span#s0 > fs', 'xmlns', 'http://www.tei-c.org/ns/1.0') |
| 326 | ->attr_is('span#s0 > fs > f > fs > f:nth-child(1)', 'name', 'pos') |
| 327 | ->text_is('span#s0 > fs > f > fs > f:nth-child(1)', 'A') |
| 328 | ->attr_is('span#s0 > fs > f > fs > f:nth-child(2)', 'name', 'msd') |
| 329 | ->text_is('span#s0 > fs > f > fs > f:nth-child(2)', '@NH') |
| 330 | |
| 331 | ->attr_is('span#s25', 'from', '259') |
| 332 | ->attr_is('span#s25', 'to', '263') |
| 333 | ->attr_is('span#s25', 'l', '7') |
| 334 | ->attr_is('span#s25 > fs > f > fs > f:nth-child(1)', 'name', 'pos') |
| 335 | ->text_is('span#s25 > fs > f > fs > f:nth-child(1)', 'PRON') |
| 336 | ->attr_is('span#s25 > fs > f > fs > f:nth-child(2)', 'name', 'msd') |
| 337 | ->text_is('span#s25 > fs > f > fs > f:nth-child(2)', '@NH') |
| 338 | |
| 339 | ->attr_is('span#s58', 'from', '495') |
| 340 | ->attr_is('span#s58', 'to', '500') |
| 341 | ->attr_is('span#s58', 'l', '7') |
| 342 | ->attr_is('span#s58 > fs > f > fs > f:nth-child(1)', 'name', 'pos') |
| 343 | ->text_is('span#s58 > fs > f > fs > f:nth-child(1)', 'N') |
| 344 | ->attr_is('span#s58 > fs > f > fs > f:nth-child(2)', 'name', 'msd') |
| 345 | ->text_is('span#s58 > fs > f > fs > f:nth-child(2)', '@NH') |
| 346 | |
| 347 | ->attr_is('span#s119', 'from', '914') |
| 348 | ->attr_is('span#s119', 'to', '925') |
| 349 | ->attr_is('span#s119', 'l', '7') |
| 350 | ->attr_is('span#s119 > fs > f > fs > f:nth-child(1)', 'name', 'pos') |
| 351 | ->text_is('span#s119 > fs > f > fs > f:nth-child(1)', 'A') |
| 352 | ->attr_is('span#s119 > fs > f > fs > f:nth-child(2)', 'name', 'msd') |
| 353 | ->text_is('span#s119 > fs > f > fs > f:nth-child(2)', '@NH') |
| 354 | ->element_exists_not('span#s120') |
| 355 | ; |
| 356 | }; |
| 357 | |
Akron | 09e0b2c | 2020-07-28 15:57:01 +0200 | [diff] [blame] | 358 | subtest 'Check Inline annotations with untagged file' => sub { |
| 359 | |
| 360 | # Load example file |
| 361 | my $file = catfile($f, 'data', 'goe_sample.i5.xml'); |
| 362 | |
| 363 | my ($fh, $outzip) = korap_tempfile('script_untagged'); |
| 364 | |
| 365 | # Generate zip file (unportable!) |
| 366 | stderr_like( |
| 367 | sub { `cat '$file' | KORAPXMLTEI_INLINE=1 perl '$script' > '$outzip'` }, |
| 368 | qr!tei2korapxml: .*? text_id=GOE_AGA\.00000!, |
| 369 | 'Processing 1' |
| 370 | ); |
| 371 | |
| 372 | # TODO: there should be a better way to test this |
| 373 | stderr_unlike( |
| 374 | sub { `cat '$file' | KORAPXMLTEI_INLINE=1 perl '$script' > '$outzip'` }, |
| 375 | qr!.*undefined value.*!, |
| 376 | 'Processing 2' |
| 377 | ); |
| 378 | # |
| 379 | |
| 380 | ok(-e $outzip, "File $outzip exists"); |
| 381 | |
| 382 | my $zip = IO::Uncompress::Unzip->new( |
| 383 | $outzip, |
| 384 | Name => 'GOE/AGA/00000/tokens/morpho.xml' |
| 385 | ); |
| 386 | ok((not $zip), 'missing morpho.xml'); |
| 387 | |
| 388 | $zip = IO::Uncompress::Unzip->new( |
| 389 | $outzip, |
| 390 | Name => 'GOE/AGA/00000/struct/structure.xml' |
| 391 | ); |
| 392 | ok($zip, 'found structure.xml'); |
| 393 | }; |
Akron | e68ec0c | 2020-07-28 18:06:19 +0200 | [diff] [blame] | 394 | |
Akron | 3378dfd | 2020-08-01 15:01:36 +0200 | [diff] [blame] | 395 | |
| 396 | subtest 'Test Log' => sub { |
| 397 | test_tei2korapxml( |
| 398 | tmp => 'script_out', |
| 399 | file => $file, |
| 400 | param => '-l=warn' |
| 401 | )->stderr_is(''); |
| 402 | }; |
| 403 | |
| 404 | |
Akron | 797e807 | 2020-02-13 07:59:40 +0100 | [diff] [blame] | 405 | done_testing; |