summaryrefslogtreecommitdiff
path: root/tests/mobility_eth0_latency_1s1r
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-09-13 15:49:38 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2022-09-13 15:49:38 +0200
commitbe6dafcd106ff9c50c9fa316685874773f6b251e (patch)
treedfa3cc1e7327bbfc636662b165c2f7822c585ca8 /tests/mobility_eth0_latency_1s1r
parent17bfda379be17acb20abfb7f0c9231d36ef8766d (diff)
Update all integration tests and debug platform parsing
Diffstat (limited to 'tests/mobility_eth0_latency_1s1r')
-rwxr-xr-xtests/mobility_eth0_latency_1s1r/mobility.py6
-rw-r--r--[-rwxr-xr-x]tests/mobility_eth0_latency_1s1r/platform.yaml (renamed from tests/mobility_eth0_latency_1s1r/simulator.py)33
2 files changed, 21 insertions, 18 deletions
diff --git a/tests/mobility_eth0_latency_1s1r/mobility.py b/tests/mobility_eth0_latency_1s1r/mobility.py
new file mode 100755
index 0000000..cfefdb7
--- /dev/null
+++ b/tests/mobility_eth0_latency_1s1r/mobility.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+def callback(simulator):
+ simulator.log("Network update!")
+ new_lat_eth0=simulator.netmat["eth0"]["latency"]+1/2
+ simulator.update_network({"eth0":{"bandwidth":simulator.netmat["eth0"]["bandwidth"], "latency":new_lat_eth0, "is_wired":True}})
diff --git a/tests/mobility_eth0_latency_1s1r/simulator.py b/tests/mobility_eth0_latency_1s1r/platform.yaml
index 42ff85b..df1ff46 100755..100644
--- a/tests/mobility_eth0_latency_1s1r/simulator.py
+++ b/tests/mobility_eth0_latency_1s1r/platform.yaml
@@ -1,9 +1,3 @@
-#!/usr/bin/env python
-
-# Load ESDS
-import esds
-import numpy as np
-
########## Scenario ##########
# Notations:
# - Remaining communication duration (last communication ends minus current simulated time) = C
@@ -23,17 +17,20 @@ import numpy as np
# |-------------------+------------+----------------+----------------------+---------------------------+--------------------------|
##############################
-B=np.full((2,2),8)
-L=np.full((2,2),0)
-s=esds.Simulator({"wlan0":{"bandwidth":B, "latency":L, "is_wired":False}, "eth0":{"bandwidth":B, "latency":L, "is_wired":True}})
+general:
+ breakpoints_every: 0.5
+ breakpoints_callback:
+ file: "mobility.py"
+ callback: "callback"
-s.create_node("sender")
-s.create_node("receiver")
+nodes:
+ count: 2
+ implementations:
+ - 0 sender.py
+ - 1 receiver.py
-def callback(simulator):
- simulator.log("Network update!")
- new_lat_wlan0=simulator.netmat["wlan0"]["latency"]+1/2
- new_lat_eth0=simulator.netmat["eth0"]["latency"]+1/2
- simulator.update_network({"wlan0":{"bandwidth":B, "latency":new_lat_wlan0, "is_wired":False},"eth0":{"bandwidth":B, "latency":new_lat_eth0, "is_wired":True}})
-
-s.run(breakpoints_every=1/2,breakpoint_callback=callback)
+interfaces:
+ eth0:
+ type: "wired"
+ links:
+ - all 1Bps 0s all \ No newline at end of file