-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathmain_test.go
More file actions
146 lines (112 loc) · 3.5 KB
/
Copy pathmain_test.go
File metadata and controls
146 lines (112 loc) · 3.5 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// Copyright 2026 flannel authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"net"
"os"
"path/filepath"
"testing"
"github.com/flannel-io/flannel/pkg/ip"
)
func TestReadCIDRsFromSubnetFileSkipsInvalidCIDRs(t *testing.T) {
path := writeSubnetFile(t, "FLANNEL_SUBNET=10.244.1.0/24,not-a-cidr,10.244.2.0/24\n")
defer assertNotPanics(t)()
got := ReadCIDRsFromSubnetFile(path, "FLANNEL_SUBNET")
want := []ip.IP4Net{
mustParseIP4Net(t, "10.244.1.0/24"),
mustParseIP4Net(t, "10.244.2.0/24"),
}
assertIP4NetsEqual(t, got, want)
}
func TestReadIP6CIDRsFromSubnetFileSkipsInvalidCIDRs(t *testing.T) {
path := writeSubnetFile(t, "FLANNEL_IPV6_SUBNET=fd00::/64,not-a-cidr,fd01::/64\n")
defer assertNotPanics(t)()
got := ReadIP6CIDRsFromSubnetFile(path, "FLANNEL_IPV6_SUBNET")
want := []ip.IP6Net{
mustParseIP6Net(t, "fd00::/64"),
mustParseIP6Net(t, "fd01::/64"),
}
assertIP6NetsEqual(t, got, want)
}
func TestReadCIDRFromSubnetFileInvalidOnlyReturnsEmpty(t *testing.T) {
path := writeSubnetFile(t, "FLANNEL_SUBNET=not-a-cidr\n")
defer assertNotPanics(t)()
got := ReadCIDRFromSubnetFile(path, "FLANNEL_SUBNET")
if !got.Empty() {
t.Fatalf("expected empty ipv4 subnet, got %s", got)
}
}
func TestReadIP6CIDRFromSubnetFileInvalidOnlyReturnsEmpty(t *testing.T) {
path := writeSubnetFile(t, "FLANNEL_IPV6_SUBNET=not-a-cidr\n")
defer assertNotPanics(t)()
got := ReadIP6CIDRFromSubnetFile(path, "FLANNEL_IPV6_SUBNET")
if !got.Empty() {
t.Fatalf("expected empty ipv6 subnet, got %s", got)
}
}
func writeSubnetFile(t *testing.T, contents string) string {
t.Helper()
path := filepath.Join(t.TempDir(), "subnet.env")
if err := os.WriteFile(path, []byte(contents), 0o600); err != nil {
t.Fatalf("write subnet file: %v", err)
}
return path
}
func assertNotPanics(t *testing.T) func() {
t.Helper()
return func() {
t.Helper()
if r := recover(); r != nil {
t.Fatalf("unexpected panic: %v", r)
}
}
}
func mustParseIP4Net(t *testing.T, cidr string) ip.IP4Net {
t.Helper()
_, network, err := net.ParseCIDR(cidr)
if err != nil {
t.Fatalf("parse ipv4 cidr %q: %v", cidr, err)
}
return ip.FromIPNet(network)
}
func mustParseIP6Net(t *testing.T, cidr string) ip.IP6Net {
t.Helper()
_, network, err := net.ParseCIDR(cidr)
if err != nil {
t.Fatalf("parse ipv6 cidr %q: %v", cidr, err)
}
return ip.FromIP6Net(network)
}
func assertIP4NetsEqual(t *testing.T, got, want []ip.IP4Net) {
t.Helper()
if len(got) != len(want) {
t.Fatalf("unexpected ipv4 cidr count: got %d want %d", len(got), len(want))
}
for i := range want {
if !got[i].Equal(want[i]) {
t.Fatalf("unexpected ipv4 cidr at index %d: got %s want %s", i, got[i], want[i])
}
}
}
func assertIP6NetsEqual(t *testing.T, got, want []ip.IP6Net) {
t.Helper()
if len(got) != len(want) {
t.Fatalf("unexpected ipv6 cidr count: got %d want %d", len(got), len(want))
}
for i := range want {
if !got[i].Equal(want[i]) {
t.Fatalf("unexpected ipv6 cidr at index %d: got %s want %s", i, got[i], want[i])
}
}
}