-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathip_test.go
261 lines (203 loc) · 7.3 KB
/
ip_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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package adapters
import (
"context"
"regexp"
"testing"
"github.com/overmindtech/cli/discovery"
"github.com/overmindtech/cli/sdp-go"
)
func TestIPGet(t *testing.T) {
src := IPAdapter{}
t.Run("with ipv4 address", func(t *testing.T) {
item, err := src.Get(context.Background(), "global", "213.21.3.187", false)
if err != nil {
t.Fatal(err)
}
if private, err := item.GetAttributes().Get("private"); err == nil {
if private != false {
t.Error("Expected itemAttributes.private to be false")
}
} else {
t.Error("could not find 'private' attribute")
}
discovery.TestValidateItem(t, item)
})
t.Run("with ipv6 address", func(t *testing.T) {
item, err := src.Get(context.Background(), "global", "2a01:4b00:8602:b600:5523:ce8d:dafc:3243", false)
if err != nil {
t.Fatal(err)
}
if private, err := item.GetAttributes().Get("private"); err == nil {
if private != false {
t.Error("Expected itemAttributes.private to be false")
}
} else {
t.Error("could not find 'private' attribute")
}
discovery.TestValidateItem(t, item)
})
t.Run("with invalid address", func(t *testing.T) {
_, err := src.Get(context.Background(), "global", "this is not valid", false)
if err == nil {
t.Error("expected error")
} else {
if matched, _ := regexp.MatchString("this is not valid", err.Error()); !matched {
t.Errorf("expected error to contain 'this is not valid', got: %v", err)
}
}
})
t.Run("with ipv4 link-local address", func(t *testing.T) {
t.Run("in the global scope", func(t *testing.T) {
// Link-local addresses are not guaranteed to be unique beyond their
// network segment, therefore routers do not forward packets with
// link-local adapter or destination addresses. This means that it
// doesn't make sense to have a "global" link-local address as it's
// not truly global
_, err := src.Get(context.Background(), "global", "169.254.1.25", false)
if err == nil {
t.Error("expected error but got nil")
}
})
t.Run("in another scope", func(t *testing.T) {
item, err := src.Get(context.Background(), "some.computer", "169.254.1.25", false)
if err != nil {
t.Fatal(err)
}
if item.GetScope() != "some.computer" {
t.Errorf("expected scope to be some.computer, got %v", item.GetScope())
}
if llu, err := item.GetAttributes().Get("linkLocalUnicast"); err != nil || llu == false {
t.Errorf("expected linkLocalUnicast to be false, got %v", llu)
}
discovery.TestValidateItem(t, item)
})
})
t.Run("with ipv4 private address", func(t *testing.T) {
t.Run("in the global scope", func(t *testing.T) {
item, err := src.Get(context.Background(), "global", "10.0.4.5", false)
if err != nil {
t.Fatal(err)
}
if p, err := item.GetAttributes().Get("private"); err != nil || p == false {
t.Errorf("expected p to be true, got %v", p)
}
discovery.TestValidateItem(t, item)
})
t.Run("in another scope", func(t *testing.T) {
_, err := src.Get(context.Background(), "some.computer", "10.0.4.5", false)
if err == nil {
t.Error("expected error but got nil")
}
})
})
t.Run("with ipv4 loopback address", func(t *testing.T) {
t.Run("in the global scope", func(t *testing.T) {
// Link-local addresses are not guaranteed to be unique beyond their
// network segment, therefore routers do not forward packets with
// link-local adapter or destination addresses. This means that it
// doesn't make sense to have a "global" link-local address as it's
// not truly global
_, err := src.Get(context.Background(), "global", "127.0.0.1", false)
if err == nil {
t.Error("expected error but got nil")
}
})
t.Run("in another scope", func(t *testing.T) {
item, err := src.Get(context.Background(), "some.computer", "127.0.0.1", false)
if err != nil {
t.Fatal(err)
}
if item.GetScope() != "some.computer" {
t.Errorf("expected scope to be some.computer, got %v", item.GetScope())
}
if loopback, err := item.GetAttributes().Get("loopback"); err != nil || loopback == false {
t.Errorf("expected loopback to be false, got %v", loopback)
}
discovery.TestValidateItem(t, item)
})
})
t.Run("with ipv6 link-local address", func(t *testing.T) {
t.Run("in the global scope", func(t *testing.T) {
// Link-local addresses are not guaranteed to be unique beyond their
// network segment, therefore routers do not forward packets with
// link-local adapter or destination addresses. This means that it
// doesn't make sense to have a "global" link-local address as it's
// not truly global
_, err := src.Get(context.Background(), "global", "fe80::a70f:3a:338b:4801", false)
if err == nil {
t.Error("expected error but got nil")
}
})
t.Run("in another scope", func(t *testing.T) {
item, err := src.Get(context.Background(), "some.computer", "fe80::a70f:3a:338b:4801", false)
if err != nil {
t.Fatal(err)
}
if item.GetScope() != "some.computer" {
t.Errorf("expected scope to be some.computer, got %v", item.GetScope())
}
if llu, err := item.GetAttributes().Get("linkLocalUnicast"); err != nil || llu == false {
t.Errorf("expected linkLocalUnicast top be false, got %v", llu)
}
discovery.TestValidateItem(t, item)
})
})
t.Run("with ipv6 private address", func(t *testing.T) {
t.Run("in the global scope", func(t *testing.T) {
item, err := src.Get(context.Background(), "global", "fd12:3456:789a:1::1", false)
if err != nil {
t.Fatal(err)
}
if p, err := item.GetAttributes().Get("private"); err != nil || p == false {
t.Errorf("expected p to be true, got %v", p)
}
discovery.TestValidateItem(t, item)
})
t.Run("in another scope", func(t *testing.T) {
_, err := src.Get(context.Background(), "some.computer", "fd12:3456:789a:1::1", false)
if err == nil {
t.Error("expected error but got nil")
}
})
})
t.Run("with ipv6 loopback address", func(t *testing.T) {
t.Run("in the global scope", func(t *testing.T) {
// Link-local addresses are not guaranteed to be unique beyond their
// network segment, therefore routers do not forward packets with
// link-local adapter or destination addresses. This means that it
// doesn't make sense to have a "global" link-local address as it's
// not truly global
_, err := src.Get(context.Background(), "global", "::1", false)
if err == nil {
t.Error("expected error but got nil")
}
})
t.Run("in another scope", func(t *testing.T) {
item, err := src.Get(context.Background(), "some.computer", "::1", false)
if err != nil {
t.Fatal(err)
}
if item.GetScope() != "some.computer" {
t.Errorf("expected scope to be some.computer, got %v", item.GetScope())
}
if loopback, err := item.GetAttributes().Get("loopback"); err != nil || loopback == false {
t.Errorf("expected loopback to be false, got %v", loopback)
}
discovery.TestValidateItem(t, item)
})
})
t.Run("with a wildcard scope", func(t *testing.T) {
item, err := src.Get(context.Background(), sdp.WILDCARD, "213.21.3.187", false)
if err != nil {
t.Fatal(err)
}
if private, err := item.GetAttributes().Get("private"); err == nil {
if private != false {
t.Error("Expected itemAttributes.private to be false")
}
} else {
t.Error("could not find 'private' attribute")
}
discovery.TestValidateItem(t, item)
})
}