load extensions statically to avoid bad object wrapping interactions
[scpubgit/stemmatology.git] / base / t / text_tradition_parser_self.t
1 #!/usr/bin/perl -w
2
3 use strict;
4 use Test::More 'no_plan';
5 $| = 1;
6
7
8
9 # =begin testing
10 {
11 use File::Temp;
12 use Safe::Isa;
13 use Test::Warn;
14 use Text::Tradition;
15 use Text::Tradition::Directory;
16 use TryCatch;
17 binmode STDOUT, ":utf8";
18 binmode STDERR, ":utf8";
19 eval { no warnings; binmode $DB::OUT, ":utf8"; };
20
21 my $tradition = 't/data/florilegium_graphml.xml';
22 my $t = Text::Tradition->new( 
23     'name'  => 'inline', 
24     'input' => 'Self',
25     'file'  => $tradition,
26     );
27
28 ok( $t->$_isa('Text::Tradition'), "Parsed GraphML version 2" );
29 if( $t ) {
30     is( scalar $t->collation->readings, 319, "Collation has all readings" );
31     is( scalar $t->collation->paths, 376, "Collation has all paths" );
32     is( scalar $t->witnesses, 13, "Collation has all witnesses" );
33 }
34
35 # TODO add a relationship, add a stemma, write graphml, reparse it, check that 
36 # the new data is there
37 $t->language('Greek');
38 my $stemma_enabled = $t->can('add_stemma');
39 if( $stemma_enabled ) {
40         $t->add_stemma( 'dotfile' => 't/data/florilegium.dot' );
41 }
42 $t->collation->add_relationship( 'w12', 'w13', 
43         { 'type' => 'grammatical', 'scope' => 'global', 
44           'annotation' => 'This is some note' } );
45 ok( $t->collation->get_relationship( 'w12', 'w13' ), "Relationship set" );
46 my $graphml_str = $t->collation->as_graphml;
47
48 my $newt = Text::Tradition->new( 'input' => 'Self', 'string' => $graphml_str );
49 ok( $newt->$_isa('Text::Tradition'), "Parsed current GraphML version" );
50 if( $newt ) {
51     is( scalar $newt->collation->readings, 319, "Collation has all readings" );
52     is( scalar $newt->collation->paths, 376, "Collation has all paths" );
53     is( scalar $newt->witnesses, 13, "Collation has all witnesses" );
54     is( scalar $newt->collation->relationships, 1, "Collation has added relationship" );
55     is( $newt->language, 'Greek', "Tradition has correct language setting" );
56     my $rel = $newt->collation->get_relationship( 'w12', 'w13' );
57     ok( $rel, "Found set relationship" );
58     is( $rel->annotation, 'This is some note', "Relationship has its properties" );
59     if( $stemma_enabled ) {
60             is( scalar $newt->stemmata, 1, "Tradition has its stemma" );
61         is( $newt->stemma(0)->witnesses, $t->stemma(0)->witnesses, "Stemma has correct length witness list" );
62     }
63 }
64
65 # Test user save / restore
66 my $fh = File::Temp->new();
67 my $file = $fh->filename;
68 $fh->close;
69 my $dsn = "dbi:SQLite:dbname=$file";
70 my $userstore = Text::Tradition::Directory->new( { dsn => $dsn,
71         extra_args => { create => 1 } } );
72 my $scope = $userstore->new_scope();
73 my $testuser = $userstore->create_user( { url => 'http://example.com' } );
74 ok( $testuser->$_isa('Text::Tradition::User'), "Created test user via userstore" );
75 $testuser->add_tradition( $newt );
76 is( $newt->user->id, $testuser->id, "Assigned tradition to test user" );
77 $graphml_str = $newt->collation->as_graphml;
78 my $usert;
79 warning_is {
80         $usert = Text::Tradition->new( 'input' => 'Self', 'string' => $graphml_str );
81 } 'DROPPING user assignment without a specified userstore',
82         "Got expected user drop warning on parse";
83 $usert = Text::Tradition->new( 'input' => 'Self', 'string' => $graphml_str,
84         'userstore' => $userstore );
85 is( $usert->user->id, $testuser->id, "Parsed tradition with userstore points to correct user" );
86
87 # Test warning if we can
88 unless( $stemma_enabled ) {
89         my $nst;
90         warnings_exist {
91                 $nst = Text::Tradition->new( 'input' => 'Self', 'file' => 't/data/lexformat.xml' );
92         } [qr/DROPPING stemmata/],
93                 "Got expected stemma drop warning on parse";
94 }
95 }
96
97
98
99
100 1;