implement persistent equivalence graph for relationship tracking
[scpubgit/stemmatology.git] / t / text_tradition_collation_relationshipstore.t
index 48b6423..7b8e989 100644 (file)
@@ -49,8 +49,6 @@ my $t1 = Text::Tradition->new( 'input' => 'Self', 'file' => 't/data/legendfrag.x
 # Test 1: try to equate nodes that are prevented with an intermediate collation
 ok( $t1, "Parsed test fragment file" );
 my $c1 = $t1->collation;
-## HACK
-$c1->calculate_ranks();
 my $trel = $c1->get_relationship( '9,2', '9,3' );
 is( ref( $trel ), 'Text::Tradition::Collation::Relationship',
        "Troublesome relationship exists" );
@@ -71,14 +69,19 @@ try {
        ok( 0, "Collation now has a cycle" );
 }
 
+# Now attempt merge of an identical reading
+try {
+       $c1->merge_readings( '9,3', '11,5' );
+       ok( 1, "Successfully merged reading 'pontifex'" );
+} catch ( Text::Tradition::Error $e ) {
+       ok( 0, "Merge of mergeable readings failed: $e->message" );
+       
+}
+
 # Test 2: try to equate nodes that are prevented with a real intermediate
 # equivalence
-
 my $t2 = Text::Tradition->new( 'input' => 'Self', 'file' => 't/data/legendfrag.xml' );
-# Test 1: try to equate nodes that are prevented with an intermediate collation
 my $c2 = $t2->collation;
-## HACK
-$c2->calculate_ranks();
 $c2->add_relationship( '9,2', '9,3', { 'type' => 'lexical' } );
 my $trel2 = $c2->get_relationship( '9,2', '9,3' );
 is( ref( $trel2 ), 'Text::Tradition::Collation::Relationship',
@@ -87,9 +90,9 @@ is( $trel2->type, 'lexical', "Blocking relationship is not a collation" );
 # This time the link ought to fail
 try {
        $c2->add_relationship( '8,6', '10,3', { 'type' => 'orthographic' } );
-       ok( 0, "Existing equivalence blocked crossing relationship" );
+       ok( 0, "Added cross-equivalent bad relationship" );
 } catch {
-       ok( 1, "Added cross-equivalent bad relationship" );
+       ok( 1, "Existing equivalence blocked crossing relationship" );
 }
 
 try {
@@ -98,6 +101,45 @@ try {
 } catch {
        ok( 0, "Collation now has a cycle" );
 }
+
+# Test 3: make a straightforward pair of transpositions.
+my $t3 = Text::Tradition->new( 'input' => 'Self', 'file' => 't/data/lf2.xml' );
+# Test 1: try to equate nodes that are prevented with an intermediate collation
+my $c3 = $t3->collation;
+try {
+       $c3->add_relationship( '36,4', '38,3', { 'type' => 'transposition' } );
+       ok( 1, "Added straightforward transposition" );
+} catch {
+       ok( 0, "Failed to add normal transposition" );
+}
+try {
+       $c3->add_relationship( '36,3', '38,2', { 'type' => 'transposition' } );
+       ok( 1, "Added straightforward transposition complement" );
+} catch {
+       ok( 0, "Failed to add normal transposition complement" );
+}
+
+# Test 4: try to make a transposition that could be a parallel.
+try {
+       $c3->add_relationship( '28,2', '29,2', { 'type' => 'transposition' } );
+       ok( 0, "Added bad colocated transposition" );
+} catch {
+       ok( 1, "Prevented bad colocated transposition" );
+}
+
+# Test 5: make the parallel, and then make the transposition again.
+try {
+       $c3->add_relationship( '28,3', '29,3', { 'type' => 'orthographic' } );
+       ok( 1, "Equated identical readings for transposition" );
+} catch {
+       ok( 0, "Failed to equate identical readings" );
+}
+try {
+       $c3->add_relationship( '28,2', '29,2', { 'type' => 'transposition' } );
+       ok( 1, "Added straightforward transposition complement" );
+} catch {
+       ok( 0, "Failed to add normal transposition complement" );
+}
 }