Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 1 | #!/usr/bin/env perl |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 2 | # source ~/perl5/perlbrew/etc/bashrc |
| 3 | # perlbrew switch perl-blead@korap |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 4 | use strict; |
| 5 | use warnings; |
| 6 | use utf8; |
| 7 | use Test::More; |
Nils Diewald | ff6d078 | 2014-06-10 18:26:36 +0000 | [diff] [blame] | 8 | use JSON::XS; |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 9 | use Benchmark ':hireswallclock'; |
| 10 | use lib 'lib', '../lib'; |
| 11 | |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 12 | use File::Basename 'dirname'; |
| 13 | use File::Spec::Functions 'catdir'; |
| 14 | |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 15 | use_ok('KorAP::Document'); |
| 16 | |
| 17 | my @layers; |
| 18 | # push(@layers, ['Base', 'Sentences']); |
| 19 | push(@layers, ['Base', 'Paragraphs']); |
| 20 | |
| 21 | # OpenNLP |
| 22 | push(@layers, ['OpenNLP', 'Morpho']); |
| 23 | push(@layers, ['OpenNLP', 'Sentences']); |
| 24 | |
| 25 | # CoreNLP |
| 26 | push(@layers, ['CoreNLP', 'NamedEntities', 'ne_dewac_175m_600']); |
| 27 | push(@layers, ['CoreNLP', 'NamedEntities', 'ne_hgc_175m_600']); |
| 28 | push(@layers, ['CoreNLP', 'Sentences']); |
| 29 | |
| 30 | # Connexor |
| 31 | push(@layers, ['Connexor', 'Morpho']); |
| 32 | push(@layers, ['Connexor', 'Syntax']); |
| 33 | push(@layers, ['Connexor', 'Phrase']); |
| 34 | push(@layers, ['Connexor', 'Sentences']); |
| 35 | |
| 36 | # TreeTagger |
| 37 | push(@layers, ['TreeTagger', 'Morpho']); |
| 38 | push(@layers, ['TreeTagger', 'Sentences']); |
| 39 | |
| 40 | # Mate |
| 41 | # push(@layers, ['Mate', 'Morpho']); |
| 42 | push(@layers, ['Mate', 'Dependency']); |
| 43 | |
| 44 | # XIP |
| 45 | push(@layers, ['XIP', 'Morpho']); |
| 46 | push(@layers, ['XIP', 'Constituency']); |
| 47 | push(@layers, ['XIP', 'Dependency']); |
| 48 | push(@layers, ['XIP', 'Sentences']); |
| 49 | |
| 50 | |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 51 | my $path = catdir(dirname(__FILE__), 'WPD/00001'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 52 | ok(my $doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document'); |
| 53 | is($doc->path, $path . '/', 'Path'); |
| 54 | |
| 55 | ok($doc = KorAP::Document->new( path => $path ), 'Load Korap::Document'); |
| 56 | is($doc->path, $path . '/', 'Path'); |
| 57 | |
| 58 | ok($doc->parse, 'Parse document'); |
| 59 | |
| 60 | # Metdata |
| 61 | is($doc->title, 'A', 'title'); |
| 62 | ok(!$doc->sub_title, 'subTitle'); |
| 63 | |
| 64 | is($doc->id, 'WPD_AAA.00001', 'ID'); |
| 65 | is($doc->corpus_id, 'WPD', 'corpusID'); |
| 66 | is($doc->pub_date, '20050328', 'pubDate'); |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 67 | is($doc->pub_place, 'URL:http://de.wikipedia.org', 'pubPlace'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 68 | is($doc->text_class->[0], 'freizeit-unterhaltung', 'TextClass'); |
| 69 | is($doc->text_class->[1], 'reisen', 'TextClass'); |
| 70 | is($doc->text_class->[2], 'wissenschaft', 'TextClass'); |
| 71 | is($doc->text_class->[3], 'populaerwissenschaft', 'TextClass'); |
| 72 | ok(!$doc->text_class->[4], 'TextClass'); |
| 73 | is($doc->author->[0], 'Ruru', 'author'); |
| 74 | is($doc->author->[1], 'Jens.Ol', 'author'); |
| 75 | is($doc->author->[2], 'Aglarech', 'author'); |
| 76 | ok(!$doc->author->[3], 'author'); |
| 77 | |
| 78 | # Get tokens |
| 79 | use_ok('KorAP::Tokenizer'); |
| 80 | # Get tokenization |
| 81 | ok(my $tokens = KorAP::Tokenizer->new( |
| 82 | path => $doc->path, |
| 83 | doc => $doc, |
| 84 | foundry => 'OpenNLP', |
| 85 | layer => 'Tokens', |
| 86 | name => 'tokens' |
| 87 | ), 'New Tokenizer'); |
| 88 | ok($tokens->parse, 'Parse'); |
| 89 | |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 90 | is($tokens->path, $path . '/', 'Path'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 91 | is($tokens->foundry, 'OpenNLP', 'Foundry'); |
| 92 | is($tokens->doc->id, 'WPD_AAA.00001', 'Doc id'); |
| 93 | is($tokens->should, 1068, 'Should'); |
| 94 | is($tokens->have, 923, 'Have'); |
| 95 | is($tokens->name, 'tokens', 'Name'); |
| 96 | is($tokens->layer, 'Tokens', 'Layer'); |
| 97 | |
| 98 | is($tokens->stream->pos(118)->to_string, '[(763-768)s:Linie|i:linie|_118#763-768]', 'Token is correct'); |
| 99 | |
| 100 | # Add Mate |
| 101 | ok($tokens->add('Mate', 'Morpho'), 'Add Mate'); |
| 102 | |
| 103 | is($tokens->stream->pos(118)->to_string, '[(763-768)s:Linie|i:linie|_118#763-768|mate/l:linie|mate/p:NN|mate/m:case:acc|mate/m:number:sg|mate/m:gender:fem]', 'with Mate'); |
| 104 | |
| 105 | # Add sentences |
| 106 | ok($tokens->add('Base', 'Sentences'), 'Add Sentences'); |
| 107 | |
Nils Diewald | f03c680 | 2014-07-21 16:39:44 +0000 | [diff] [blame^] | 108 | is($tokens->stream->pos(0)->to_string, '[(0-1)s:A|i:a|_0#0-1|-:tokens$<i>923|mate/p:XY|<>:base/s:s#0-74$<i>13|<>:base/s:t#0-6083$<i>923|-:base/sentences$<i>96]', 'Startinfo'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 109 | |
| 110 | foreach (@layers) { |
| 111 | ok($tokens->add(@$_), 'Add '. join(', ', @$_)); |
| 112 | }; |
| 113 | |
Nils Diewald | f03c680 | 2014-07-21 16:39:44 +0000 | [diff] [blame^] | 114 | is($tokens->stream->pos(0)->to_string, '[(0-1)s:A|i:a|_0#0-1|-:tokens$<i>923|mate/p:XY|<>:base/s:s#0-74$<i>13|<>:base/s:t#0-6083$<i>923|-:base/sentences$<i>96|<>:base/s:p#0-224$<i>34|-:base/paragraphs$<i>76|opennlp/p:NE|<>:opennlp/s:s#0-74$<i>13|-:opennlp/sentences$<i>50|<>:corenlp/s:s#0-6$<i>2|-:corenlp/sentences$<i>65|cnx/l:A|cnx/p:N|cnx/syn:@NH|<>:cnx/c:np#0-1$<i>1|<>:cnx/s:s#0-74$<i>13|-:cnx/sentences$<i>62|tt/l:A|tt/p:NN|tt/l:A|tt/p:FM|<>:tt/s:s#0-6083$<i>923|-:tt/sentences$<i>1|>:mate/d:PNC$<i>2|xip/p:SYMBOL|xip/l:A|<>:xip/c:TOP#0-74$<i>13|<>:xip/c:MC#0-73$<i>13<b>1|<>:xip/c:NP#0-1$<i>1<b>2|<>:xip/c:NPA#0-1$<i>1<b>3|<>:xip/c:NOUN#0-1$<i>1<b>4|<>:xip/c:SYMBOL#0-1$<i>1<b>5|>:xip/d:SUBJ$<i>3|<:xip/d:COORD$<i>1|<>:xip/s:s#0-74$<i>13|-:xip/sentences$<i>64]', 'Startinfo'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 115 | |
| 116 | |
Nils Diewald | ff6d078 | 2014-06-10 18:26:36 +0000 | [diff] [blame] | 117 | #is($tokens->stream->pos(118)->to_string, |
| 118 | # '[(763-768)s:Linie|i:linie|_118#763-768|'. |
| 119 | # 'mate/l:linie|mate/p:NN|mate/m:case:acc|mate/m:number:sg|mate/m:gender:fem|' . |
| 120 | # 'opennlp/p:NN|'. |
| 121 | # 'cnx/l:linie|cnx/p:N|cnx/syn:@NH|'. |
| 122 | # 'tt/l:Linie|tt/p:NN|'. |
| 123 | # '<:mate/d:NK$<i>116|<:mate/d:NK$<i>117|>:mate/d:NK$<i>115|'. |
| 124 | # 'xip/p:NOUN|xip/l:Linie|<>:xip/c:NOUN#763-768$<i>119|<:xip/d:DETERM$<i>116|<:xip/d:NMOD$<i>117]', 'with All'); |
| 125 | |
| 126 | #[(763-768)s:Linie|i:linie|_118#763-768|mate/l:linie|mate/p:NN|mate/m:case:acc|mate/m:number:sg|mate/m:gender:fem|opennlp/p:NN|cnx/l:linie|cnx/p:N|cnx/syn:@NH|tt/l:Linie|tt/p:NN|<:mate/d:NK$<i>116|<:mate/d:NK$<i>117|>:mate/d:NK$<i>115| |
| 127 | # xip/p:NOUN|xip/l:Linie|<:xip/d:DETERM$<i>116|<:xip/d:NMOD$<i>117] |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 128 | |
| 129 | is($tokens->layer_info, 'cnx/c=const cnx/l=lemma cnx/m=msd cnx/p=pos mate/d=dep mate/l=lemma mate/m=msd mate/p=pos opennlp/p=pos tt/l=lemma tt/p=pos xip/c=const xip/d=dep xip/l=lemma xip/p=pos', 'Layer info'); |
| 130 | |
| 131 | is($tokens->support, 'base base/paragraphs base/sentences connexor connexor/morpho connexor/phrase connexor/sentences connexor/syntax corenlp corenlp/namedentities corenlp/namedentities corenlp/namedentities/ne_dewac_175m_600 corenlp/namedentities/ne_hgc_175m_600 corenlp/sentences mate mate/dependency mate/morpho opennlp opennlp/morpho opennlp/sentences treetagger treetagger/morpho treetagger/sentences xip xip/constituency xip/dependency xip/morpho xip/sentences', 'Support'); |
| 132 | |
Nils Diewald | ff6d078 | 2014-06-10 18:26:36 +0000 | [diff] [blame] | 133 | |
| 134 | # encode_json $tokens->stream->to_solr; |
| 135 | |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 136 | done_testing; |
| 137 | |
Nils Diewald | ff6d078 | 2014-06-10 18:26:36 +0000 | [diff] [blame] | 138 | |
| 139 | |
| 140 | |
| 141 | |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 142 | __END__ |