BROKEN - making lemmatization work
[scpubgit/stemmatology.git] / t / graph.t
1 #!/usr/bin/perl
2
3 use strict; use warnings;
4 use Test::More;
5 use lib 'lib';
6 use Text::Tradition;
7 use XML::LibXML;
8 use XML::LibXML::XPathContext;
9
10 my $datafile = 't/data/Collatex-16.xml';
11
12 open( GRAPHFILE, $datafile ) or die "Could not open $datafile";
13 my @lines = <GRAPHFILE>;
14 close GRAPHFILE;
15 my $tradition = Text::Tradition->new( 'GraphML' => join( '', @lines ) );
16 my $collation = $tradition->collation;
17
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' );
23
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, 24, "Correct number of nodes in the graph" );
29
30 # Test for the correct number of edges
31 my @svg_edges = $svg_xpc->findnodes( '//svg:g[@class="edge"]' );
32 is( scalar @svg_edges, 30, "Correct number of edges in the graph" );
33
34 # Test for the correct common nodes
35 my @expected_nodes = map { [ $_, 1 ] } qw/ #START# n1 n5 n6 n7 n12 n13
36                                             n16 n19 n20 n23 n27 /;
37 foreach my $idx ( qw/2 3 4 8 11 13 16 18/ ) {
38     splice( @expected_nodes, $idx, 0, [ "node_null", undef ] );
39 }
40 my @active_nodes = $collation->lemma_readings();
41 subtest 'Initial common points' => \&compare_active;
42 my $string = '# when ... ... ... showers sweet with ... fruit the ... of ... has pierced ... the ... #';
43 is( make_text( @active_nodes ), $string, "Got the right starting text" );
44
45 sub compare_active {
46     is( scalar( @active_nodes ), scalar ( @expected_nodes ), 
47         "Arrays are same length" );
48
49     foreach ( 0 .. scalar(@active_nodes)-1 ) {
50         is( $active_nodes[$_]->[1], $expected_nodes[$_]->[1], 
51             "Element has same toggle value" );
52         if( defined $active_nodes[$_]->[1] ) {
53             is( $active_nodes[$_]->[0], $expected_nodes[$_]->[0], 
54                 "Active or toggled element has same node name" );
55         }
56     }
57 }
58
59 sub make_text {
60     my @words;
61     foreach my $n ( @_ ) {
62         if( $n->[1] ) {
63             push( @words, $collation->reading( $n->[0] )->label );
64         } elsif ( !defined $n->[1] ) {
65             push( @words, '...' );
66         }
67     }
68     return join( ' ', @words );
69 }
70
71 __END__
72
73 # Test the manuscript paths
74 my $wit_a = '# when april with his showers sweet with fruit the drought of march has pierced unto the root #';
75 my $wit_b = '# when showers sweet with april fruit the march of drought has pierced to the root #';
76 my $wit_c = '# when showers sweet with april fruit the drought of march has pierced the rood #';
77 is( $collation->text_for_witness( "A" ), $wit_a, "Correct path for witness A" );
78 is( $collation->text_for_witness( "B" ), $wit_b, "Correct path for witness B" );
79 is( $collation->text_for_witness( "C" ), $wit_c, "Correct path for witness C" );
80
81 # Test the transposition identifiers
82 my $transposition_pools = [ [ 'n2', 'n11' ], [ 'n14', 'n18' ], 
83                             [ 'n17', 'n15' ] ];
84 my $transposed_nodes = { 'n2' => $transposition_pools->[0],
85                          'n11' => $transposition_pools->[0],
86                          'n14' => $transposition_pools->[1],
87                          'n15' => $transposition_pools->[2],
88                          'n17' => $transposition_pools->[2],
89                          'n18' => $transposition_pools->[1],
90 };
91 foreach my $n ( $collation->readings() ) {
92     $transposed_nodes->{ $n->name() } = [ $n->name() ]
93         unless exists $transposed_nodes->{ $n->name() };
94 }
95 is_deeply( $collation->{'identical_nodes'}, $transposed_nodes, "Found the right transpositions" );
96
97 # Test turning on a node
98 my @off = $collation->toggle_node( 'n25' );
99 $expected_nodes[ 18 ] = [ "n25", 1 ];
100 @active_nodes = $collation->active_nodes( @off );
101 subtest 'Turned on node for new location' => \&compare_active;
102 $string = '# when ... ... ... showers sweet with ... fruit the ... of ... has pierced ... the rood #';
103 is( make_text( @active_nodes ), $string, "Got the right text" );
104  
105 # Test the toggling effects of same-column
106 @off = $collation->toggle_node( 'n26' );
107 splice( @expected_nodes, 18, 1, ( [ "n25", 0 ], [ "n26", 1 ] ) );
108 @active_nodes = $collation->active_nodes( @off );
109 subtest 'Turned on other node in that location' => \&compare_active;
110 $string = '# when ... ... ... showers sweet with ... fruit the ... of ... has pierced ... the root #';
111 is( make_text( @active_nodes ), $string, "Got the right text" );
112
113 # Test the toggling effects of transposition
114
115 @off = $collation->toggle_node( 'n14' );
116 # Add the turned on node
117 $expected_nodes[ 11 ] = [ "n14", 1 ];
118 # Remove the 'off' for the previous node
119 splice( @expected_nodes, 18, 1 );
120 @active_nodes = $collation->active_nodes( @off );
121 subtest 'Turned on transposition node' => \&compare_active;
122 $string = '# when ... ... ... showers sweet with ... fruit the drought of ... has pierced ... the root #';
123 is( make_text( @active_nodes ), $string, "Got the right text" );
124
125 @off = $collation->toggle_node( 'n18' );
126 # Toggle on the new node
127 $expected_nodes[ 13 ] = [ "n18", 1 ];
128 # Toggle off the transposed node
129 $expected_nodes[ 11 ] = [ "n14", undef ];
130 @active_nodes = $collation->active_nodes( @off );
131 subtest 'Turned on that node\'s partner' => \&compare_active;
132 $string = '# when ... ... ... showers sweet with ... fruit the ... of drought has pierced ... the root #';
133 is( make_text( @active_nodes ), $string, "Got the right text" );
134
135 @off = $collation->toggle_node( 'n14' );
136 # Toggle on the new node
137 $expected_nodes[ 11 ] = [ "n14", 1 ];
138 # Toggle off the transposed node
139 $expected_nodes[ 13 ] = [ "n18", undef ];
140 @active_nodes = $collation->active_nodes( @off );
141 subtest 'Turned on the original node' => \&compare_active;
142 $string = '# when ... ... ... showers sweet with ... fruit the drought of ... has pierced ... the root #';
143 is( make_text( @active_nodes ), $string, "Got the right text" );
144
145 @off = $collation->toggle_node( 'n15' );
146 # Toggle on the new node, and off with the old
147 splice( @expected_nodes, 11, 1, [ "n14", 0 ], [ "n15", 1 ] );
148 @active_nodes = $collation->active_nodes( @off );
149 subtest 'Turned on the colocated node' => \&compare_active;
150 $string = '# when ... ... ... showers sweet with ... fruit the march of ... has pierced ... the root #';
151 is( make_text( @active_nodes ), $string, "Got the right text" );
152
153 @off = $collation->toggle_node( 'n3' );
154 # Toggle on the new node
155 splice( @expected_nodes, 3, 1, [ "n3", 1 ] );
156 # Remove the old toggle-off
157 splice( @expected_nodes, 11, 1 );
158 @active_nodes = $collation->active_nodes( @off );
159 subtest 'Turned on a singleton node' => \&compare_active;
160 $string = '# when ... with ... showers sweet with ... fruit the march of ... has pierced ... the root #';
161 is( make_text( @active_nodes ), $string, "Got the right text" );
162
163 @off = $collation->toggle_node( 'n3' );
164 # Toggle off this node
165 splice( @expected_nodes, 3, 1, [ "n3", 0 ] );
166 @active_nodes = $collation->active_nodes( @off );
167 subtest 'Turned off a singleton node' => \&compare_active;
168 $string = '# when ... ... showers sweet with ... fruit the march of ... has pierced ... the root #';
169 is( make_text( @active_nodes ), $string, "Got the right text" );
170
171 @off = $collation->toggle_node( 'n21' );
172 splice( @expected_nodes, 16, 1, [ "n21", 1 ] );
173 @active_nodes = $collation->active_nodes( @off );
174 subtest 'Turned on a new node after singleton switchoff' => \&compare_active;
175 $string = '# when ... ... showers sweet with ... fruit the march of ... has pierced unto the root #';
176 is( make_text( @active_nodes ), $string, "Got the right text" );
177
178 done_testing();