1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
#!/usr/bin/perl -w
use Test::More;
use strict;
use File::Spec;
sub _write_utf8_file
{
my ($out_path, $contents) = @_;
open my $out_fh, '>:encoding(utf8)', $out_path
or die "Cannot open '$out_path' for writing - $!";
print {$out_fh} $contents;
close($out_fh);
return;
}
# test graphviz (dot) file input => ASCII output
# and back to as_txt() again
BEGIN
{
plan tests => 140;
chdir 't' if -d 't';
use lib '../lib';
use_ok ("Graph::Easy") or die($@);
use_ok ("Graph::Easy::Parser") or die($@);
use_ok ("Graph::Easy::Parser::Graphviz") or die($@);
};
my @warnings;
#############################################################################
# override the warn method to catch warnigs
{
no warnings 'redefine';
package Graph::Easy::Base;
sub warn {
my ($self,$msg) = @_;
push @warnings, $msg;
}
}
#############################################################################
# parser object
my $def_parser = Graph::Easy::Parser->new(debug => 0);
is (ref($def_parser), 'Graph::Easy::Parser');
is ($def_parser->error(), '', 'no error yet');
my $dot_parser = Graph::Easy::Parser::Graphviz->new(debug => 0);
is (ref($dot_parser), 'Graph::Easy::Parser::Graphviz');
is ($dot_parser->error(), '', 'no error yet');
my $dir = File::Spec->catdir('in','dot');
opendir DIR, $dir or die ("Cannot read dir '$dir': $!");
my @files = readdir(DIR); closedir(DIR);
opendir DIR, 'dot' or die ("Cannot read dir 'dot': $!");
push @files, readdir(DIR); closedir(DIR);
binmode (STDERR, ':utf8') or die ("Cannot do binmode(':utf8') on STDERR: $!");
binmode (STDOUT, ':utf8') or die ("Cannot do binmode(':utf8') on STDOUT: $!");
eval { require Test::Differences; };
foreach my $f (sort {
$a =~ /^(\d+)/; my $a1 = $1 || '1';
$b =~ /^(\d+)/; my $b1 = $1 || '1';
$a1 <=> $b1 || $a cmp $b;
} @files)
{
my $file = File::Spec->catfile($dir,$f);
my $parser = $def_parser;
if (!-f $file)
{
$file = File::Spec->catfile('dot',$f);
next unless -f $file; # only files
# for files in t/dot, we need to use the Graphviz parser as they
# look like Graph::Easy text to the normal parser, which then fails
$parser = $dot_parser;
}
next unless $f =~ /\.dot/; # ignore anything else
print "# at $f\n";
my $txt = readfile($file);
$parser->reset();
my $graph = $parser->from_text($txt); # reuse parser object
$f =~ /^(\d+)/;
my $nodes = $1;
if (!defined $graph)
{
fail ("Graphviz input was invalid: " . $parser->error());
next;
}
is (scalar $graph->nodes(), $nodes, "$nodes nodes");
# for slow testing machines
$graph->timeout(20);
my $ascii = $graph->as_ascii();
my $of = $f; $of =~ s/\.dot/\.txt/;
my $out_path = File::Spec->catfile('out','dot',$of);
my $out = readfile($out_path);
$out =~ s/(^|\n)#[^# ]{2}.*\n//g; # remove comments
$out =~ s/\n\n\z/\n/mg; # remove empty lines
# print "txt: $txt\n";
# print "ascii: $ascii\n";
# print "should: $out\n";
if (!
is ($ascii, $out, "from $f"))
{
if ($ENV{__SHLOMIF__UPDATE_ME})
{
_write_utf8_file($out_path, $ascii);
}
if (defined $Test::Differences::VERSION)
{
Test::Differences::eq_or_diff ($ascii, $out);
}
else
{
fail ("Test::Differences not installed");
}
}
# if the txt output differes, read it in
my $f_txt = File::Spec->catfile('txt','dot',$of);
if (-f $f_txt)
{
$txt = readfile($f_txt);
}
$graph->debug(1);
if (!
is ($graph->as_txt(), $txt, "$f as_txt"))
{
if ($ENV{__SHLOMIF__UPDATE_ME})
{
_write_utf8_file($f_txt, scalar( $graph->as_txt() ));
}
if (defined $Test::Differences::VERSION)
{
Test::Differences::eq_or_diff ($graph->as_txt(), $txt);
}
else
{
fail ("Test::Differences not installed");
}
}
# print a debug output
my $debug = $ascii;
$debug =~ s/\n/\n# /g;
print "# Generated:\n#\n# $debug\n";
}
# check that only the expected warnings were generated
use Data::Dumper;
print STDERR Dumper(\@warnings) unless
is (scalar @warnings, 6, 'Got exactly 6 warnings');
my $i = 0;
for my $name (qw/bar foo pname fname bar brabble/)
{
like ($warnings[$i], qr/Ignoring unknown attribute '$name' for class/,
"Got warning about $name");
$i++;
}
1;
sub readfile
{
my ($file) = @_;
open my $FILE, $file or die ("Cannot read file $file: $!");
binmode ($FILE, ':utf8') or die ("Cannot do binmode(':utf8') on $FILE: $!");
local $/ = undef; # slurp mode
my $doc = <$FILE>;
close $FILE;
$doc;
}
|