1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- %description:
- Test for basic UDP application lifecycle handling.
- Sequence of operations:
- - at 0 client initializes to up
- - at 0 server initializes to down
- - at 1 client executes shutdown operation
- - at 2 server executes startup operation
- - simulation stops at 3
- %inifile: omnetpp.ini
- [General]
- network = Test
- tkenv-plugin-path = ../../../etc/plugins
- ned-path = .;../../../../src;../../lib
- cmdenv-express-mode = false
- sim-time-limit = 3s
- record-eventlog = true
- #omnetpp 5.0 - 5.1 compatibility:
- eventlog-file = "${resultdir}/${configname}-${runnumber}.elog"
- output-scalar-file = "${resultdir}/${configname}-${runnumber}.sca"
- output-vector-file = "${resultdir}/${configname}-${runnumber}.vec"
- snapshot-file = "${resultdir}/${configname}-${runnumber}.sna"
- **.hasStatus = true
- **.client.status.initialStatus = "up"
- **.server.status.initialStatus = "down"
- **.scenarioManager.script = xmldoc("scenario.xml")
- **.arp.retryCount = 0
- **.arp.retryTimeout = 100ms
- # udp apps
- **.numUdpApps = 1
- **.client.udpApp[0].typename = "UDPBasicApp"
- **.client.udpApp[0].startTime = 0s
- **.client.udpApp[0].destAddresses = "10.0.0.2"
- **.client.udpApp[0].destPort = 1000
- **.client.udpApp[0].messageLength = 1000B
- **.client.udpApp[0].sendInterval = 100ms
- **.server.udpApp[0].typename = "UDPSink"
- **.server.udpApp[0].localPort = 1000
- %file: test.ned
- import inet.node.ethernet.Eth10M;
- import inet.node.inet.StandardHost;
- import inet.networklayer.configurator.ipv4.IPv4NetworkConfigurator;
- import inet.common.lifecycle.LifecycleController;
- import inet.common.scenario.ScenarioManager;
- network Test
- {
- submodules:
- scenarioManager: ScenarioManager;
- lifecycleController: LifecycleController;
- configurator: IPv4NetworkConfigurator;
- client: StandardHost;
- server: StandardHost;
- connections:
- client.pppg++ <--> Eth10M <--> server.pppg++;
- }
- %file: scenario.xml
-
- <scenario>
- <at t="1">
- <tell module="lifecycleController" target="client" operation="NodeShutdownOperation"/>
- </at>
- <at t="2">
- <tell module="lifecycleController" target="server" operation="NodeStartOperation"/>
- </at>
- </scenario>
- %contains-regex: stdout
- .*
- Test.client shutting down
- .*
- Test.client shut down
- .*
- Test.server starting up
- .*
- Test.server started
- .*
- Test.server.udpApp\[0\]: received 0 packets
- .*
- %#--------------------------------------------------------------------------------------------------------------
- %not-contains: stdout
- undisposed object:
- %not-contains: stdout
- -- check module destructor
- %#--------------------------------------------------------------------------------------------------------------
|