123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // Copyright (c) 2016 Arista Networks, Inc.
- // Use of this source code is governed by the Apache License 2.0
- // that can be found in the COPYING file.
- package dscp_test
- import (
- "net"
- "testing"
- "notabug.org/themusicgod1/goarista/dscp"
- )
- func TestListenTCPWithTOS(t *testing.T) {
- testListenTCPWithTOS(t, "127.0.0.1")
- //testListenTCPWithTOS(t, "::1")
- }
- func testListenTCPWithTOS(t *testing.T, ip string) {
- // Note: This test doesn't actually verify that the connection uses the
- // desired TOS byte, because that's kinda hard to check, but at least it
- // verifies that we return a usable TCPListener.
- addr := &net.TCPAddr{IP: net.ParseIP(ip), Port: 0}
- listen, err := dscp.ListenTCPWithTOS(addr, 40)
- if err != nil {
- t.Fatal(err)
- }
- defer listen.Close()
- done := make(chan struct{})
- go func() {
- conn, err := listen.Accept()
- if err != nil {
- t.Fatal(err)
- }
- defer conn.Close()
- buf := []byte{'!'}
- conn.Write(buf)
- n, err := conn.Read(buf)
- if n != 1 || err != nil {
- t.Fatalf("Read returned %d / %s", n, err)
- } else if buf[0] != '!' {
- t.Fatalf("Expected to read '!' but got %q", buf)
- }
- close(done)
- }()
- conn, err := net.Dial(listen.Addr().Network(), listen.Addr().String())
- if err != nil {
- t.Fatal("Connection failed:", err)
- }
- defer conn.Close()
- buf := make([]byte, 1)
- n, err := conn.Read(buf)
- if n != 1 || err != nil {
- t.Fatalf("Read returned %d / %s", n, err)
- } else if buf[0] != '!' {
- t.Fatalf("Expected to read '!' but got %q", buf)
- }
- conn.Write(buf)
- <-done
- }
|