2016-03-01 15:57:46 -07:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
2012-02-22 14:26:31 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package net
|
|
|
|
|
2013-02-27 22:58:41 -07:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2013-03-01 18:56:51 -07:00
|
|
|
func (ti *testInterface) setBroadcast(suffix int) error {
|
2013-02-27 22:58:41 -07:00
|
|
|
ti.name = fmt.Sprintf("gotest%d", suffix)
|
|
|
|
xname, err := exec.LookPath("ip")
|
|
|
|
if err != nil {
|
2013-03-01 18:56:51 -07:00
|
|
|
return err
|
2013-02-27 22:58:41 -07:00
|
|
|
}
|
|
|
|
ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
|
|
|
|
Path: xname,
|
|
|
|
Args: []string{"ip", "link", "add", ti.name, "type", "dummy"},
|
|
|
|
})
|
2015-06-23 06:40:33 -06:00
|
|
|
ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
|
|
|
|
Path: xname,
|
|
|
|
Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
|
|
|
|
})
|
|
|
|
ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
|
|
|
|
Path: xname,
|
|
|
|
Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name},
|
|
|
|
})
|
2013-02-27 22:58:41 -07:00
|
|
|
ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
|
|
|
|
Path: xname,
|
|
|
|
Args: []string{"ip", "link", "delete", ti.name, "type", "dummy"},
|
|
|
|
})
|
2013-03-01 18:56:51 -07:00
|
|
|
return nil
|
2013-02-27 22:58:41 -07:00
|
|
|
}
|
|
|
|
|
2015-06-23 06:40:33 -06:00
|
|
|
func (ti *testInterface) setPointToPoint(suffix int) error {
|
2013-02-27 22:58:41 -07:00
|
|
|
ti.name = fmt.Sprintf("gotest%d", suffix)
|
|
|
|
xname, err := exec.LookPath("ip")
|
|
|
|
if err != nil {
|
2013-03-01 18:56:51 -07:00
|
|
|
return err
|
2013-02-27 22:58:41 -07:00
|
|
|
}
|
|
|
|
ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
|
|
|
|
Path: xname,
|
2015-06-23 06:40:33 -06:00
|
|
|
Args: []string{"ip", "tunnel", "add", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
|
|
|
|
})
|
|
|
|
ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
|
|
|
|
Path: xname,
|
|
|
|
Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
|
2013-02-27 22:58:41 -07:00
|
|
|
})
|
|
|
|
ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
|
|
|
|
Path: xname,
|
2015-06-23 06:40:33 -06:00
|
|
|
Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name},
|
2013-02-27 22:58:41 -07:00
|
|
|
})
|
2015-06-23 06:40:33 -06:00
|
|
|
ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
|
2013-02-27 22:58:41 -07:00
|
|
|
Path: xname,
|
2015-06-23 06:40:33 -06:00
|
|
|
Args: []string{"ip", "tunnel", "del", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
|
2013-02-27 22:58:41 -07:00
|
|
|
})
|
2013-03-01 18:56:51 -07:00
|
|
|
return nil
|
2013-02-27 22:58:41 -07:00
|
|
|
}
|
2012-02-22 14:26:31 -07:00
|
|
|
|
|
|
|
const (
|
|
|
|
numOfTestIPv4MCAddrs = 14
|
|
|
|
numOfTestIPv6MCAddrs = 18
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
igmpInterfaceTable = []Interface{
|
|
|
|
{Name: "lo"},
|
|
|
|
{Name: "eth0"}, {Name: "eth1"}, {Name: "eth2"},
|
|
|
|
{Name: "eth0.100"}, {Name: "eth0.101"}, {Name: "eth0.102"}, {Name: "eth0.103"},
|
|
|
|
{Name: "device1tap2"},
|
|
|
|
}
|
|
|
|
igmp6InterfaceTable = []Interface{
|
|
|
|
{Name: "lo"},
|
|
|
|
{Name: "eth0"}, {Name: "eth1"}, {Name: "eth2"},
|
|
|
|
{Name: "eth0.100"}, {Name: "eth0.101"}, {Name: "eth0.102"}, {Name: "eth0.103"},
|
|
|
|
{Name: "device1tap2"},
|
|
|
|
{Name: "pan0"},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParseProcNet(t *testing.T) {
|
|
|
|
defer func() {
|
|
|
|
if p := recover(); p != nil {
|
2015-04-30 21:38:42 -06:00
|
|
|
t.Fatalf("panicked: %v", p)
|
2012-02-22 14:26:31 -07:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
var ifmat4 []Addr
|
|
|
|
for _, ifi := range igmpInterfaceTable {
|
|
|
|
ifmat := parseProcNetIGMP("testdata/igmp", &ifi)
|
|
|
|
ifmat4 = append(ifmat4, ifmat...)
|
|
|
|
}
|
|
|
|
if len(ifmat4) != numOfTestIPv4MCAddrs {
|
2015-04-30 21:38:42 -06:00
|
|
|
t.Fatalf("got %d; want %d", len(ifmat4), numOfTestIPv4MCAddrs)
|
2012-02-22 14:26:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
var ifmat6 []Addr
|
|
|
|
for _, ifi := range igmp6InterfaceTable {
|
|
|
|
ifmat := parseProcNetIGMP6("testdata/igmp6", &ifi)
|
|
|
|
ifmat6 = append(ifmat6, ifmat...)
|
|
|
|
}
|
|
|
|
if len(ifmat6) != numOfTestIPv6MCAddrs {
|
2015-04-30 21:38:42 -06:00
|
|
|
t.Fatalf("got %d; want %d", len(ifmat6), numOfTestIPv6MCAddrs)
|
2012-02-22 14:26:31 -07:00
|
|
|
}
|
|
|
|
}
|