3 use strict; use warnings;
8 use XML::LibXML::XPathContext;
10 my $datafile = 't/data/Collatex-16.xml';
12 open( GRAPHFILE, $datafile ) or die "Could not open $datafile";
13 my @lines = <GRAPHFILE>;
15 my $tradition = Text::Tradition->new( 'CollateX' => join( '', @lines ) );
16 my $collation = $tradition->collation;
18 # Test the svg creation
19 my $parser = XML::LibXML->new();
20 $parser->load_ext_dtd( 0 );
21 my $svg = $parser->parse_string( $collation->as_svg() );
22 is( $svg->documentElement->nodeName(), 'svg', 'Got an svg document' );
24 # Test for the correct number of nodes in the SVG
25 my $svg_xpc = XML::LibXML::XPathContext->new( $svg->documentElement() );
26 $svg_xpc->registerNs( 'svg', 'http://www.w3.org/2000/svg' );
27 my @svg_nodes = $svg_xpc->findnodes( '//svg:g[@class="node"]' );
28 is( scalar @svg_nodes, 26, "Correct number of nodes in the graph" );
30 # Test for the correct number of edges
31 my @svg_edges = $svg_xpc->findnodes( '//svg:g[@class="edge"]' );
32 is( scalar @svg_edges, 32, "Correct number of edges in the graph" );
34 # Test for the correct common nodes
35 my @common_nodes = ( '#START#' );
36 push( @common_nodes, qw/ n1 n5 n6 n7 n12 n16 n19 n20 n27 / );
37 my @expected_nodes = map { [ $_, 1 ] } @common_nodes;
38 foreach my $idx ( qw/2 3 4 8 10 11 13 16 17 18/ ) {
39 splice( @expected_nodes, $idx, 0, [ "node_null", undef ] );
41 my @active_nodes = $collation->lemma_readings();
42 subtest 'Initial common points' => \&compare_active;
43 my $string = '# when ... ... ... showers sweet with ... fruit ... ... of ... has pierced ... ... ... #';
44 is( make_text( @active_nodes ), $string, "Got the right starting text" );
47 is( scalar( @active_nodes ), scalar ( @expected_nodes ),
48 "Arrays are same length" );
50 foreach ( 0 .. scalar(@active_nodes)-1 ) {
51 is( $active_nodes[$_]->[1], $expected_nodes[$_]->[1],
52 "Element has same toggle value" );
53 if( defined $active_nodes[$_]->[1] ) {
54 is( $active_nodes[$_]->[0], $expected_nodes[$_]->[0],
55 "Active or toggled element has same node name "
56 . $active_nodes[$_]->[0] );
63 foreach my $n ( @_ ) {
65 push( @words, $collation->reading( $n->[0] )->label );
66 } elsif ( !defined $n->[1] ) {
67 push( @words, '...' );
70 return join( ' ', @words );
73 # Test that the common nodes are marked common
74 foreach my $cn ( @common_nodes ) {
75 ok( $collation->reading( $cn )->is_common, "Node $cn is marked common" );
78 # Test the manuscript paths
79 my $wit_a = '# when april with his showers sweet with fruit the drought of march has pierced unto the root #';
80 my $wit_b = '# when showers sweet with april fruit the march of drought has pierced to the root #';
81 my $wit_c = '# when showers sweet with april fruit teh drought of march has pierced teh rood #';
82 is( join( ' ', @{$tradition->witness( "A" )->text} ), $wit_a, "Correct path for witness A" );
83 is( join( ' ', @{$tradition->witness( "B" )->text} ), $wit_b, "Correct path for witness B" );
84 is( join( ' ', @{$tradition->witness( "C" )->text} ), $wit_c, "Correct path for witness C" );
86 # Test the transposition identifiers
87 my $transposition_pools = [ [ 'n2', 'n11' ], [ 'n14', 'n18' ],
89 my $transposed_nodes = { 'n2' => $transposition_pools->[0],
90 'n11' => $transposition_pools->[0],
91 'n14' => $transposition_pools->[1],
92 'n15' => $transposition_pools->[2],
93 'n17' => $transposition_pools->[2],
94 'n18' => $transposition_pools->[1],
97 my $real_transposed_nodes = {};
98 foreach my $r ( $collation->readings ) {
99 my @same = map { $_->name } @{$r->same_as};
100 $real_transposed_nodes->{ $r->name } = \@same if @same > 1;
103 is_deeply( $real_transposed_nodes, $transposed_nodes, "Found the right transpositions" );
105 # Test turning on a node
106 my @off = $collation->toggle_reading( 'n21' );
107 $expected_nodes[ 16 ] = [ "n21", 1 ];
108 @active_nodes = $collation->lemma_readings( @off );
109 subtest 'Turned on node for new location' => \&compare_active;
110 $string = '# when ... ... ... showers sweet with ... fruit ... ... of ... has pierced unto ... ... #';
111 is( make_text( @active_nodes ), $string, "Got the right text" );
113 # Test the toggling effects of same-column
114 @off = $collation->toggle_reading( 'n22' );
115 splice( @expected_nodes, 16, 1, ( [ "n21", 0 ], [ "n22", 1 ] ) );
116 @active_nodes = $collation->lemma_readings( @off );
117 subtest 'Turned on other node in that location' => \&compare_active;
118 $string = '# when ... ... ... showers sweet with ... fruit ... ... of ... has pierced to ... ... #';
119 is( make_text( @active_nodes ), $string, "Got the right text" );
121 # Test the toggling effects of transposition
122 @off = $collation->toggle_reading( 'n14' );
123 # Add the turned on node
124 $expected_nodes[ 11 ] = [ "n14", 1 ];
125 # Remove the 'off' for the previous node
126 splice( @expected_nodes, 16, 1 );
127 @active_nodes = $collation->lemma_readings( @off );
128 subtest 'Turned on transposition node' => \&compare_active;
129 $string = '# when ... ... ... showers sweet with ... fruit ... drought of ... has pierced to ... ... #';
130 is( make_text( @active_nodes ), $string, "Got the right text" );
132 @off = $collation->toggle_reading( 'n18' );
133 # Toggle on the new node
134 $expected_nodes[ 13 ] = [ "n18", 1 ];
135 # Toggle off the transposed node
136 $expected_nodes[ 11 ] = [ "n14", undef ];
137 @active_nodes = $collation->lemma_readings( @off );
138 subtest 'Turned on that node\'s partner' => \&compare_active;
139 $string = '# when ... ... ... showers sweet with ... fruit ... ... of drought has pierced to ... ... #';
140 is( make_text( @active_nodes ), $string, "Got the right text" );
142 @off = $collation->toggle_reading( 'n14' );
143 # Toggle on the new node
144 $expected_nodes[ 11 ] = [ "n14", 1 ];
145 # Toggle off the transposed node
146 $expected_nodes[ 13 ] = [ "n18", undef ];
147 @active_nodes = $collation->lemma_readings( @off );
148 subtest 'Turned on the original node' => \&compare_active;
149 $string = '# when ... ... ... showers sweet with ... fruit ... drought of ... has pierced to ... ... #';
150 is( make_text( @active_nodes ), $string, "Got the right text" );
152 @off = $collation->toggle_reading( 'n15' );
153 # Toggle on the new node, and off with the old
154 splice( @expected_nodes, 11, 1, [ "n14", 0 ], [ "n15", 1 ] );
155 @active_nodes = $collation->lemma_readings( @off );
156 subtest 'Turned on the colocated node' => \&compare_active;
157 $string = '# when ... ... ... showers sweet with ... fruit ... march of ... has pierced to ... ... #';
158 is( make_text( @active_nodes ), $string, "Got the right text" );
160 @off = $collation->toggle_reading( 'n3' );
161 # Toggle on the new node
162 splice( @expected_nodes, 3, 1, [ "n3", 1 ] );
163 # Remove the old toggle-off
164 splice( @expected_nodes, 11, 1 );
165 @active_nodes = $collation->lemma_readings( @off );
166 subtest 'Turned on a singleton node' => \&compare_active;
167 $string = '# when ... with ... showers sweet with ... fruit ... march of ... has pierced to ... ... #';
168 is( make_text( @active_nodes ), $string, "Got the right text" );
170 @off = $collation->toggle_reading( 'n3' );
171 # Toggle off this node
172 splice( @expected_nodes, 3, 1, [ "n3", 0 ] );
173 @active_nodes = $collation->lemma_readings( @off );
174 subtest 'Turned off a singleton node' => \&compare_active;
175 $string = '# when ... ... showers sweet with ... fruit ... march of ... has pierced to ... ... #';
176 is( make_text( @active_nodes ), $string, "Got the right text" );
178 @off = $collation->toggle_reading( 'n21' );
179 splice( @expected_nodes, 16, 1, ["n22", 0 ], [ "n21", 1 ] );
180 @active_nodes = $collation->lemma_readings( @off );
181 subtest 'Turned on another node after singleton switchoff' => \&compare_active;
182 $string = '# when ... ... showers sweet with ... fruit ... march of ... has pierced unto ... ... #';
183 is( make_text( @active_nodes ), $string, "Got the right text" );
185 # Now start testing some position identifiers
186 # 2. 'april with his' have no colocated
187 # 3. 'april' 2 has no colocated
189 # 5. 'drought' & 'march'
190 # 6. 'march' & 'drought'
191 # 7. 'unto' 'the' 'root'...
192 # 'unto can match 'to' or 'teh'
193 # 'the' can match 'teh' or 'rood'
194 # 'root' can mach 'rood'
196 foreach my $cn ( @common_nodes ) {
197 my $cnr = $collation->reading( $cn );
198 is( scalar( $collation->same_position_as( $cnr ) ), 0, "Node $cn has no colocations" );
201 my %expected_colocations = (
206 'n8' => [ 'n13' ], # teh -> the
207 'n13' => [ 'n8' ], # the -> teh
208 'n14' => [ 'n15' ], # drought -> march
209 'n18' => [ 'n17' ], # drought -> march
210 'n17' => [ 'n18' ], # march -> drought
211 'n15' => [ 'n14' ], # march -> drought
212 'n21' => [ 'n22', 'n9' ], # unto -> to, teh
213 'n22' => [ 'n21', 'n9' ], # to -> unto, teh
214 'n9' => [ 'n21', 'n22', 'n23' ], # teh -> unto, to, the
215 'n23' => [ 'n25', 'n9' ], # the -> teh, rood
216 'n25' => [ 'n23', 'n26' ], # rood -> the, root
217 'n26' => [ 'n25' ], # root -> rood
220 foreach my $n ( keys %expected_colocations ) {
221 my $nr = $collation->reading( $n );
222 my @colocated = sort( map { $_->name } $collation->same_position_as( $nr ) );
223 is_deeply( \@colocated, $expected_colocations{$n}, "Colocated nodes for $n correct" );
226 # Test strict colocations
227 $expected_colocations{'n9'} = [];
228 $expected_colocations{'n21'} = ['n22'];
229 $expected_colocations{'n22'} = ['n21'];
230 $expected_colocations{'n23'} = [];
231 $expected_colocations{'n25'} = [];
232 $expected_colocations{'n26'} = [];
234 foreach my $n ( keys %expected_colocations ) {
235 my $nr = $collation->reading( $n );
236 my @colocated = sort( map { $_->name } $collation->same_position_as( $nr, 1 ) );
237 is_deeply( \@colocated, $expected_colocations{$n}, "Strictly colocated nodes for $n correct" );
240 # Test turning on, then off, an annoyingly overlapping node
242 @off = $collation->toggle_reading( 'n9' );
243 # Remove the old toggle-off
244 splice( @expected_nodes, 16, 1 );
245 splice( @expected_nodes, 17, 0, [ "n9", 1 ] );
246 @active_nodes = $collation->lemma_readings( @off );
247 subtest 'Turned on a node without fixed position' => \&compare_active;
248 $string = '# when ... ... showers sweet with ... fruit ... march of ... has pierced unto teh ... ... #';
249 is( make_text( @active_nodes ), $string, "Got the right text" );
251 @off = $collation->toggle_reading( 'n23' );
252 splice( @expected_nodes, 18, 1, [ "n23", 1 ] );
253 @active_nodes = $collation->lemma_readings( @off );
254 subtest 'Turned on a node colocated to one without fixed position' => \&compare_active;
255 $string = '# when ... ... showers sweet with ... fruit ... march of ... has pierced unto teh the ... #';
256 is( make_text( @active_nodes ), $string, "Got the right text" );
258 @off = $collation->toggle_reading( 'n9' );
259 splice( @expected_nodes, 17, 1, [ "n9", 0 ] );
260 @active_nodes = $collation->lemma_readings( @off );
261 subtest 'Turned on a node colocated to one without fixed position' => \&compare_active;
262 $string = '# when ... ... showers sweet with ... fruit ... march of ... has pierced unto the ... #';
263 is( make_text( @active_nodes ), $string, "Got the right text" );
265 ### Now test relationship madness.
267 my( $result, @relations ) = $collation->add_relationship( 'n25', 'n23', {'type' => 'lexical'} ); # rood -> the
268 ok( $result, "Added relationship between nodes" );
269 is( scalar @relations, 1, "Returned only the one collapse" );
270 is_deeply( $relations[0], [ 'n25', 'n23' ], "Returned the correct collapse" );
271 is( $collation->reading( 'n25' )->position->reference, '9,3', "Harmonized position for n25 correct" );
272 is( $collation->reading( 'n23' )->position->reference, '9,3', "Harmonized position for n23 correct" );
273 is( $collation->reading( 'n9' )->position->reference, '9,2', "Adjusted position for n9 correct" );
275 # Do some yucky hardcoded cleanup to undo this relationship.
276 $collation->reading('n25')->position->max( 4 );
277 $collation->reading('n9')->position->max( 3 );
278 $collation->graph->del_edge( $collation->reading('n25')->edges_to( $collation->reading('n23')) );
280 ( $result, @relations ) = $collation->add_relationship( 'n26', 'n25', {'type' => 'spelling'} ); # root -> rood
281 ok( $result, "Added relationship between nodes" );
282 is( scalar @relations, 1, "Returned only the one collapse" );
283 is_deeply( $relations[0], [ 'n26', 'n25' ], "Returned the correct collapse" );
284 is( $collation->reading( 'n26' )->position->reference, '9,4', "Harmonized position for n26 correct" );
285 is( $collation->reading( 'n25' )->position->reference, '9,4', "Harmonized position for n25 correct" );
286 is( $collation->reading( 'n9' )->position->reference, '9,2-3', "Adjusted position for n9 correct" );
288 ( $result, @relations ) = $collation->add_relationship( 'n15', 'n9', {'type' => 'lexical'} ); # bogus march -> teh
289 ok( !$result, "Refused to add skewed relationship: " . $relations[0] );
291 ( $result, @relations ) = $collation->add_relationship( 'n25', 'n26', {'type' => 'spelling'} ); # root -> rood
292 ok( !$result, "Refused to add dupe relationship: " . $relations[0] );
294 ( $result, @relations ) = $collation->add_relationship( 'n8', 'n13', {'type' => 'spelling', 'global' => 1 } ); # teh -> the
295 ok( $result, "Added global relationship between nodes" );
296 is( scalar @relations, 2, "Returned two relationship creations" );
297 is_deeply( $relations[0], [ 'n8', 'n13' ], "Returned the original collapse" );
298 is_deeply( $relations[1], [ 'n9', 'n23' ], "Returned the other collapse" );
299 is( $collation->reading( 'n8' )->position->reference, '6,2', "Harmonized position for n8 correct" );
300 is( $collation->reading( 'n9' )->position->reference, '9,3', "Harmonized position for n9 correct" );