load extensions statically to avoid bad object wrapping interactions
[scpubgit/stemmatology.git] / base / t / text_tradition_collation.t
CommitLineData
0e47f4f6 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;
12
4e483aa5 13my $cxfile = 't/data/Collatex-16.xml';
14my $t = Text::Tradition->new(
15 'name' => 'inline',
16 'input' => 'CollateX',
17 'file' => $cxfile,
18 );
19my $c = $t->collation;
20
21my $rno = scalar $c->readings;
22# Split n21 for testing purposes
23my $new_r = $c->add_reading( { 'id' => 'n21p0', 'text' => 'un', 'join_next' => 1 } );
24my $old_r = $c->reading( 'n21' );
25$old_r->alter_text( 'to' );
26$c->del_path( 'n20', 'n21', 'A' );
27$c->add_path( 'n20', 'n21p0', 'A' );
28$c->add_path( 'n21p0', 'n21', 'A' );
29$c->flatten_ranks();
30ok( $c->reading( 'n21p0' ), "New reading exists" );
31is( scalar $c->readings, $rno, "Reading add offset by flatten_ranks" );
32
679f17e1 33# Combine n3 and n4 ( with his )
4e483aa5 34$c->merge_readings( 'n3', 'n4', 1 );
35ok( !$c->reading('n4'), "Reading n4 is gone" );
36is( $c->reading('n3')->text, 'with his', "Reading n3 has both words" );
37
679f17e1 38# Collapse n9 and n10 ( rood / root )
39$c->merge_readings( 'n9', 'n10' );
40ok( !$c->reading('n10'), "Reading n10 is gone" );
41is( $c->reading('n9')->text, 'rood', "Reading n9 has an unchanged word" );
4e483aa5 42
43# Combine n21 and n21p0
44my $remaining = $c->reading('n21');
45$remaining ||= $c->reading('n22'); # one of these should still exist
46$c->merge_readings( 'n21p0', $remaining, 1 );
47ok( !$c->reading('n21'), "Reading $remaining is gone" );
48is( $c->reading('n21p0')->text, 'unto', "Reading n21p0 merged correctly" );
49}
50
51
52
53# =begin testing
54{
55use Text::Tradition;
951ddfe8 56use TryCatch;
4e483aa5 57
56eefa04 58my $READINGS = 311;
59my $PATHS = 361;
60
61my $datafile = 't/data/florilegium_tei_ps.xml';
62my $tradition = Text::Tradition->new( 'input' => 'TEI',
63 'name' => 'test0',
64 'file' => $datafile,
65 'linear' => 1 );
66
67ok( $tradition, "Got a tradition object" );
68is( scalar $tradition->witnesses, 13, "Found all witnesses" );
69ok( $tradition->collation, "Tradition has a collation" );
70
71my $c = $tradition->collation;
72is( scalar $c->readings, $READINGS, "Collation has all readings" );
73is( scalar $c->paths, $PATHS, "Collation has all paths" );
74is( scalar $c->relationships, 0, "Collation has all relationships" );
75
76# Add a few relationships
77$c->add_relationship( 'w123', 'w125', { 'type' => 'collated' } );
78$c->add_relationship( 'w193', 'w196', { 'type' => 'collated' } );
79$c->add_relationship( 'w257', 'w262', { 'type' => 'transposition' } );
80
81# Now write it to GraphML and parse it again.
82
83my $graphml = $c->as_graphml;
84my $st = Text::Tradition->new( 'input' => 'Self', 'string' => $graphml );
85is( scalar $st->collation->readings, $READINGS, "Reparsed collation has all readings" );
86is( scalar $st->collation->paths, $PATHS, "Reparsed collation has all paths" );
87is( scalar $st->collation->relationships, 3, "Reparsed collation has new relationships" );
2a812726 88
9fef629b 89# Now add a stemma, write to GraphML, and look at the output.
951ddfe8 90SKIP: {
37bf09f4 91 skip "Analysis module not present", 3 unless $tradition->can( 'add_stemma' );
951ddfe8 92 my $stemma = $tradition->add_stemma( 'dotfile' => 't/data/florilegium.dot' );
93 is( ref( $stemma ), 'Text::Tradition::Stemma', "Parsed dotfile into stemma" );
94 is( $tradition->stemmata, 1, "Tradition now has the stemma" );
95 $graphml = $c->as_graphml;
96 like( $graphml, qr/digraph/, "Digraph declaration exists in GraphML" );
97}
9fef629b 98
99# Now add a user, write to GraphML, and look at the output.
100unlike( $graphml, qr/testuser/, "Test user name does not exist in GraphML yet" );
101my $testuser = Text::Tradition::User->new(
102 id => 'testuser', password => 'testpass' );
103is( ref( $testuser ), 'Text::Tradition::User', "Created test user object" );
104$testuser->add_tradition( $tradition );
105is( $tradition->user->id, $testuser->id, "Tradition assigned to test user" );
106$graphml = $c->as_graphml;
107like( $graphml, qr/testuser/, "Test user name now exists in GraphML" );
56eefa04 108}
109
110
111
112# =begin testing
113{
114use Text::Tradition;
115
0e47f4f6 116my $cxfile = 't/data/Collatex-16.xml';
117my $t = Text::Tradition->new(
118 'name' => 'inline',
119 'input' => 'CollateX',
120 'file' => $cxfile,
121 );
122my $c = $t->collation;
4633f9e4 123
b365fbae 124# Make an svg
bfcbcecb 125my $table = $c->alignment_table;
126ok( $c->has_cached_table, "Alignment table was cached" );
127is( $c->alignment_table, $table, "Cached table returned upon second call" );
b365fbae 128$c->calculate_ranks;
bfcbcecb 129is( $c->alignment_table, $table, "Cached table retained with no rank change" );
679f17e1 130$c->add_relationship( 'n24', 'n23', { 'type' => 'spelling' } );
bfcbcecb 131isnt( $c->alignment_table, $table, "Alignment table changed after relationship add" );
b365fbae 132}
133
134
135
136# =begin testing
137{
138use Text::Tradition;
139
140my $cxfile = 't/data/Collatex-16.xml';
141my $t = Text::Tradition->new(
142 'name' => 'inline',
143 'input' => 'CollateX',
144 'file' => $cxfile,
145 );
146my $c = $t->collation;
0e47f4f6 147
d4b75f44 148my @common = $c->calculate_common_readings();
149is( scalar @common, 8, "Found correct number of common readings" );
150my @marked = sort $c->common_readings();
151is( scalar @common, 8, "All common readings got marked as such" );
679f17e1 152my @expected = qw/ n1 n11 n16 n19 n20 n5 n6 n7 /;
d4b75f44 153is_deeply( \@marked, \@expected, "Found correct list of common readings" );
154}
155
156
157
158# =begin testing
159{
160use Text::Tradition;
161
162my $cxfile = 't/data/Collatex-16.xml';
163my $t = Text::Tradition->new(
164 'name' => 'inline',
165 'input' => 'CollateX',
166 'file' => $cxfile,
167 );
168my $c = $t->collation;
169
679f17e1 170is( $c->common_predecessor( 'n24', 'n23' )->id,
0e47f4f6 171 'n20', "Found correct common predecessor" );
679f17e1 172is( $c->common_successor( 'n24', 'n23' )->id,
10e4b1ac 173 '__END__', "Found correct common successor" );
0e47f4f6 174
4e5a7b2c 175is( $c->common_predecessor( 'n19', 'n17' )->id,
0e47f4f6 176 'n16', "Found correct common predecessor for readings on same path" );
679f17e1 177is( $c->common_successor( 'n21', 'n10' )->id,
10e4b1ac 178 '__END__', "Found correct common successor for readings on same path" );
0e47f4f6 179}
180
181
182
183
1841;