#!/usr/bin/perl -w # Copyright 2015, 2016, 2017, 2018 Kevin Ryde # # This file is part of Graph-Graph6. # # Graph-Graph6 is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free # Software Foundation; either version 3, or (at your option) any later # version. # # Graph-Graph6 is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along # with Graph-Graph6. If not, see . use strict; use Test; use lib 't'; use MyTestHelpers; BEGIN { MyTestHelpers::nowarnings() } my $test_count = (tests => 13)[1]; plan tests => $test_count; { my $have_graph_easy = eval { require Graph::Easy; 1 }; my $have_graph_easy_error = $@; if (! $have_graph_easy) { MyTestHelpers::diag ('Skip due to no Graph::Easy available: ', $have_graph_easy_error); foreach (1 .. $test_count) { skip ('no Graph::Easy', 1, 1); } exit 0; } } require Graph::Easy::As_sparse6; #------------------------------------------------------------------------------ { my $want_version = 9; ok ($Graph::Easy::As_sparse6::VERSION, $want_version, 'VERSION variable'); ok (Graph::Easy::As_sparse6->VERSION, $want_version, 'VERSION class method'); ok (eval { Graph::Easy::As_sparse6->VERSION($want_version); 1 }, 1, "VERSION class check $want_version"); my $check_version = $want_version + 1000; ok (! eval { Graph::Easy::As_sparse6->VERSION($check_version); 1 }, 1, "VERSION class check $check_version"); } #------------------------------------------------------------------------------ { # formats.txt sparse6 example my $easy = Graph::Easy->new; $easy->add_vertices(0,1,2,3,4); $easy->add_edge(0,1); $easy->add_edge(0,2); $easy->add_edge(1,2); $easy->add_edge(5,6); my $str = $easy->as_sparse6; ok ($str, ':Fa@x^'."\n"); } { # with header=>1 my $easy = Graph::Easy->new; $easy->add_vertices(0,1,2,3,4); $easy->add_edge(0,1); $easy->add_edge(0,2); $easy->add_edge(1,2); $easy->add_edge(5,6); my $str = $easy->as_sparse6 (header=>1); ok ($str, '>>sparse6<<:Fa@x^'."\n"); } { # no edges my $easy = Graph::Easy->new; $easy->add_vertices(0,1,2); my $str = $easy->as_sparse6; ok ($str, ':B'."\n"); } { # self-loop my $easy = Graph::Easy->new; $easy->add_vertices(0,1,2); $easy->add_edge(0,0); # 000111 with padding my $str = $easy->as_sparse6; ok ($str, ':B'.chr(7+63)."\n"); } { # multi-edge my $easy = Graph::Easy->new; $easy->add_vertices(0,1); $easy->add_edge(0,1); my $str = $easy->as_sparse6; ok ($str, ':A'.chr(0x2F+63)."\n"); # 101111 with padding $easy->add_edge(0,1); $str = $easy->as_sparse6; ok ($str, ':A'.chr(0x23+63)."\n"); # 100011 with padding $easy->add_edge(0,1); $str = $easy->as_sparse6; ok ($str, ':A'.chr(0x20+63)."\n"); # 100000 with padding } { # directed graph either way around foreach my $dir (0,1) { my $easy = Graph::Easy->new; $easy->add_vertices(0,1,2); if ($dir) { $easy->add_edge(1,0); } else { $easy->add_edge(0,1); } my $str = $easy->as_sparse6; ok ($str, ":Bf\n", "dir=$dir"); } } #------------------------------------------------------------------------------ exit 0;