forked from jaypipes/ghw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet_linux_test.go
58 lines (52 loc) · 1.07 KB
/
net_linux_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// Use and distribution licensed under the Apache license version 2.
//
// See the COPYING file in the root project directory for full text.
//
// +build linux
package ghw
import (
"os"
"reflect"
"testing"
)
func TestParseEthtoolFeature(t *testing.T) {
if _, ok := os.LookupEnv("GHW_TESTING_SKIP_NET"); ok {
t.Skip("Skipping network tests.")
}
tests := []struct {
line string
expected *NICCapability
}{
{
line: "scatter-gather: off",
expected: &NICCapability{
Name: "scatter-gather",
IsEnabled: false,
CanEnable: true,
},
},
{
line: "scatter-gather: on",
expected: &NICCapability{
Name: "scatter-gather",
IsEnabled: true,
CanEnable: true,
},
},
{
line: "scatter-gather: off [fixed]",
expected: &NICCapability{
Name: "scatter-gather",
IsEnabled: false,
CanEnable: false,
},
},
}
for x, test := range tests {
actual := netParseEthtoolFeature(test.line)
if !reflect.DeepEqual(test.expected, actual) {
t.Fatalf("In test %d, expected %v == %v", x, test.expected, actual)
}
}
}