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
|
require 'test/unit'
$:.unshift(File.expand_path('../../lib',__FILE__))
require 'graphviz'
class GraphVizTest < Test::Unit::TestCase
def setup
@graph = GraphViz::new( :G )
end
def test_graph
assert(@graph, 'Create graph faild.')
assert_block 'Set attribut for graph faild.' do
@graph['size'] = "10,10"
end
assert_equal( "\"10,10\"", @graph['size'].to_s, 'Get attribut for graph faild.' )
assert_equal( "G", @graph.name, "Wrong graph name." )
end
def test_node
n, m = nil, nil
assert_block 'Create node failed.' do
n = @graph.add_nodes( "n1" )
end
assert_block 'Get node failed.' do
m = @graph.get_node( "n1" )
end
assert_equal( m, n, "Node corrupted when get." )
assert_equal( @graph.node_count, 1, "Wrong number of nodes" )
assert_block 'Set attribut for node faild.' do
n['label'] = "Hello\n\"world\"\\l"
end
assert_equal( "\"Hello\\n\\\"world\\\"\\l\"", n['label'].to_s, 'Get attribut for node faild.' )
end
def test_search
g = GraphViz::new( "G" )
g.node["shape"] = "ellipse"
g.node["color"] = "black"
g["color"] = "black"
c0 = g.add_graph( "cluster0" )
c0["label"] = "process #1"
c0["style"] = "filled"
c0["color"] = "lightgrey"
a0 = c0.add_nodes( "a0", "style" => "filled", "color" => "white" )
a1 = c0.add_nodes( "a1", "style" => "filled", "color" => "white" )
a2 = c0.add_nodes( "a2", "style" => "filled", "color" => "white" )
a3 = c0.add_nodes( "a3", "style" => "filled", "color" => "white" )
c0.add_edges( a0, a1 )
c0.add_edges( a1, a2 )
c0.add_edges( a2, a3 )
c1 = g.add_graph( "cluster1", "label" => "process #2" )
b0 = c1.add_nodes( "b0", "style" => "filled", "color" => "blue" )
b1 = c1.add_nodes( "b1", "style" => "filled", "color" => "blue" )
b2 = c1.add_nodes( "b2", "style" => "filled", "color" => "blue" )
b3 = c1.add_nodes( "b3", "style" => "filled", "color" => "blue" )
c1.add_edges( b0, b1 )
c1.add_edges( b1, b2 )
c1.add_edges( b2, b3 )
start = g.add_nodes( "start", "shape" => "Mdiamond" )
endn = g.add_nodes( "end", "shape" => "Msquare" )
g.add_edges( start, a0 )
g.add_edges( start, b0 )
g.add_edges( a1, b3 )
g.add_edges( b2, a3 )
g.add_edges( a3, a0 )
g.add_edges( a3, endn )
assert g
assert_equal g.get_node("start"), start
assert_equal g.find_node("start"), start
assert_equal g.search_node("start"), start
assert_nil g.get_node("a0")
assert_equal g.find_node("a0"), a0
assert_equal g.search_node("a0"), a0
assert_nil c0.get_node("start")
assert_equal c0.find_node("start"), start
assert_nil c0.search_node("start")
assert_equal c0.get_node("a0"), a0
assert_equal c0.find_node("a0"), a0
assert_equal c0.search_node("a0"), a0
assert_nil c1.get_node("start")
assert_equal c1.find_node("start"), start
assert_nil c1.search_node("start")
assert_nil c1.get_node("a0")
assert_equal c1.find_node("a0"), a0
assert_nil c1.search_node("a0")
end
end
|