summaryrefslogtreecommitdiffhomepage
path: root/test/iptables/iptables_util.go
diff options
context:
space:
mode:
authorNayana Bidari <nybidari@google.com>2020-01-13 09:11:40 -0800
committerNayana Bidari <nybidari@google.com>2020-01-13 09:11:40 -0800
commit98327a94cce7597589ac22b8557c5d9a2a03464d (patch)
treef1e7ce4fdcaeb7bd1064b56ed9ce68fc977501e2 /test/iptables/iptables_util.go
parent9aeb053bbaf834aab5b716b8645996943262b525 (diff)
Add test for iptables TCP rule
Added tests for tcp protocol with input and output rules including options sport and dport Increased timeout in iptables_test as TCP tests were timing out with existing value.
Diffstat (limited to 'test/iptables/iptables_util.go')
-rw-r--r--test/iptables/iptables_util.go55
1 files changed, 55 insertions, 0 deletions
diff --git a/test/iptables/iptables_util.go b/test/iptables/iptables_util.go
index 3a4d11f1a..44945bd89 100644
--- a/test/iptables/iptables_util.go
+++ b/test/iptables/iptables_util.go
@@ -80,3 +80,58 @@ func sendUDPLoop(ip net.IP, port int, duration time.Duration) error {
return nil
}
+
+// listenTCP listens for connections on a TCP port
+func listenTCP(port int, timeout time.Duration) error {
+ localAddr := net.TCPAddr{
+ Port: port,
+ }
+
+ // Starts listening on port
+ lConn, err := net.ListenTCP("tcp4", &localAddr)
+ if err != nil {
+ return err
+ }
+ defer lConn.Close()
+
+ // Accept connections on port
+ lConn.SetDeadline(time.Now().Add(timeout))
+ conn, err := lConn.AcceptTCP()
+ if err == nil {
+ conn.Close()
+ }
+ return err
+}
+
+// connectTCP connects the TCP server over specified local port, server IP
+// and remote/server port
+func connectTCP(ip net.IP, remotePort int, localPort int, duration time.Duration) error {
+ remote := net.TCPAddr{
+ IP: ip,
+ Port: remotePort,
+ }
+
+ local := net.TCPAddr{
+ Port: localPort,
+ }
+
+ // Container may not be up. Retry DialTCP
+ // over a given duration
+ to := time.After(duration)
+ var res error
+ for timedOut := false; !timedOut; {
+ conn, err := net.DialTCP("tcp4", &local, &remote)
+ res = err
+ if res == nil {
+ conn.Close()
+ return nil
+ }
+ select{
+ case <-to:
+ timedOut = true
+ default:
+ time.Sleep(200 * time.Millisecond)
+ }
+ }
+ return res
+}