File: bfs.test

package info (click to toggle)
tcllib 1.20%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 68,064 kB
  • sloc: tcl: 216,842; ansic: 14,250; sh: 2,846; xml: 1,766; yacc: 1,145; pascal: 881; makefile: 107; perl: 84; f90: 84; python: 33; ruby: 13; php: 11
file content (204 lines) | stat: -rw-r--r-- 8,502 bytes parent folder | download | duplicates (9)
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
201
202
203
204
# -*- tcl -*-
#Breadth-First Search procedures
#
# ------------------------------------------------------------------------------------
# Tests concerning returning right values by algorithm

# ------------------------------------------------------------------------------------

# ------------------------------------------------------------------------------------
#Tests for shortest paths finding using BFS algorithm
#Test 1.0 
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-1.0 { graph simulation } {
    SETUP_BFS_1
    set result [dictsort [struct::graph::op::ShortestsPathsByBFS mygraph s distances]]
    mygraph destroy
    set result
} {a 2 b 7 c 13 d 9 s 0 x 5}

#Test 1.1
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-1.1 { graph simulation } {
    SETUP_BFS_1
    set result [dictsort [struct::graph::op::ShortestsPathsByBFS mygraph s paths]]
    mygraph destroy
    set result
} {a {s x} b {s x a} c {s x a b} d {s x a b} x s}

#Test 1.2
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-1.2 { graph simulation } {
    SETUP_BFS_2
    set result [dictsort [struct::graph::op::ShortestsPathsByBFS mygraph s distances]]
    mygraph destroy
    set result
} {a 13 b 23 c 11 d 9 s 0 t 18}

#Test 1.3
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-1.3 { graph simulation } {
    SETUP_BFS_2
    set result [dictsort [struct::graph::op::ShortestsPathsByBFS mygraph s paths]]
    mygraph destroy
    set result
} {a {s d} b {s d c t} c {s d} d s t {s d c}}

#Test 1.4
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-1.4 { graph simulation } {
    SETUP_BELLMANFORD_2
    set result [dictsort [struct::graph::op::ShortestsPathsByBFS mygraph node1 distances]]
    mygraph destroy
    set result
} {node1 0 node2 8 node3 5 node4 7 node5 3 node6 5}

#Test 1.5
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-1.5 { graph simulation } {
    SETUP_BELLMANFORD_2
    set result [dictsort [struct::graph::op::ShortestsPathsByBFS mygraph node1 paths]]
    mygraph destroy
    set result
} {node2 node1 node3 {node1 node2 node4} node4 {node1 node2} node5 {node1 node2 node4 node3} node6 {node1 node2 node4 node3 node5}}

#Tests for standard BFS Algorithm
#Test 1.6
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-1.6 { graph simulation } {
    SETUP_BFS_2
    set solution [struct::graph::op::BFS mygraph s graph]
    set result "[lsort [$solution nodes]] | [lsort [$solution arcs]]"
    $solution destroy
    mygraph destroy
    set result
} [tmE \
       {a b c d s t | {a b} {c t} {d c} {s a} {s d}} \
       {a b c d s t | {a b} {a c} {b t} {s a} {s d}}]
# Tcl ordering: d,a | Both results are valid.
# C   ordering: a,d |

#Test 1.7
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-1.7 { graph simulation } {
    SETUP_BFS_2
    set result [struct::graph::op::BFS mygraph s tree]
    set tree {}
    foreach node [$result nodes] {
	lappend tree [list $node [lsort [$result children $node]]]
    }
    mygraph destroy
    $result destroy
    lsort $tree
} [tmE \
       {{a b} {b {}} {c t} {d c} {s {a d}} {t {}}} \
       {{a {b c}} {b t} {c {}} {d {}} {s {a d}} {t {}}}]
# See 1.6.

#Test 1.8
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-1.8 { graph simulation } {
    SETUP_MDST_1
    set solution [struct::graph::op::BFS mygraph d graph]
    set result "[lsort [$solution nodes]] | [lsort [$solution arcs]]"
    mygraph destroy
    $solution destroy
    set result
} [tmE \
       {a b c d e f g h i j | {b a} {d c} {d e} {d h} {e f} {e g} {g i} {h b} {h j}} \
       {a b c d e f g h i j | {b a} {c b} {c g} {d c} {d e} {d h} {e f} {g i} {h j}}]

#Test 1.9
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-1.9 { graph simulation } {
    SETUP_MDST_1
    set result [struct::graph::op::BFS mygraph d tree]
    set tree {}
    foreach node [$result nodes] {
	lappend tree [list $node [lsort [$result children $node]]]
    }
    mygraph destroy
    $result destroy
    lsort $tree
} [tmE \
       {{a {}} {b a} {c {}} {d {c e h}} {e {f g}} {f {}} {g i} {h {b j}} {i {}} {j {}}} \
       {{a {}} {b a} {c {b g}} {d {c e h}} {e f} {f {}} {g i} {h j} {i {}} {j {}}}]

#Test 1.10
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-1.10 { graph simulation } {
    SETUP_BELLMANFORD_2
    set solution [struct::graph::op::BFS mygraph node1 graph]
    set result "[lsort [$solution nodes]] | [lsort [$solution arcs]]"
    mygraph destroy
    $solution destroy
    set result
} [tmE \
       {node1 node2 node3 node4 node5 node6 | {node1 node2} {node1 node3} {node2 node4} {node3 node5} {node4 node6}} \
       {node1 node2 node3 node4 node5 node6 | {node1 node2} {node1 node3} {node3 node4} {node3 node5} {node4 node6}}]

#Test 1.11
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-1.11 { graph simulation } {
    SETUP_BELLMANFORD_2
    set result [struct::graph::op::BFS mygraph node1 tree]
    set tree {}
    foreach node [$result nodes] {
	lappend tree [list $node [lsort [$result children $node]]]
    }
    mygraph destroy
    $result destroy
    lsort $tree
} [tmE \
       {{node1 {node2 node3}} {node2 node4} {node3 node5} {node4 node6} {node5 {}} {node6 {}}} \
       {{node1 {node2 node3}} {node2 {}} {node3 {node4 node5}} {node4 node6} {node5 {}} {node6 {}}}]

# -------------------------------------------------------------------------
# Wrong # args: Missing, Too many

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-2.0 { BFS, wrong args, missing } {
    catch {struct::graph::op::ShortestsPathsByBFS} msg
    set msg
} [tcltest::wrongNumArgs struct::graph::op::ShortestsPathsByBFS {G s outputFormat} 0]

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-2.1 { BFS, wrong args, missing } {
    catch {struct::graph::op::ShortestsPathsByBFS G} msg
    set msg
} [tcltest::wrongNumArgs struct::graph::op::ShortestsPathsByBFS {G s outputFormat} 1]

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-2.2 { BFS, wrong args, missing } {
    catch {struct::graph::op::ShortestsPathsByBFS G s} msg
    set msg
} [tcltest::wrongNumArgs struct::graph::op::ShortestsPathsByBFS {G s outputFormat} 2]

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-2.3 { BFS, wrong args, too many} {
    catch {struct::graph::op::ShortestsPathsByBFS G a b c} msg
    set msg
} [tcltest::tooManyArgs struct::graph::op::ShortestsPathsByBFS {G s outputFormat}]

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-2.4 { BFS, wrong args, missing } {
    catch {struct::graph::op::BFS} msg
    set msg
} [tcltest::wrongNumArgs struct::graph::op::BFS {G s outputFormat} 0]

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-2.5 { BFS, wrong args, missing } {
    catch {struct::graph::op::BFS G} msg
    set msg
} [tcltest::wrongNumArgs struct::graph::op::BFS {G s outputFormat} 1]

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-2.6 { BFS, wrong args, missing } {
    catch {struct::graph::op::BFS G s} msg
    set msg
} [tcltest::wrongNumArgs struct::graph::op::BFS {G s outputFormat} 2]

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-2.7 { BFS, wrong args, too many} {
    catch {struct::graph::op::BFS G a b c} msg
    set msg
} [tcltest::tooManyArgs struct::graph::op::BFS {G s outputFormat}]

# -------------------------------------------------------------------------
# Logical arguments checks and failures

#Test 3.0
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-ShortestsPathsByBFS-3.0 { ShortestsPathsByBFS } {
    SETUP
    catch {struct::graph::op::ShortestsPathsByBFS mygraph s badOption} result
    mygraph destroy
    set result
} {Unknown output format "badOption", expected distances, or paths.}

#Test 3.1
test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-BFS-3.1 { BFS } {
    SETUP
    catch {struct::graph::op::BFS mygraph s badOption} result
    mygraph destroy
    set result
} {Unknown output format "badOption", expected graph, or tree.}