Improve tests

This commit is contained in:
Loic Guegan 2022-06-30 12:11:59 +02:00
parent 1bef51d878
commit d0ae9f3296
85 changed files with 77 additions and 44 deletions

View file

@ -0,0 +1,11 @@
[t=0.000,src=n0] Send 1 bytes to n1 on eth0
[t=1.000,src=n1] Receive 1 bytes on eth0
[t=1.000,src=n0] Send worked!
[t=1.000,src=n1] Received: Hello World!
[t=1.000,src=n0] Send 1 bytes to n1 on eth0
[t=1.500,src=n0] Send failed
[t=1.500,src=n0] Send 1 bytes to n1 on eth0
[t=2.500,src=n1] Receive 1 bytes on eth0
[t=2.500,src=n0] Send worked!
[t=2.500,src=n1] Received: Hello World!
[t=2.500,src=esds] Simulation ends

View file

@ -0,0 +1,11 @@
#!/usr/bin/env python
def receive(node):
##### Simple receive
code, data=node.receive("eth0")
msg="Received: "+data if code == 0 else "Receive failed code="+str(code)
node.log(msg)
def execute(api):
receive(api)
receive(api)

View file

@ -0,0 +1,14 @@
#!/usr/bin/env python
def sendt(node,timeout):
code=node.sendt("eth0","Hello World!",1,1,timeout)
msg="Send worked!" if code == 0 else "Send failed"
node.log(msg)
def execute(api):
# Should work
sendt(api,2)
# Should not work
sendt(api,0.5)
# Should work
sendt(api,2)

View file

@ -0,0 +1,14 @@
#!/usr/bin/env python
# Load ESDS
import esds
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}})
s.create_node("sender")
s.create_node("receiver")
s.run()