Add apparatus codicum support and witness long-identifier support to CTE parser....
[scpubgit/stemmatology.git] / base / t / text_tradition.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 TryCatch;
12 use_ok( 'Text::Tradition', "can use module" );
13
14 my $t = Text::Tradition->new( 'name' => 'empty' );
15 is( ref( $t ), 'Text::Tradition', "initialized an empty Tradition object" );
16 is( $t->name, 'empty', "object has the right name" );
17 is( scalar $t->witnesses, 0, "object has no witnesses" );
18
19 my $simple = 't/data/simple.txt';
20 my $s = Text::Tradition->new( 
21     'name'  => 'inline', 
22     'input' => 'Tabular',
23     'file'  => $simple,
24     );
25 is( ref( $s ), 'Text::Tradition', "initialized a Tradition object" );
26 is( $s->name, 'inline', "object has the right name" );
27 is( scalar $s->witnesses, 3, "object has three witnesses" );
28
29 my $wit_a = $s->witness('A');
30 is( ref( $wit_a ), 'Text::Tradition::Witness', "Found a witness A" );
31 if( $wit_a ) {
32     is( $wit_a->sigil, 'A', "Witness A has the right sigil" );
33 }
34 is( $s->witness('X'), undef, "There is no witness X" );
35 ok( !exists $s->{'witnesses'}->{'X'}, "Witness key X not created" );
36
37 my $wit_d = $s->add_witness( 'sigil' => 'D', 'sourcetype' => 'plaintext',
38         'string' => 'je suis depourvu de foi' );
39 is( ref( $wit_d ), 'Text::Tradition::Witness', "new witness created" );
40 is( $wit_d->sigil, 'D', "witness has correct sigil" );
41 is( scalar $s->witnesses, 4, "object now has four witnesses" );
42
43 try {
44         $s->rename_witness( 'D', 'Invalid Sigil' );
45         ok( 0, "Renamed witness with bad sigil" );
46 } catch ( Text::Tradition::Error $e ) {
47         is( $s->witness('D'), $wit_d, "Held onto witness during bad rename" );
48 }
49
50 try {
51         $s->rename_witness( 'D', 'Q' );
52         ok( 1, "Rename of witness succeeded" );
53         is( $s->witness('Q'), $wit_d, "Witness available under new sigil" );
54         ok( !$s->has_witness('D'), "Witness no longer available under old sigil" );
55 } catch ( Text::Tradition::Error $e ) {
56         ok( 0, "Failed to rename witness: " . $e->message );
57 }       
58
59 my $del = $s->del_witness( 'Q' );
60 is( $del, $wit_d, "Deleted correct witness" );
61 is( scalar $s->witnesses, 3, "object has three witnesses again" );
62
63 try {
64         $s->rename_witness( 'A', 'WitA' );
65         ok( 0, "Successfully renamed an already collated witness" );
66 } catch ( Text::Tradition::Error $e ) {
67         is( $e->message, 'Cannot rename witness that has already been collated',
68                 "Refused to rename an already-collated witness" );
69 }
70 }
71
72
73
74
75 1;