-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathip_allocator_test.go
96 lines (84 loc) · 2.4 KB
/
ip_allocator_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
// SPDX-FileCopyrightText: 2021 Open Networking Foundation <[email protected]>
//
// SPDX-License-Identifier: Apache-2.0
package context_test
import (
"net"
"testing"
smf_context "github.com/omec-project/smf/context"
)
func TestIPPoolAlloc(t *testing.T) {
allocator, err := smf_context.NewIPAllocator("192.168.1.0/24")
if err != nil {
t.Errorf("failed to allocate pool %v", err)
}
var allocAddresses []string
// check if we can allocate 254 addresses
for i := 1; i <= 254; i++ {
ip, err := allocator.Allocate("")
if err != nil {
t.Errorf("failed to allocate pool %v", err)
}
t.Logf("allocated address = %v", ip)
allocAddresses = append(allocAddresses, ip.String())
}
// Test what happens if we releae all addresses
for _, ips := range allocAddresses {
ip := net.ParseIP(ips)
allocator.Release("", ip)
}
// Check what happens if we try to release unknown address
ip := net.ParseIP("192.168.2.1")
allocator.Release("", ip)
}
func TestIPPoolAllocRelease(t *testing.T) {
allocator, err := smf_context.NewIPAllocator("192.168.1.0/24")
if err != nil {
t.Errorf("failed to allocate pool %v", err)
}
ip1 := net.ParseIP("192.168.1.1")
for i := 1; i <= 255; i++ {
ip, err := allocator.Allocate("")
if err != nil {
t.Errorf("failed to allocate pool %v", err)
}
t.Logf("allocated address = %v", ip)
if i == 1 {
if ip.Equal(ip1) == false {
t.Errorf("address not allocated in order ? allocated address %v", ip1)
}
allocator.Release("", ip)
}
if i == 2 {
ip2 := net.ParseIP("192.168.1.2")
if ip.Equal(ip2) == false {
t.Errorf("address not allocated in order ? allocated address %v", ip2)
}
}
// rollover, we should be using first address again
if i == 255 && ip.Equal(ip1) != true {
t.Errorf("Failed to allocate IP address = %v %v \n", ip, ip1)
}
}
}
func TestIPPoolAllocLeastRecentlyUsed(t *testing.T) {
allocator, err := smf_context.NewIPAllocator("192.168.1.0/24")
if err != nil {
t.Errorf("failed to allocate pool %v", err)
}
ip1, err := allocator.Allocate("")
if err != nil {
t.Errorf("failed to allocate pool %v", err)
}
t.Logf("allocated address = %v", ip1)
allocator.Release("", ip1)
ip2, err := allocator.Allocate("")
if err != nil {
t.Errorf("failed to allocate pool %v", err)
}
t.Logf("allocated address = %v", ip2)
// Same address is not allocate again..
if ip1.Equal(ip2) {
t.Errorf("ip1 %v & ip2 %v same ", ip1, ip2)
}
}