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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
# test-suite-tmix.tcl
#
# Based on ns/tcl/test/test-suite-packmime.tcl
# Modified by Matt Crinklaw-Vogt and Michele Weigle,
# Old Dominion Univ, Mar 2008
#
#*************************************************************************
# Tests to validate Tmix
#
# Lossless-orig - don't enforce losses, use original cvec format
# Lossless-alt - don't enforce losses, use alternate cvec format
# Lossy-alt - enforce losses, use alternate cvec format
# Oneway-lossy-alt - use one-way agent, etc.
# Oneway-lossless-alt
#
#*************************************************************************
source misc.tcl
# this will generate the same traffic in each direction
set INBOUND_ORIG "../ex/tmix/sample-orig.cvec"
set OUTBOUND_ORIG "../ex/tmix/sample-orig.cvec"
set INBOUND_ALT "../ex/tmix/sample-alt.cvec"
set OUTBOUND_ALT "../ex/tmix/sample-alt.cvec"
set WARMUP 4; # time to start tracing
set END 5; # simulation end time
TestSuite instproc finish testname {
$self instvar ns_
$ns_ halt
}
Class SkelTopology
Class Topology -superclass SkelTopology
Topology instproc node? num {
$self instvar node_
return $node_($num)
}
Class Topology/DB -superclass Topology
#
# Tmix test topology
#
# s1 k1
# \ /
# 100Mb, 1ms \ 100Mb, 1ms / 100Mb, 1ms
# r1 ----------- r2
# 100Mb, 1ms / \ 100Mb, 1ms
# / \
# s2 k2
#
Topology/DB instproc init ns {
$self instvar node_
set node_(s1) [$ns node]
set node_(s2) [$ns node]
set node_(r1) [$ns Tmix_DelayBox]
set node_(r2) [$ns Tmix_DelayBox]
set node_(k1) [$ns node]
set node_(k2) [$ns node]
$self next
$ns duplex-link $node_(s1) $node_(r1) 100Mb 1ms DropTail
$ns duplex-link $node_(s2) $node_(r1) 100Mb 1ms DropTail
$ns duplex-link $node_(r1) $node_(r2) 100Mb 1ms DropTail
$ns duplex-link $node_(k1) $node_(r2) 100Mb 1ms DropTail
$ns duplex-link $node_(k2) $node_(r2) 100Mb 1ms DropTail
}
TestSuite instproc setup_topo {} {
$self instvar ns_
remove-all-packet-headers
add-packet-header IP TCP
$ns_ use-scheduler Heap
Trace set show_tcphdr_ 1
Agent/TCP/FullTcp set segsize_ 1460;
Agent/TCP/FullTcp set nodelay_ true;
Agent/TCP/FullTcp set segsperack_ 2;
}
TestSuite instproc start_tracing {} {
$self instvar ns_ node_
# clear output files
exec rm -f temp.rands
# setup tracing
set trace_file [open temp.rands w]
$ns_ trace-queue $node_(s1) $node_(r1) $trace_file
$ns_ trace-queue $node_(r1) $node_(s1) $trace_file
$ns_ trace-queue $node_(s2) $node_(r1) $trace_file
$ns_ trace-queue $node_(r1) $node_(s2) $trace_file
$ns_ trace-queue $node_(r1) $node_(r2) $trace_file
$ns_ trace-queue $node_(r2) $node_(r1) $trace_file
$ns_ trace-queue $node_(k1) $node_(r2) $trace_file
$ns_ trace-queue $node_(r2) $node_(k1) $trace_file
$ns_ trace-queue $node_(k2) $node_(r2) $trace_file
$ns_ trace-queue $node_(r2) $node_(k2) $trace_file
}
#
# Lossy-alt
#
Class Test/Lossy-alt -superclass TestSuite
Test/Lossy-alt instproc init topo {
global defaultRNG
$self instvar net_ defNet_ test_
$defaultRNG seed 9999
set net_ $topo
set defNet_ DB
set test_ Lossy-alt
$self next 0
}
Test/Lossy-alt instproc run {} {
global INBOUND_ALT OUTBOUND_ALT END WARMUP
$self instvar ns_ node_
$self setup_topo
# setup Tmix-DB nodes
$node_(r1) set-cvfile $INBOUND_ALT [$node_(s1) id] [$node_(k1) id]
$node_(r2) set-cvfile $OUTBOUND_ALT [$node_(k2) id] [$node_(s2) id]
# setup Tmix nodes
set tmix(0) [new Tmix]
$tmix(0) set-init $node_(s1);
$tmix(0) set-acc $node_(k1);
$tmix(0) set-ID 7
$tmix(0) set-cvfile $INBOUND_ALT
$tmix(0) set-TCP Newreno
set tmix(1) [new Tmix]
$tmix(1) set-init $node_(k2);
$tmix(1) set-acc $node_(s2);
$tmix(1) set-ID 8
$tmix(1) set-cvfile $OUTBOUND_ALT
$tmix(1) set-TCP Newreno
$ns_ at 0.0 "$tmix(0) start"
$ns_ at 0.0 "$tmix(1) start"
$ns_ at $WARMUP "$self start_tracing"
$ns_ at $END "$tmix(0) stop"
$ns_ at $END "$tmix(1) stop"
$ns_ at [expr $END + 1] "$ns_ halt"
$ns_ run
}
#
# Lossless-orig
#
Class Test/Lossless-orig -superclass TestSuite
Test/Lossless-orig instproc init topo {
global defaultRNG
$self instvar net_ defNet_ test_
$defaultRNG seed 9999
set net_ $topo
set defNet_ DB
set test_ Lossless-orig
$self next 0
}
Test/Lossless-orig instproc run {} {
global INBOUND_ORIG OUTBOUND_ORIG END WARMUP
$self instvar ns_ node_
$self setup_topo
# setup Tmix-DB nodes
$node_(r1) set-cvfile $INBOUND_ORIG [$node_(s1) id] [$node_(k1) id]
$node_(r2) set-cvfile $OUTBOUND_ORIG [$node_(k2) id] [$node_(s2) id]
$node_(r1) set-lossless
$node_(r2) set-lossless
# setup Tmix nodes
set tmix(0) [new Tmix]
$tmix(0) set-init $node_(s1);
$tmix(0) set-acc $node_(k1);
$tmix(0) set-ID 7
$tmix(0) set-cvfile $INBOUND_ORIG
$tmix(0) set-TCP Newreno
set tmix(1) [new Tmix]
$tmix(1) set-init $node_(k2);
$tmix(1) set-acc $node_(s2);
$tmix(1) set-ID 8
$tmix(1) set-cvfile $OUTBOUND_ORIG
$tmix(1) set-TCP Newreno
$ns_ at 0.0 "$tmix(0) start"
$ns_ at 0.0 "$tmix(1) start"
$ns_ at $WARMUP "$self start_tracing"
$ns_ at $END "$tmix(0) stop"
$ns_ at $END "$tmix(1) stop"
$ns_ at [expr $END + 1] "$ns_ halt"
$ns_ run
}
#
# Lossless-alt
#
Class Test/Lossless-alt -superclass TestSuite
Test/Lossless-alt instproc init topo {
global defaultRNG
$self instvar net_ defNet_ test_
$defaultRNG seed 9999
set net_ $topo
set defNet_ DB
set test_ Lossless-alt
$self next 0
}
Test/Lossless-alt instproc run {} {
global INBOUND_ALT OUTBOUND_ALT END WARMUP
$self instvar ns_ node_
$self setup_topo
# setup Tmix-DB nodes
$node_(r1) set-cvfile $INBOUND_ALT [$node_(s1) id] [$node_(k1) id]
$node_(r2) set-cvfile $OUTBOUND_ALT [$node_(k2) id] [$node_(s2) id]
$node_(r1) set-lossless
$node_(r2) set-lossless
# setup Tmix nodes
set tmix(0) [new Tmix]
$tmix(0) set-init $node_(s1);
$tmix(0) set-acc $node_(k1);
$tmix(0) set-ID 7
$tmix(0) set-cvfile $INBOUND_ALT
$tmix(0) set-TCP Newreno
set tmix(1) [new Tmix]
$tmix(1) set-init $node_(k2);
$tmix(1) set-acc $node_(s2);
$tmix(1) set-ID 8
$tmix(1) set-cvfile $OUTBOUND_ALT
$tmix(1) set-TCP Newreno
$ns_ at 0.0 "$tmix(0) start"
$ns_ at 0.0 "$tmix(1) start"
$ns_ at $WARMUP "$self start_tracing"
$ns_ at $END "$tmix(0) stop"
$ns_ at $END "$tmix(1) stop"
$ns_ at [expr $END + 1] "$ns_ halt"
$ns_ run
}
#
# Oneway-lossy-alt
#
Class Test/Oneway-lossy-alt -superclass TestSuite
Test/Oneway-lossy-alt instproc init topo {
global defaultRNG
$self instvar net_ defNet_ test_
$defaultRNG seed 9999
set net_ $topo
set defNet_ DB
set test_ Oneway-lossy-alt
$self next 0
}
Test/Oneway-lossy-alt instproc run {} {
global INBOUND_ALT OUTBOUND_ALT END WARMUP
$self instvar ns_ node_
$self setup_topo
# setup Tmix-DB nodes
$node_(r1) set-cvfile $INBOUND_ALT [$node_(s1) id] [$node_(k1) id]
$node_(r2) set-cvfile $OUTBOUND_ALT [$node_(k2) id] [$node_(s2) id]
# setup Tmix nodes
set tmix(0) [new Tmix]
$tmix(0) set-init $node_(s1);
$tmix(0) set-acc $node_(k1);
$tmix(0) set-ID 7
$tmix(0) set-cvfile $INBOUND_ALT
$tmix(0) set-agent-type one-way
$tmix(0) set-TCP Newreno
$tmix(0) set-pkt-size 500
$tmix(0) set-sink DelAck
set tmix(1) [new Tmix]
$tmix(1) set-init $node_(k2);
$tmix(1) set-acc $node_(s2);
$tmix(1) set-ID 8
$tmix(1) set-cvfile $OUTBOUND_ALT
$tmix(1) set-agent-type one-way
$tmix(1) set-TCP Newreno
$tmix(1) set-pkt-size 500
$tmix(1) set-sink DelAck
$ns_ at 0.0 "$tmix(0) start"
$ns_ at 0.0 "$tmix(1) start"
$ns_ at $WARMUP "$self start_tracing"
$ns_ at $END "$tmix(0) stop"
$ns_ at $END "$tmix(1) stop"
$ns_ at [expr $END + 1] "$ns_ halt"
$ns_ run
}
#
# Lossless-alt
#
Class Test/Oneway-lossless-alt -superclass TestSuite
Test/Oneway-lossless-alt instproc init topo {
global defaultRNG
$self instvar net_ defNet_ test_
$defaultRNG seed 9999
set net_ $topo
set defNet_ DB
set test_ Oneway-lossless-alt
$self next 0
}
Test/Oneway-lossless-alt instproc run {} {
global INBOUND_ALT OUTBOUND_ALT END WARMUP
$self instvar ns_ node_
$self setup_topo
# setup Tmix-DB nodes
$node_(r1) set-cvfile $INBOUND_ALT [$node_(s1) id] [$node_(k1) id]
$node_(r2) set-cvfile $OUTBOUND_ALT [$node_(k2) id] [$node_(s2) id]
$node_(r1) set-lossless
$node_(r2) set-lossless
# setup Tmix nodes
set tmix(0) [new Tmix]
$tmix(0) set-init $node_(s1);
$tmix(0) set-acc $node_(k1);
$tmix(0) set-ID 7
$tmix(0) set-cvfile $INBOUND_ALT
$tmix(0) set-agent-type one-way
$tmix(0) set-TCP Newreno
$tmix(0) set-pkt-size 500
$tmix(0) set-sink DelAck
set tmix(1) [new Tmix]
$tmix(1) set-init $node_(k2);
$tmix(1) set-acc $node_(s2);
$tmix(1) set-ID 8
$tmix(1) set-cvfile $OUTBOUND_ALT
$tmix(1) set-agent-type one-way
$ns_ at 0.0 "$tmix(0) start"
$ns_ at 0.0 "$tmix(1) start"
$ns_ at $WARMUP "$self start_tracing"
$ns_ at $END "$tmix(0) stop"
$ns_ at $END "$tmix(1) stop"
$ns_ at [expr $END + 1] "$ns_ halt"
$ns_ run
}
TestSuite runTest
|