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; |
| 8 | use Benchmark ':hireswallclock'; |
| 9 | use lib 'lib', '../lib'; |
| 10 | |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 11 | use File::Basename 'dirname'; |
| 12 | use File::Spec::Functions 'catdir'; |
| 13 | |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 14 | use_ok('KorAP::Document'); |
| 15 | |
| 16 | my @layers; |
| 17 | # push(@layers, ['Base', 'Sentences']); |
| 18 | push(@layers, ['Base', 'Paragraphs']); |
| 19 | |
| 20 | # OpenNLP |
| 21 | push(@layers, ['OpenNLP', 'Morpho']); |
| 22 | push(@layers, ['OpenNLP', 'Sentences']); |
| 23 | |
| 24 | # CoreNLP |
| 25 | push(@layers, ['CoreNLP', 'NamedEntities', 'ne_dewac_175m_600']); |
| 26 | push(@layers, ['CoreNLP', 'NamedEntities', 'ne_hgc_175m_600']); |
| 27 | push(@layers, ['CoreNLP', 'Sentences']); |
| 28 | |
| 29 | # Connexor |
| 30 | push(@layers, ['Connexor', 'Morpho']); |
| 31 | push(@layers, ['Connexor', 'Syntax']); |
| 32 | push(@layers, ['Connexor', 'Phrase']); |
| 33 | push(@layers, ['Connexor', 'Sentences']); |
| 34 | |
| 35 | # TreeTagger |
| 36 | push(@layers, ['TreeTagger', 'Morpho']); |
| 37 | push(@layers, ['TreeTagger', 'Sentences']); |
| 38 | |
| 39 | # Mate |
| 40 | # push(@layers, ['Mate', 'Morpho']); |
| 41 | push(@layers, ['Mate', 'Dependency']); |
| 42 | |
| 43 | # XIP |
| 44 | push(@layers, ['XIP', 'Morpho']); |
| 45 | push(@layers, ['XIP', 'Constituency']); |
| 46 | push(@layers, ['XIP', 'Dependency']); |
| 47 | push(@layers, ['XIP', 'Sentences']); |
| 48 | |
| 49 | |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 50 | my $path = catdir(dirname(__FILE__), 'WPD/00001'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 51 | ok(my $doc = KorAP::Document->new( path => $path . '/' ), 'Load Korap::Document'); |
| 52 | is($doc->path, $path . '/', 'Path'); |
| 53 | |
| 54 | ok($doc = KorAP::Document->new( path => $path ), 'Load Korap::Document'); |
| 55 | is($doc->path, $path . '/', 'Path'); |
| 56 | |
| 57 | ok($doc->parse, 'Parse document'); |
| 58 | |
| 59 | # Metdata |
| 60 | is($doc->title, 'A', 'title'); |
| 61 | ok(!$doc->sub_title, 'subTitle'); |
| 62 | |
| 63 | is($doc->id, 'WPD_AAA.00001', 'ID'); |
| 64 | is($doc->corpus_id, 'WPD', 'corpusID'); |
| 65 | is($doc->pub_date, '20050328', 'pubDate'); |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 66 | is($doc->pub_place, 'URL:http://de.wikipedia.org', 'pubPlace'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 67 | is($doc->text_class->[0], 'freizeit-unterhaltung', 'TextClass'); |
| 68 | is($doc->text_class->[1], 'reisen', 'TextClass'); |
| 69 | is($doc->text_class->[2], 'wissenschaft', 'TextClass'); |
| 70 | is($doc->text_class->[3], 'populaerwissenschaft', 'TextClass'); |
| 71 | ok(!$doc->text_class->[4], 'TextClass'); |
| 72 | is($doc->author->[0], 'Ruru', 'author'); |
| 73 | is($doc->author->[1], 'Jens.Ol', 'author'); |
| 74 | is($doc->author->[2], 'Aglarech', 'author'); |
| 75 | ok(!$doc->author->[3], 'author'); |
| 76 | |
| 77 | # Get tokens |
| 78 | use_ok('KorAP::Tokenizer'); |
| 79 | # Get tokenization |
| 80 | ok(my $tokens = KorAP::Tokenizer->new( |
| 81 | path => $doc->path, |
| 82 | doc => $doc, |
| 83 | foundry => 'OpenNLP', |
| 84 | layer => 'Tokens', |
| 85 | name => 'tokens' |
| 86 | ), 'New Tokenizer'); |
| 87 | ok($tokens->parse, 'Parse'); |
| 88 | |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 89 | is($tokens->path, $path . '/', 'Path'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 90 | is($tokens->foundry, 'OpenNLP', 'Foundry'); |
| 91 | is($tokens->doc->id, 'WPD_AAA.00001', 'Doc id'); |
| 92 | is($tokens->should, 1068, 'Should'); |
| 93 | is($tokens->have, 923, 'Have'); |
| 94 | is($tokens->name, 'tokens', 'Name'); |
| 95 | is($tokens->layer, 'Tokens', 'Layer'); |
| 96 | |
| 97 | is($tokens->stream->pos(118)->to_string, '[(763-768)s:Linie|i:linie|_118#763-768]', 'Token is correct'); |
| 98 | |
| 99 | # Add Mate |
| 100 | ok($tokens->add('Mate', 'Morpho'), 'Add Mate'); |
| 101 | |
| 102 | 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'); |
| 103 | |
| 104 | # Add sentences |
| 105 | ok($tokens->add('Base', 'Sentences'), 'Add Sentences'); |
| 106 | |
Nils Diewald | 98767bb | 2014-04-25 20:31:19 +0000 | [diff] [blame] | 107 | is($tokens->stream->pos(0)->to_string, '[(0-1)s:A|i:a|_0#0-1|-:tokens$<i>923|mate/p:XY|<>:base/s#0-74$<i>13|<>:base/text#0-6083$<i>923|-:base/sentences$<i>96]', 'Startinfo'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 108 | |
| 109 | foreach (@layers) { |
| 110 | ok($tokens->add(@$_), 'Add '. join(', ', @$_)); |
| 111 | }; |
| 112 | |
Nils Diewald | 47c3ef3 | 2014-04-30 19:13:17 +0000 | [diff] [blame^] | 113 | is($tokens->stream->pos(0)->to_string, '[(0-1)s:A|i:a|_0#0-1|-:tokens$<i>923|mate/p:XY|<>:base/s#0-74$<i>13|<>:base/text#0-6083$<i>923|-:base/sentences$<i>96|<>:base/para#0-224$<i>34|-:base/paragraphs$<i>76|opennlp/p:NE|<>:opennlp/s#0-74$<i>13|-:opennlp/sentences$<i>50|<>:corenlp/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#0-74$<i>13|-:cnx/sentences$<i>62|tt/l:A|tt/p:NN|tt/l:A|tt/p:FM|<>:tt/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#0-74$<i>13|-:xip/sentences$<i>64]', 'Startinfo'); |
Nils Diewald | 7b84722 | 2014-04-23 11:14:00 +0000 | [diff] [blame] | 114 | |
| 115 | |
| 116 | is($tokens->stream->pos(118)->to_string, |
| 117 | '[(763-768)s:Linie|i:linie|_118#763-768|'. |
| 118 | 'mate/l:linie|mate/p:NN|mate/m:case:acc|mate/m:number:sg|mate/m:gender:fem|' . |
| 119 | 'opennlp/p:NN|'. |
| 120 | 'cnx/l:linie|cnx/p:N|cnx/syn:@NH|'. |
| 121 | 'tt/l:Linie|tt/p:NN|'. |
| 122 | '<:mate/d:NK$<i>116|<:mate/d:NK$<i>117|>:mate/d:NK$<i>115|'. |
| 123 | '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'); |
| 124 | |
| 125 | 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'); |
| 126 | |
| 127 | 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'); |
| 128 | |
| 129 | done_testing; |
| 130 | |
| 131 | __END__ |