add simple test for parsing default config

Related: #2143264
This commit is contained in:
Miroslav Lichvar 2023-01-04 11:20:49 +01:00
parent 68643e6112
commit 11c3088cb1
2 changed files with 39 additions and 0 deletions

30
tests/defconfig/runtest.sh Executable file
View File

@ -0,0 +1,30 @@
#!/bin/bash
# Test if synce4l can parse default configuration
set -ex
# Find a nonexistent network device
i=1
while ip link show eth$i &> /dev/null; do
i=$((i + 1))
done
eth=eth$i
tmpconf=$(mktemp)
sed "s/^\[eth0\]/\[eth$i\]/" < /etc/synce4l.conf > "$tmpconf"
out=$(synce4l -m -q -l 7 -f "$tmpconf" 2>&1 || :)
echo "$out" | grep -q "config item synce1"
echo "$out" | grep -q "ioctl SIOCGIFHWADDR failed: No such device"
echo "unknownoption 1" >> "$tmpconf"
out=$(synce4l -m -q -l 7 -f "$tmpconf" 2>&1 || :)
echo "$out" | grep -q "failed to parse configuration file"
rm "$tmpconf"
exit 0

9
tests/tests.yml Normal file
View File

@ -0,0 +1,9 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- defconfig
required_packages:
- iproute