save any defined stemmata in GraphML
[scpubgit/stemmatology.git] / t / text_tradition_parser_self.t
CommitLineData
e867486f 1#!/usr/bin/perl -w
2
3use strict;
4use Test::More 'no_plan';
5$| = 1;
6
7
8
9# =begin testing
10{
11use Text::Tradition;
12binmode STDOUT, ":utf8";
13binmode STDERR, ":utf8";
14eval { no warnings; binmode $DB::OUT, ":utf8"; };
15
16my $tradition = 't/data/florilegium_graphml.xml';
17my $t = Text::Tradition->new(
18 'name' => 'inline',
19 'input' => 'Self',
20 'file' => $tradition,
21 );
22
bbd064a9 23is( ref( $t ), 'Text::Tradition', "Parsed GraphML version 2" );
e867486f 24if( $t ) {
25 is( scalar $t->collation->readings, 319, "Collation has all readings" );
255875b8 26 is( scalar $t->collation->paths, 376, "Collation has all paths" );
e867486f 27 is( scalar $t->witnesses, 13, "Collation has all witnesses" );
28}
bbd064a9 29
2a812726 30# TODO add a relationship, add a stemma, write graphml, reparse it, check that
31# the new data is there
bbd064a9 32$t->language('Greek');
2a812726 33$t->add_stemma( 'dotfile' => 't/data/florilegium.dot' );
bbd064a9 34$t->collation->add_relationship( 'w12', 'w13',
35 { 'type' => 'grammatical', 'scope' => 'global',
36 'annotation' => 'This is some note' } );
37ok( $t->collation->get_relationship( 'w12', 'w13' ), "Relationship set" );
38my $graphml_str = $t->collation->as_graphml;
39
40my $newt = Text::Tradition->new( 'input' => 'Self', 'string' => $graphml_str );
41is( ref( $newt ), 'Text::Tradition', "Parsed current GraphML version" );
42if( $newt ) {
43 is( scalar $newt->collation->readings, 319, "Collation has all readings" );
44 is( scalar $newt->collation->paths, 376, "Collation has all paths" );
45 is( scalar $newt->witnesses, 13, "Collation has all witnesses" );
46 is( scalar $newt->collation->relationships, 1, "Collation has added relationship" );
47 is( $newt->language, 'Greek', "Tradition has correct language setting" );
48 my $rel = $newt->collation->get_relationship( 'w12', 'w13' );
49 ok( $rel, "Found set relationship" );
50 is( $rel->annotation, 'This is some note', "Relationship has its properties" );
2a812726 51 is( scalar $newt->stemmata, 1, "Tradition has its stemma" );
52 is( $newt->stemma(0)->witnesses, $t->stemma(0)->witnesses, "Stemma has correct length witness list" );
bbd064a9 53}
e867486f 54}
55
56
57
58
591;