aboutgitcodebugslistschat
path: root/test/pasta
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2023-12-08 18:41:36 +0100
committerStefano Brivio <sbrivio@redhat.com>2023-12-27 19:28:35 +0100
commitbaf4e2c02861da71489d7b8fc6c944fe2e3b579a (patch)
tree18d5a107bdec84fadbf5161531d9cbb0a7321ba4 /test/pasta
parent00358b782852f5b66bf413251ead0d1ee5d724c5 (diff)
downloadpasst-baf4e2c02861da71489d7b8fc6c944fe2e3b579a.tar
passt-baf4e2c02861da71489d7b8fc6c944fe2e3b579a.tar.gz
passt-baf4e2c02861da71489d7b8fc6c944fe2e3b579a.tar.bz2
passt-baf4e2c02861da71489d7b8fc6c944fe2e3b579a.tar.lz
passt-baf4e2c02861da71489d7b8fc6c944fe2e3b579a.tar.xz
passt-baf4e2c02861da71489d7b8fc6c944fe2e3b579a.tar.zst
passt-baf4e2c02861da71489d7b8fc6c944fe2e3b579a.zip
test: Select first reported IPv6 address for guest/host comparison
If we run passt nested (a guest connected via passt to a guest connected via passt to the host), the first guest (L1) typically has two IPv6 addresses on the same interface: one formed from the prefix assigned via SLAAC, and another one assigned via DHCPv6 (to match the address on the host). When we select addresses for comparison, in this case, we have multiple global unicast addresses -- again, on the same interface. Selecting the first reported one on both host and guest is not entirely correct (in theory, the order might differ), but works reasonably well. Use the trick from 5beef085978e ("test: Only select a single interface or gateway in tests") to ask jq(1) for the first address returned by the query. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'test/pasta')
-rw-r--r--test/pasta/dhcp4
-rw-r--r--test/pasta/ndp4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/pasta/dhcp b/test/pasta/dhcp
index 309001b..112633a 100644
--- a/test/pasta/dhcp
+++ b/test/pasta/dhcp
@@ -36,8 +36,8 @@ check [ __MTU__ = 65520 ]
test DHCPv6: address
ns /sbin/dhclient -6 --no-pid __IFNAME__
hout HOST_IFNAME6 ip -j -6 route show|jq -rM '[.[] | select(.dst == "default").dev] | .[0]'
-nsout ADDR6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.prefixlen == 128).local'
-hout HOST_ADDR6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__HOST_IFNAME6__").addr_info[] | select(.scope == "global").local'
+nsout ADDR6 ip -j -6 addr show|jq -rM '[.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.prefixlen == 128).local] | .[0]'
+hout HOST_ADDR6 ip -j -6 addr show|jq -rM '[.[] | select(.ifname == "__HOST_IFNAME6__").addr_info[] | select(.scope == "global").local] | .[0]'
check [ __ADDR6__ = __HOST_ADDR6__ ]
test DHCPv6: route
diff --git a/test/pasta/ndp b/test/pasta/ndp
index bb33110..2a8afe6 100644
--- a/test/pasta/ndp
+++ b/test/pasta/ndp
@@ -21,9 +21,9 @@ ns ip link set dev __IFNAME__ up
sleep 2
test SLAAC: prefix
-nsout ADDR6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.scope == "global" and .prefixlen == 64).local'
+nsout ADDR6 ip -j -6 addr show|jq -rM '[.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.scope == "global" and .prefixlen == 64).local] | .[0]'
nsout PREFIX6 sipcalc __ADDR6__/64 | grep prefix | cut -d' ' -f4
-hout HOST_ADDR6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.scope == "global").local'
+hout HOST_ADDR6 ip -j -6 addr show|jq -rM ['.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.scope == "global").local] | .[0]'
hout HOST_PREFIX6 sipcalc __HOST_ADDR6__/64 | grep prefix | cut -d' ' -f4
check [ "__PREFIX6__" = "__HOST_PREFIX6__" ]