From a9c9b5cc2a762780193de4ac8d96f99ceec7ddb4 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sat, 15 Jul 2023 00:42:00 +0200 Subject: [PATCH] Re-enable double-NAT integration tests Signed-off-by: Steffen Vogel --- test/e2e/nat_double_test.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/e2e/nat_double_test.go b/test/e2e/nat_double_test.go index fdd5465a..f6f77aea 100644 --- a/test/e2e/nat_double_test.go +++ b/test/e2e/nat_double_test.go @@ -10,6 +10,7 @@ import ( gopt "github.com/stv0g/gont/v2/pkg/options" "github.com/stv0g/cunicu/test/e2e/nodes" + opt "github.com/stv0g/cunicu/test/e2e/nodes/options" wopt "github.com/stv0g/cunicu/test/e2e/nodes/options/wg" . "github.com/onsi/ginkgo/v2" @@ -44,7 +45,7 @@ import ( * │ n1 │ │ n2 │ * └──────┘ └──────┘ */ -var _ = Context("nat double: Carrier Grade NAT setup with two relays and a single signaling server", Pending, func() { +var _ = Context("nat double: Carrier Grade NAT setup with two relays and a single signaling server", func() { var ( err error @@ -90,6 +91,10 @@ var _ = Context("nat double: Carrier Grade NAT setup with two relays and a singl wopt.AddressIP("172.16.0.%d/16", i), wopt.FullMeshPeers, ), + // Mixed IPv4/IPv6 NAT tests are currently broken for some reason. + // Hence we limit ourself to IPv6 here. + // See: https://github.com/stv0g/cunicu/issues/224 + opt.ExtraArgs{"--ice-network-type", "udp6,tcp6"}, ) switch {