mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 10:06:28 +02:00
Update tests
This commit is contained in:
parent
e188ca4040
commit
b3cbb52f00
5 changed files with 40 additions and 8 deletions
|
@ -5,7 +5,7 @@ archlinux:
|
||||||
- pip install build
|
- pip install build
|
||||||
- pip install .
|
- pip install .
|
||||||
script:
|
script:
|
||||||
- ./tests/run.py
|
- ./tests/run.sh
|
||||||
|
|
||||||
debian:
|
debian:
|
||||||
image: "debian:latest"
|
image: "debian:latest"
|
||||||
|
@ -15,7 +15,7 @@ debian:
|
||||||
- pip install build
|
- pip install build
|
||||||
- pip install .
|
- pip install .
|
||||||
script:
|
script:
|
||||||
- ./tests/run.py
|
- ./tests/run.sh
|
||||||
|
|
||||||
ubuntu:
|
ubuntu:
|
||||||
image: "ubuntu:latest"
|
image: "ubuntu:latest"
|
||||||
|
@ -29,7 +29,7 @@ ubuntu:
|
||||||
- source myenv/bin/activate
|
- source myenv/bin/activate
|
||||||
- pip install .
|
- pip install .
|
||||||
script:
|
script:
|
||||||
- ./tests/run.py
|
- ./tests/run.sh
|
||||||
|
|
||||||
fedora:
|
fedora:
|
||||||
image: "fedora:latest"
|
image: "fedora:latest"
|
||||||
|
@ -42,5 +42,5 @@ fedora:
|
||||||
- source myenv/bin/activate
|
- source myenv/bin/activate
|
||||||
- pip install .
|
- pip install .
|
||||||
script:
|
script:
|
||||||
- ./tests/run.py
|
- ./tests/run.sh
|
||||||
|
|
||||||
|
|
|
@ -160,9 +160,6 @@ class YAMLPlatformFile:
|
||||||
self.parsing_error("File "+file+" must be a python file")
|
self.parsing_error("File "+file+" must be a python file")
|
||||||
for node in r:
|
for node in r:
|
||||||
self.default["implementations"][node]=path
|
self.default["implementations"][node]=path
|
||||||
count = len(nodes["implementations"])
|
|
||||||
if count > 1 and count != self.default["node_count"]:
|
|
||||||
self.parsing_error("If more than one implementation is specified, each node implementation should be provided ("+str(self.default["node_count"])+" in total)")
|
|
||||||
else:
|
else:
|
||||||
self.parsing_error("node implementation not provided")
|
self.parsing_error("node implementation not provided")
|
||||||
##### Nodes arguments
|
##### Nodes arguments
|
||||||
|
|
16
tests/api_log_5n/platform.yaml
Normal file
16
tests/api_log_5n/platform.yaml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
nodes:
|
||||||
|
count: 5
|
||||||
|
implementations:
|
||||||
|
- all node.py
|
||||||
|
|
||||||
|
interfaces:
|
||||||
|
wlan0:
|
||||||
|
type: "wireless"
|
||||||
|
links:
|
||||||
|
- all 5bps 0s all
|
||||||
|
txperfs:
|
||||||
|
- all 5bps 0s
|
||||||
|
eth0:
|
||||||
|
type: "wired"
|
||||||
|
links:
|
||||||
|
- all 5Bps 0s all
|
17
tests/api_send_eth0_3s1r/platform.yaml
Normal file
17
tests/api_send_eth0_3s1r/platform.yaml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
nodes:
|
||||||
|
count: 4
|
||||||
|
implementations:
|
||||||
|
- 0-2 sender.py
|
||||||
|
- 3 receiver.py
|
||||||
|
|
||||||
|
interfaces:
|
||||||
|
wlan0:
|
||||||
|
type: "wireless"
|
||||||
|
links:
|
||||||
|
- all 1Bps 0s all
|
||||||
|
txperfs:
|
||||||
|
- all 1Bps 0s
|
||||||
|
eth0:
|
||||||
|
type: "wired"
|
||||||
|
links:
|
||||||
|
- all 1Bps 0s all
|
|
@ -11,7 +11,9 @@ for test in ${tests}
|
||||||
do
|
do
|
||||||
printf "%-50s%s %s" "- $(basename $test)" "=>"
|
printf "%-50s%s %s" "- $(basename $test)" "=>"
|
||||||
cd $test
|
cd $test
|
||||||
timeout $test_timeout ${pythonexec} simulator.py &> "$out"
|
testcmd="${pythonexec} simulator.py"
|
||||||
|
[ -e "platform.yaml" ] && testcmd="esds run platform.yaml"
|
||||||
|
timeout $test_timeout ${testcmd} &> "$out"
|
||||||
|
|
||||||
# Ensure timeout
|
# Ensure timeout
|
||||||
if [ $? -eq 124 ]
|
if [ $? -eq 124 ]
|
||||||
|
|
Loading…
Add table
Reference in a new issue