Akron | 516753c | 2016-02-26 14:07:58 +0100 | [diff] [blame] | 1 | use strict; |
| 2 | use warnings; |
| 3 | use Test::More; |
| 4 | use Data::Dumper; |
| 5 | use JSON::XS; |
| 6 | |
| 7 | use Benchmark qw/:hireswallclock/; |
| 8 | |
| 9 | my $t = Benchmark->new; |
| 10 | |
| 11 | use utf8; |
| 12 | use lib 'lib', '../lib'; |
| 13 | |
| 14 | use File::Basename 'dirname'; |
| 15 | use File::Spec::Functions 'catdir'; |
| 16 | |
| 17 | use_ok('KorAP::XML::Krill'); |
| 18 | |
| 19 | # GOE/AGA/03828 |
| 20 | my $path = catdir(dirname(__FILE__), '../corpus/WPD/00001'); |
| 21 | # my $path = '/home/ndiewald/Repositories/korap/KorAP-sandbox/KorAP-lucene-indexer/t/GOE/AGA/03828'; |
| 22 | |
| 23 | ok(my $doc = KorAP::XML::Krill->new( path => $path . '/' ), 'Load Korap::Document'); |
| 24 | ok($doc->parse, 'Parse document'); |
| 25 | |
| 26 | is($doc->text_sigle, 'WPD_AAA.00001', 'Correct text sigle'); |
| 27 | is($doc->doc_sigle, 'WPD_AAA', 'Correct document sigle'); |
| 28 | is($doc->corpus_sigle, 'WPD', 'Correct corpus sigle'); |
| 29 | |
| 30 | is($doc->title, 'A', 'Title'); |
| 31 | is($doc->pub_place, 'URL:http://de.wikipedia.org', 'PubPlace'); |
| 32 | is($doc->pub_date, '20050328', 'Creation Date'); |
| 33 | ok(!$doc->sub_title, 'SubTitle'); |
| 34 | is($doc->author, 'Ruru; Jens.Ol; Aglarech; u.a.', 'Author'); |
| 35 | |
| 36 | ok(!$doc->doc_title, 'Correct Doc title'); |
| 37 | ok(!$doc->doc_sub_title, 'Correct Doc Sub title'); |
| 38 | ok(!$doc->doc_author, 'Correct Doc author'); |
| 39 | ok(!$doc->doc_editor, 'Correct Doc editor'); |
| 40 | |
| 41 | ok(!$doc->corpus_title, 'Correct Corpus title'); |
| 42 | ok(!$doc->corpus_sub_title, 'Correct Corpus Sub title'); |
| 43 | |
| 44 | # Tokenization |
| 45 | use_ok('KorAP::XML::Tokenizer'); |
| 46 | |
| 47 | my ($token_base_foundry, $token_base_layer) = (qw/OpenNLP Tokens/); |
| 48 | |
| 49 | # Get tokenization |
| 50 | my $tokens = KorAP::XML::Tokenizer->new( |
| 51 | path => $doc->path, |
| 52 | doc => $doc, |
| 53 | foundry => $token_base_foundry, |
| 54 | layer => $token_base_layer, |
| 55 | name => 'tokens' |
| 56 | ); |
| 57 | ok($tokens, 'Token Object is fine'); |
| 58 | ok($tokens->parse, 'Token parsing is fine'); |
| 59 | |
| 60 | my $output = $tokens->to_data; |
| 61 | |
| 62 | is(substr($output->{data}->{text}, 0, 100), 'A bzw. a ist der erste Buchstabe des lateinischen Alphabets und ein Vokal. Der Buchstabe A hat in de', 'Primary Data'); |
| 63 | is($output->{data}->{name}, 'tokens', 'tokenName'); |
| 64 | is($output->{data}->{tokenSource}, 'opennlp#tokens', 'tokenSource'); |
| 65 | |
| 66 | is($output->{version}, '0.03', 'version'); |
| 67 | is($output->{data}->{foundries}, '', 'Foundries'); |
| 68 | is($output->{data}->{layerInfos}, '', 'layerInfos'); |
| 69 | is($output->{data}->{stream}->[0]->[4], 's:A', 'data'); |
| 70 | |
| 71 | $tokens->add('Mate', 'Dependency'); |
| 72 | |
| 73 | my $stream = $tokens->to_data->{data}->{stream}; |
| 74 | |
Akron | 2d88620 | 2016-03-06 23:21:40 +0100 | [diff] [blame^] | 75 | is($stream->[77]->[0], '<:mate/d:--$<b>34<i>78<s>0<s>0', 'element to term'); |
Akron | 339a951 | 2016-03-05 12:39:57 +0100 | [diff] [blame] | 76 | #is($stream->[77]->[1], '<>:mate/d:&&&$<b>64<i>498<i>499<i>78<b>0<s>1', 'element to term'); |
Akron | 2d88620 | 2016-03-06 23:21:40 +0100 | [diff] [blame^] | 77 | is($stream->[78]->[0], '>:mate/d:--$<b>33<i>498<i>499<i>77<i>78<s>0<s>0', 'term to element'); |
Akron | 339a951 | 2016-03-05 12:39:57 +0100 | [diff] [blame] | 78 | # is($stream->[78]->[3], 'mate/d:&&&$<b>128<s>1', 'Node'); |
Akron | 516753c | 2016-02-26 14:07:58 +0100 | [diff] [blame] | 79 | |
| 80 | |
| 81 | done_testing; |
| 82 | __END__ |
| 83 | |
| 84 | |
| 85 | |
| 86 | |