ensure graph names come through for undirected graphs too (tla/stemmaweb#28)
[scpubgit/stemmatology.git] / analysis / t / text_tradition_hasstemma.t
CommitLineData
951ddfe8 1#!/usr/bin/perl -w
2
3use strict;
4use Test::More 'no_plan';
5$| = 1;
6
7
8
9# =begin testing
10{
11use Text::Tradition;
12
13my $t = Text::Tradition->new(
14 'name' => 'simple test',
15 'input' => 'Tabular',
16 'file' => 't/data/simple.txt',
17 );
951ddfe8 18is( $t->stemma_count, 0, "No stemmas added yet" );
19my $s;
20ok( $s = $t->add_stemma( dotfile => 't/data/simple.dot' ), "Added a simple stemma" );
21is( ref( $s ), 'Text::Tradition::Stemma', "Got a stemma object returned" );
22is( $t->stemma_count, 1, "Tradition claims to have a stemma" );
23is( $t->stemma(0), $s, "Tradition hands back the right stemma" );
24}
25
26
27
a47b32d9 28# =begin testing
29{
30use Text::Tradition;
31use JSON qw/ from_json /;
32
33my $t = Text::Tradition->new(
34 'name' => 'Stemweb test',
35 'input' => 'Self',
36 'file' => 't/data/besoin.xml',
37 'stemweb_jobid' => '4',
38 );
39
40is( $t->stemma_count, 0, "No stemmas added yet" );
41
42my $answer = from_json( '{"status": 0, "job_id": "4", "algorithm": "RHM", "format": "newick", "start_time": "2013-10-26 10:44:14.050263", "result": "((((((((((((F,U),V),S),T1),T2),A),J),B),L),D),M),C);\n", "end_time": "2013-10-26 10:45:55.398944"}' );
43$t->record_stemweb_result( $answer );
44ok( !$t->has_stemweb_jobid, "Job ID was removed from tradition" );
45is( $t->stemma_count, 1, "Tradition has new stemma" );
46ok( $t->stemma(0)->is_undirected, "New stemma is undirected as it should be" );
47is( $t->stemma(0)->identifier, "RHM 1382777054_0", "Stemma has correct identifier" );
48}
49
50
51
951ddfe8 52
531;