test-suite-testReno.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:10k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (c) 1995 The Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. #    notice, this list of conditions and the following disclaimer.
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. #    notice, this list of conditions and the following disclaimer in the
  12. #    documentation and/or other materials provided with the distribution.
  13. # 3. All advertising materials mentioning features or use of this software
  14. #    must display the following acknowledgement:
  15. # This product includes software developed by the Computer Systems
  16. # Engineering Group at Lawrence Berkeley Laboratory.
  17. # 4. Neither the name of the University nor of the Laboratory may be used
  18. #    to endorse or promote products derived from this software without
  19. #    specific prior written permission.
  20. #
  21. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. # SUCH DAMAGE.
  32. #
  33. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/test/test-suite-testReno.tcl,v 1.19 2007/09/25 03:42:58 sallyfloyd Exp $
  34. #
  35. # To view a list of available tests to run with this script:
  36. # ns test-suite-testReno.tcl
  37. #
  38. source misc_simple.tcl
  39. remove-all-packet-headers       ; # removes all except common
  40. add-packet-header Flags IP TCP  ; # hdrs reqd for TCP
  41. Agent/TCP set tcpTick_ 0.1
  42. # The default for tcpTick_ is being changed to reflect a changing reality.
  43. Agent/TCP set rfc2988_ false
  44. # The default for rfc2988_ is being changed to true.
  45. # FOR UPDATING GLOBAL DEFAULTS:
  46. Agent/TCP set precisionReduce_ false ;   # default changed on 2006/1/24.
  47. Agent/TCP set rtxcur_init_ 6.0 ;      # Default changed on 2006/01/21
  48. Agent/TCP set updated_rttvar_ false ;  # Variable added on 2006/1/21
  49. Agent/TCP set useHeaders_ false
  50. # The default is being changed to useHeaders_ true.
  51. Agent/TCP set windowInit_ 1
  52. # The default is being changed to 2.
  53. Agent/TCP set singledup_ 0
  54. # The default is being changed to 1
  55. Agent/TCP set minrto_ 0
  56. # The default is being changed to minrto_ 1
  57. Agent/TCP set syn_ false
  58. Agent/TCP set delay_growth_ false
  59. # In preparation for changing the default values for syn_ and delay_growth_.
  60. Trace set show_tcphdr_ 1
  61. set wrap 90
  62. set wrap1 [expr 90 * 512 + 40]
  63. Class Topology
  64. Topology instproc node? num {
  65.     $self instvar node_
  66.     return $node_($num)
  67. }
  68. #
  69. # Links1 uses 8Mb, 5ms feeders, and a 800Kb 10ms bottleneck.
  70. # Queue-limit on bottleneck is 2 packets.
  71. #
  72. Class Topology/net4 -superclass Topology
  73. Topology/net4 instproc init ns {
  74.     $self instvar node_
  75.     set node_(s1) [$ns node]
  76.     set node_(s2) [$ns node]
  77.     set node_(r1) [$ns node]
  78.     set node_(k1) [$ns node]
  79.     $self next
  80.     $ns duplex-link $node_(s1) $node_(r1) 8Mb 0ms DropTail
  81.     $ns duplex-link $node_(s2) $node_(r1) 8Mb 0ms DropTail
  82.     $ns duplex-link $node_(r1) $node_(k1) 800Kb 100ms DropTail
  83.     $ns queue-limit $node_(r1) $node_(k1) 8
  84.     $ns queue-limit $node_(k1) $node_(r1) 8
  85.     $self instvar lossylink_
  86.     set lossylink_ [$ns link $node_(r1) $node_(k1)]
  87.     set em [new ErrorModule Fid]
  88.     set errmodel [new ErrorModel/Periodic]
  89.     $errmodel unit pkt
  90.     $lossylink_ errormodule $em
  91. }
  92. TestSuite instproc finish file {
  93.     global quiet wrap PERL
  94.     exec $PERL ../../bin/set_flow_id -s all.tr | 
  95.     $PERL ../../bin/getrc -e -s 2 -d 3 | 
  96.     $PERL ../../bin/raw2xg -v -s 0.01 -m $wrap -t $file > temp.rands
  97.     if {$quiet == "false"} {
  98. exec xgraph -bb -tk -nl -m -x time -y packets temp.rands &
  99.     }
  100.     ## now use default graphing tool to make a data file
  101.     ## if so desired
  102.     # exec csh gnuplotC.com temp.rands $file
  103.     exit 0
  104. }
  105. TestSuite instproc emod {} {
  106.         $self instvar topo_
  107.         $topo_ instvar lossylink_
  108.         set errmodule [$lossylink_ errormodule]
  109.         return $errmodule
  110. TestSuite instproc drop_pkts pkts {
  111.     $self instvar ns_
  112.     set emod [$self emod]
  113.     set errmodel1 [new ErrorModel/List]
  114.     $errmodel1 droplist $pkts
  115.     $emod insert $errmodel1
  116.     $emod bind $errmodel1 1
  117. }
  118. TestSuite instproc setup {tcptype window list} {
  119. global wrap wrap1
  120.         $self instvar ns_ node_ testName_
  121. $self setTopo
  122. set fid 1
  123.         # Set up TCP connection
  124.      if {$tcptype == "Tahoe"} {
  125.        set tcp1 [$ns_ create-connection TCP $node_(s1) 
  126.            TCPSink/DelAck $node_(k1) $fid]
  127.      } elseif {$tcptype == "Sack1"} {
  128.        set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) 
  129.            TCPSink/Sack1/DelAck  $node_(k1) $fid]
  130.      } else {
  131.        set tcp1 [$ns_ create-connection TCP/$tcptype $node_(s1) 
  132.            TCPSink/DelAck $node_(k1) $fid]
  133.      }
  134.         #$tcp1 set window_ 5
  135. $tcp1 set window_ $window
  136.         set ftp1 [$tcp1 attach-app FTP]
  137.         $ns_ at 1.0 "$ftp1 start"
  138.         $self tcpDump $tcp1 4.0
  139.         $self drop_pkts $list
  140.         #$self traceQueues $node_(r1) [$self openTrace 4.01 $testName_]
  141. $ns_ at 4.01 "$self cleanupAll $testName_"
  142.         $ns_ run
  143. }
  144. # Definition of test-suite tests
  145. ###################################################
  146. ## Two drops
  147. ###################################################
  148. Class Test/Tahoe_TCP -superclass TestSuite
  149. Test/Tahoe_TCP instproc init {} {
  150. $self instvar net_ test_ guide_
  151. set net_ net4
  152. set test_ Tahoe_TCP
  153.   set guide_ "Tahoe TCP, two dropped packets."
  154. $self next
  155. }
  156. Test/Tahoe_TCP instproc run {} {
  157.     $self instvar guide_
  158.     puts "Guide: $guide_"
  159.     $self setup Tahoe {5} {15 18}
  160. }
  161. Class Test/Tahoe_TCP_without_Fast_Retransmit -superclass TestSuite
  162. Test/Tahoe_TCP_without_Fast_Retransmit instproc init {} {
  163. $self instvar net_ test_ guide_
  164. set net_ net4
  165. set test_ Tahoe_TCP_without_Fast_Retransmit
  166.   set guide_ "Tahoe TCP without Fast Retransmit, two dropped packets."
  167. Agent/TCP set noFastRetrans_ true
  168. $self next
  169. }
  170. Test/Tahoe_TCP_without_Fast_Retransmit instproc run {} {
  171.     $self instvar guide_
  172.     puts "Guide: $guide_"
  173.     $self setup Tahoe {5} {15 18}
  174. }
  175. Class Test/Reno_TCP -superclass TestSuite
  176. Test/Reno_TCP instproc init {} {
  177. $self instvar net_ test_ guide_
  178. set net_ net4
  179. set test_ Reno_TCP
  180.   set guide_ "Reno TCP, two dropped packets."
  181. $self next
  182. }
  183. Test/Reno_TCP instproc run {} {
  184.     $self instvar guide_
  185.     puts "Guide: $guide_"
  186.     $self setup Reno {5} {15 18}
  187. }
  188. Class Test/NewReno_TCP -superclass TestSuite
  189. Test/NewReno_TCP instproc init {} {
  190. $self instvar net_ test_ guide_
  191. set net_ net4
  192. set test_ NewReno_TCP
  193.   set guide_ "NewReno TCP, two dropped packets."
  194. Agent/TCP set noFastRetrans_ false
  195. $self next
  196. }
  197. Test/NewReno_TCP instproc run {} {
  198.     $self instvar guide_
  199.     puts "Guide: $guide_"
  200.     $self setup Newreno {5} {15 18}
  201. }
  202. Class Test/Sack_TCP -superclass TestSuite
  203. Test/Sack_TCP instproc init {} {
  204. $self instvar net_ test_ guide_
  205. set net_ net4
  206. set test_ Sack_TCP
  207.   set guide_ "Sack TCP, two dropped packets."
  208. Agent/TCP set noFastRetrans_ false
  209. $self next
  210. }
  211. Test/Sack_TCP instproc run {} {
  212.     $self instvar guide_
  213.     puts "Guide: $guide_"
  214.     $self setup Sack1 {5} {15 18}
  215. }
  216. ###################################################
  217. ## One drop
  218. ###################################################
  219. Class Test/Tahoe_TCP2 -superclass TestSuite
  220. Test/Tahoe_TCP2 instproc init {} {
  221. $self instvar net_ test_ guide_
  222. set net_ net4
  223. set test_ Tahoe_TCP2
  224.   set guide_ "Tahoe TCP, one dropped packet."
  225. $self next
  226. }
  227. Test/Tahoe_TCP2 instproc run {} {
  228.         $self instvar guide_
  229.         puts "Guide: $guide_"
  230.         #$self setup1 Tahoe {17}
  231. $self setup Tahoe {8} {17}
  232. }
  233. Class Test/Tahoe_TCP2_without_Fast_Retransmit -superclass TestSuite
  234. Test/Tahoe_TCP2_without_Fast_Retransmit instproc init {} {
  235. $self instvar net_ test_ guide_
  236. set net_ net4
  237. set test_ Tahoe_TCP2_without_Fast_Retransmit
  238.   set guide_ "Tahoe TCP without Fast Retransmit, one dropped packet."
  239. Agent/TCP set noFastRetrans_ true
  240. $self next
  241. }
  242. Test/Tahoe_TCP2_without_Fast_Retransmit instproc run {} {
  243.         $self instvar guide_
  244.         puts "Guide: $guide_"
  245.         #$self setup1 Tahoe {17}
  246. $self setup Tahoe {8} {17}
  247. }
  248. Class Test/Reno_TCP2 -superclass TestSuite
  249. Test/Reno_TCP2 instproc init {} {
  250. $self instvar net_ test_ guide_
  251. set net_ net4
  252. set test_ Reno_TCP2
  253.   set guide_ "Reno TCP, one dropped packet."
  254. $self next
  255. }
  256. Test/Reno_TCP2 instproc run {} {
  257.         $self instvar guide_
  258.         puts "Guide: $guide_"
  259.         $self setup Reno {8} {17}
  260. }
  261. Class Test/NewReno_TCP2 -superclass TestSuite
  262. Test/NewReno_TCP2 instproc init {} {
  263. $self instvar net_ test_ guide_
  264. set net_ net4
  265. set test_ NewReno_TCP2
  266.   set guide_ "NewReno TCP, one dropped packet."
  267. Agent/TCP set noFastRetrans_ false
  268. $self next
  269. }
  270. Test/NewReno_TCP2 instproc run {} {
  271.         $self instvar guide_
  272.         puts "Guide: $guide_"
  273.         $self setup Newreno {8} {17}
  274. }
  275. Class Test/Sack_TCP2 -superclass TestSuite
  276. Test/Sack_TCP2 instproc init {} {
  277. $self instvar net_ test_ guide_
  278. set net_ net4
  279. set test_ Sack_TCP2
  280.   set guide_ "Sack TCP, one dropped packet."
  281. Agent/TCP set noFastRetrans_ false
  282. $self next
  283. }
  284. Test/Sack_TCP2 instproc run {} {
  285.         $self instvar guide_
  286.         puts "Guide: $guide_"
  287.         $self setup Sack1 {8} {17}
  288. }
  289. TestSuite runTest