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
|
# -*- tcl -*-
# Graph ops tests - Connected components II.
# Copyright (c) 2008 Andreas Kupries <andreas_kupries@users.sourceforge.net>
# All rights reserved.
# RCS: @(#) $Id: componentof.test,v 1.3 2009/09/15 19:24:12 andreas_kupries Exp $
# Syntax: struct::graph::op::connectedComponentOf G
# -------------------------------------------------------------------------
# Wrong # args: Missing, Too many
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-1.0 {connectedComponentOf, wrong args, missing} {
catch {struct::graph::op::connectedComponentOf} msg
set msg
} [tcltest::wrongNumArgs struct::graph::op::connectedComponentOf {g n} 0]
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-1.1 {connectedComponentOf, wrong args, missing} {
catch {struct::graph::op::connectedComponentOf g} msg
set msg
} [tcltest::wrongNumArgs struct::graph::op::connectedComponentOf {g n} 1]
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-1.2 {connectedComponentOf, wrong args, too many} {
catch {struct::graph::op::connectedComponentOf g x y} msg
set msg
} [tcltest::tooManyArgs struct::graph::op::connectedComponentOf {g n}]
# -------------------------------------------------------------------------
# Logical arguments checks and failures
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-2.0 {connectedComponentOf, bad node} {
SETUP
catch {struct::graph::op::connectedComponentOf mygraph foo} result
mygraph destroy
set result
} {node "foo" does not exist in graph "mygraph"}
# -------------------------------------------------------------------------
# Ok arguments.
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.1 {connectedComponentOf, nodes, no arcs} {
SETUP
mygraph node insert 0 1 2 3 4 5
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 0]]
mygraph destroy
set result
} 0
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.2 {connectedComponentOf, single CC} {
SETUP_A
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 'node5']]
mygraph destroy
set result
} {'node0' 'node1' 'node2' 'node3' 'node4' 'node5' 'node6'}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.3 {connectedComponentOf, single CC} {
SETUP_B
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph D]]
mygraph destroy
set result
} {A B C D E S}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.4 {connectedComponentOf, single CC} {
SETUP_C
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph D]]
mygraph destroy
set result
} {A B C D E F}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.5 {connectedComponentOf, single CC} {
SETUP_D
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph g]]
mygraph destroy
set result
} {a b c d f g h i j}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.6 {connectedComponentOf, single CC} {
SETUP_E
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 5b]]
mygraph destroy
set result
} {1b 1w 2b 2w 3b 3w 4b 4w 5b 5w 6b 6w 7b 7w 8b 8w}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.7 {connectedComponentOf, single CC} {
SETUP_F
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 2w]]
mygraph destroy
set result
} {1b 1w 2b 2w 3b 3w 4b 4w}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.8 {connectedComponentOf, single CC} {
SETUP_G
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 3b]]
mygraph destroy
set result
} {1b 1w 2b 2w 3b 3w 4b 4w 5b 5w}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.9 {connectedComponentOf, single CC} {
SETUP_H
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph C]]
mygraph destroy
set result
} {A B C D E}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.10 {connectedComponentOf, single CC} {
SETUP_I
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph N4]]
mygraph destroy
set result
} {N1 N2 N3 N4 N5}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.11.0 {connectedComponentOf, multiple CC} {
SETUP_J
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 4]]
mygraph destroy
set result
} {1 4 5}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.11.1 {connectedComponentOf, multiple CC} {
SETUP_J
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 2]]
mygraph destroy
set result
} 2
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.11.2 {connectedComponentOf, multiple CC} {
SETUP_J
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 3]]
mygraph destroy
set result
} 3
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.11.3 {connectedComponentOf, multiple CC} {
SETUP_J
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph 6]]
mygraph destroy
set result
} {6 7}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.12.0 {connectedComponentOf, multiple CC} {
SETUP_K
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph No3]]
mygraph destroy
set result
} {No1 No2 No3 No4}
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-connectedComponentOf-3.12.1 {connectedComponentOf, multiple CC} {
SETUP_K
set result [lsort -dict [struct::graph::op::connectedComponentOf mygraph No5]]
mygraph destroy
set result
} No5
# ---------------------------------------------------
|