remove edge weight logic in dot; add adjacency list JSON output
[scpubgit/stemmatology.git] / base / t / text_tradition.t
CommitLineData
331c2dbf 1#!/usr/bin/perl -w
2
3use strict;
4use Test::More 'no_plan';
5$| = 1;
6
7
8
9# =begin testing
10{
4889be4f 11use TryCatch;
331c2dbf 12use_ok( 'Text::Tradition', "can use module" );
13
14my $t = Text::Tradition->new( 'name' => 'empty' );
15is( ref( $t ), 'Text::Tradition', "initialized an empty Tradition object" );
16is( $t->name, 'empty', "object has the right name" );
17is( scalar $t->witnesses, 0, "object has no witnesses" );
18
19my $simple = 't/data/simple.txt';
20my $s = Text::Tradition->new(
21 'name' => 'inline',
22 'input' => 'Tabular',
23 'file' => $simple,
24 );
25is( ref( $s ), 'Text::Tradition', "initialized a Tradition object" );
26is( $s->name, 'inline', "object has the right name" );
27is( scalar $s->witnesses, 3, "object has three witnesses" );
28
331c2dbf 29my $wit_a = $s->witness('A');
30is( ref( $wit_a ), 'Text::Tradition::Witness', "Found a witness A" );
31if( $wit_a ) {
32 is( $wit_a->sigil, 'A', "Witness A has the right sigil" );
33}
34is( $s->witness('X'), undef, "There is no witness X" );
044d1e45 35ok( !exists $s->{'witnesses'}->{'X'}, "Witness key X not created" );
36
4889be4f 37my $wit_d = $s->add_witness( 'sigil' => 'D', 'sourcetype' => 'plaintext',
38 'string' => 'je suis depourvu de foi' );
044d1e45 39is( ref( $wit_d ), 'Text::Tradition::Witness', "new witness created" );
40is( $wit_d->sigil, 'D', "witness has correct sigil" );
41is( scalar $s->witnesses, 4, "object now has four witnesses" );
42
4889be4f 43try {
44 $s->rename_witness( 'D', 'Invalid Sigil' );
45 ok( 0, "Renamed witness with bad sigil" );
46} catch ( Text::Tradition::Error $e ) {
4889be4f 47 is( $s->witness('D'), $wit_d, "Held onto witness during bad rename" );
48}
49
50try {
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
59my $del = $s->del_witness( 'Q' );
044d1e45 60is( $del, $wit_d, "Deleted correct witness" );
61is( scalar $s->witnesses, 3, "object has three witnesses again" );
62
4889be4f 63try {
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}
331c2dbf 70}
71
72
73
74
751;