mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6424c7a875
Fix all golint warnings, mostly by making exported types internal. Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
81 lines
2.3 KiB
Go
81 lines
2.3 KiB
Go
package bridge
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestSetupIPForwarding(t *testing.T) {
|
|
// Read current setting and ensure the original value gets restored
|
|
procSetting := readCurrentIPForwardingSetting(t)
|
|
defer reconcileIPForwardingSetting(t, procSetting)
|
|
|
|
// Disable IP Forwarding if enabled
|
|
if bytes.Compare(procSetting, []byte("1\n")) == 0 {
|
|
writeIPForwardingSetting(t, []byte{'0', '\n'})
|
|
}
|
|
|
|
// Create test interface with ip forwarding setting enabled
|
|
br := &bridgeInterface{
|
|
Config: &Configuration{
|
|
BridgeName: DefaultBridgeName,
|
|
EnableIPForwarding: true,
|
|
},
|
|
}
|
|
|
|
// Set IP Forwarding
|
|
if err := setupIPForwarding(br); err != nil {
|
|
t.Fatalf("Failed to setup IP forwarding: %v", err)
|
|
}
|
|
|
|
// Read new setting
|
|
procSetting = readCurrentIPForwardingSetting(t)
|
|
if bytes.Compare(procSetting, []byte("1\n")) != 0 {
|
|
t.Fatalf("Failed to effectively setup IP forwarding")
|
|
}
|
|
}
|
|
|
|
func TestUnexpectedSetupIPForwarding(t *testing.T) {
|
|
// Read current setting and ensure the original value gets restored
|
|
procSetting := readCurrentIPForwardingSetting(t)
|
|
defer reconcileIPForwardingSetting(t, procSetting)
|
|
|
|
// Create test interface without ip forwarding setting enabled
|
|
br := &bridgeInterface{
|
|
Config: &Configuration{
|
|
BridgeName: DefaultBridgeName,
|
|
EnableIPForwarding: false,
|
|
},
|
|
}
|
|
|
|
// Attempt Set IP Forwarding
|
|
if err := setupIPForwarding(br); err == nil {
|
|
t.Fatal("Setup IP forwarding was expected to fail")
|
|
} else if !strings.Contains(err.Error(), "Unexpected request") {
|
|
t.Fatalf("Setup IP forwarding failed with unexpected error: %v", err)
|
|
}
|
|
}
|
|
|
|
func readCurrentIPForwardingSetting(t *testing.T) []byte {
|
|
procSetting, err := ioutil.ReadFile(ipv4ForwardConf)
|
|
if err != nil {
|
|
t.Fatalf("Can't execute test: Failed to read current IP forwarding setting: %v", err)
|
|
}
|
|
return procSetting
|
|
}
|
|
|
|
func writeIPForwardingSetting(t *testing.T, chars []byte) {
|
|
err := ioutil.WriteFile(ipv4ForwardConf, chars, ipv4ForwardConfPerm)
|
|
if err != nil {
|
|
t.Fatalf("Can't execute or cleanup after test: Failed to reset IP forwarding: %v", err)
|
|
}
|
|
}
|
|
|
|
func reconcileIPForwardingSetting(t *testing.T, original []byte) {
|
|
current := readCurrentIPForwardingSetting(t)
|
|
if bytes.Compare(original, current) != 0 {
|
|
writeIPForwardingSetting(t, original)
|
|
}
|
|
}
|