Debug and improve tests

This commit is contained in:
Loic Guegan 2022-09-13 14:38:30 +02:00
parent b3cbb52f00
commit 17bfda379b
25 changed files with 376 additions and 21 deletions

View file

@ -177,9 +177,7 @@ class YAMLPlatformFile:
self.parsing_error("breakpoints should be a list of number")
self.default["breakpoints"]=general["breakpoints"]
if "breakpoints_every" in general:
if not str(general["breakpoints_every"]).isnumeric():
self.parsing_error("breakpoints_every should be a number")
self.default["breakpoints_every"]=general["breakpoints_every"]
self.default["breakpoints_every"]=float(general["breakpoints_every"])
if "breakpoints_callback" in general:
cb=general["breakpoints_callback"]
file=cb["file"]

View file

@ -0,0 +1,16 @@
nodes:
count: 2
implementations:
- all node.py
interfaces:
wlan0:
type: "wireless"
links:
- all 2bps 0s all
txperfs:
- all 2bps 0s
eth0:
type: "wired"
links:
- all 2Bps 0s all

View file

@ -0,0 +1,20 @@
general:
interferences: no
nodes:
count: 3
implementations:
- 0-1 sender.py
- 2 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 3bps 0s all
txperfs:
- all 3bps 0s
eth0:
type: "wired"
links:
- all 3bps 0s all

View file

@ -0,0 +1,20 @@
general:
interferences: no
nodes:
count: 3
implementations:
- 0,2 receiver.py
- 1 sender.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,20 @@
general:
interferences: no
nodes:
count: 3
implementations:
- 0,1 sender.py
- 2 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 3bps 0s all
txperfs:
- all 3bps 0s
eth0:
type: "wired"
links:
- all 3bps 0s all

View file

@ -0,0 +1,17 @@
nodes:
count: 2
implementations:
- 0 sender.py
- 1 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,17 @@
nodes:
count: 2
implementations:
- 0 sender.py
- 1 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,17 @@
nodes:
count: 2
implementations:
- 0 sender.py
- 1 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,28 @@
nodes:
count: 3
implementations:
- 0 sender.py
- 1,2 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
- 0 0bps 0s 2 # Sender cannot reach n2 on wlan0
txperfs:
- all 1Bps 0s
wlan1:
type: "wireless"
links:
- all 1Bps 0s all # Sender can reach n1 AND n2 on wlan1
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all
eth1:
type: "wired"
links:
- all 2Bps 0s all # On eth1 sender can reach receiver twice faster than eth0

View file

@ -0,0 +1,17 @@
nodes:
count: 2
implementations:
- 0 sender.py
- 1 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,17 @@
nodes:
count: 3
implementations:
- 0,1 sender.py
- 2 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,17 @@
nodes:
count: 3
implementations:
- 0 sender.py
- 1,2 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,17 @@
nodes:
count: 3
implementations:
- 0,1 sender.py
- 2 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,17 @@
nodes:
count: 2
implementations:
- 0 sender.py
- 1 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,17 @@
nodes:
count: 3
implementations:
- 0 sender.py
- 1,2 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
txperfs:
- all 1Bps 0s
eth0:
type: "wired"
links:
- all 1Bps 0s all

View file

@ -0,0 +1,16 @@
nodes:
count: 2
implementations:
- all node.py
interfaces:
wlan0:
type: "wireless"
links:
- all 2bps 0s all
txperfs:
- all 2bps 0s
eth0:
type: "wired"
links:
- all 2bps 0s all

View file

@ -0,0 +1,16 @@
nodes:
count: 3
implementations:
- all node.py
interfaces:
wlan0:
type: "wireless"
links:
- all 2bps 0s all
txperfs:
- all 2bps 0s
eth0:
type: "wired"
links:
- all 2bps 0s all

View file

@ -0,0 +1,4 @@
#!/usr/bin/env python
def callback(simulator):
simulator.log("Hello Callback!")

View file

@ -0,0 +1,22 @@
general:
breakpoints_every: 3.3
breakpoints_callback:
file: "callback.py"
callback: "callback"
nodes:
count: 2
implementations:
- all node.py
interfaces:
wlan0:
type: "wireless"
links:
- all 2bps 0s all
txperfs:
- all 2bps 0s
eth0:
type: "wired"
links:
- all 2bps 0s all

View file

@ -1,18 +0,0 @@
#!/usr/bin/env python
# Load ESDS
import esds
import numpy as np
n=2
B=np.full((2,2),n)
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}})
s.create_node("node")
s.create_node("node")
def callback(simulator):
simulator.log("Hello Callback!")
s.run(breakpoints_every=3.3,breakpoint_callback=callback)

View file

@ -0,0 +1,4 @@
#!/usr/bin/env python
def callback(simulator):
simulator.log("Hello Callback!")

View file

@ -0,0 +1,22 @@
general:
breakpoints: [1,2,3,10]
breakpoints_callback:
file: "callback.py"
callback: "callback"
nodes:
count: 2
implementations:
- all node.py
interfaces:
wlan0:
type: "wireless"
links:
- all 2bps 0s all
txperfs:
- all 2bps 0s
eth0:
type: "wired"
links:
- all 2bps 0s all

View file

@ -0,0 +1,19 @@
general:
breakpoints: [1,2,3,10]
nodes:
count: 2
implementations:
- all node.py
interfaces:
wlan0:
type: "wireless"
links:
- all 2bps 0s all
txperfs:
- all 2bps 0s
eth0:
type: "wired"
links:
- all 2bps 0s all

View file

@ -0,0 +1,14 @@
nodes:
count: 3
implementations:
- 0,2 sender.py
- 1 receiver.py
interfaces:
wlan0:
type: "wireless"
links:
- all 1Bps 0s all
- 0,2 0bps 0s 2,0 # Node 0 and 2 are out of range
txperfs:
- all 1Bps 0s

View file

@ -13,6 +13,7 @@ do
cd $test
testcmd="${pythonexec} simulator.py"
[ -e "platform.yaml" ] && testcmd="esds run platform.yaml"
echo $testcmd
timeout $test_timeout ${testcmd} &> "$out"
# Ensure timeout