123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804 |
- /*
- Copyright 2016 The Kubernetes 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 ipam
- import (
- "context"
- "net"
- "testing"
- "time"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/util/wait"
- "k8s.io/client-go/informers"
- coreinformers "k8s.io/client-go/informers/core/v1"
- "k8s.io/client-go/kubernetes/fake"
- "k8s.io/kubernetes/pkg/controller"
- "k8s.io/kubernetes/pkg/controller/testutil"
- )
- const (
- nodePollInterval = 100 * time.Millisecond
- )
- var alwaysReady = func() bool { return true }
- func waitForUpdatedNodeWithTimeout(nodeHandler *testutil.FakeNodeHandler, number int, timeout time.Duration) error {
- return wait.Poll(nodePollInterval, timeout, func() (bool, error) {
- if len(nodeHandler.GetUpdatedNodesCopy()) >= number {
- return true, nil
- }
- return false, nil
- })
- }
- // Creates a fakeNodeInformer using the provided fakeNodeHandler.
- func getFakeNodeInformer(fakeNodeHandler *testutil.FakeNodeHandler) coreinformers.NodeInformer {
- fakeClient := &fake.Clientset{}
- fakeInformerFactory := informers.NewSharedInformerFactory(fakeClient, controller.NoResyncPeriodFunc())
- fakeNodeInformer := fakeInformerFactory.Core().V1().Nodes()
- for _, node := range fakeNodeHandler.Existing {
- fakeNodeInformer.Informer().GetStore().Add(node)
- }
- return fakeNodeInformer
- }
- type testCase struct {
- description string
- fakeNodeHandler *testutil.FakeNodeHandler
- allocatorParams CIDRAllocatorParams
- // key is index of the cidr allocated
- expectedAllocatedCIDR map[int]string
- allocatedCIDRs map[int][]string
- // should controller creation fail?
- ctrlCreateFail bool
- }
- func TestOccupyPreExistingCIDR(t *testing.T) {
- // all tests operate on a single node
- testCases := []testCase{
- {
- description: "success, single stack no node allocation",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("10.10.0.0/16")
- return []*net.IPNet{clusterCIDRv4}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24},
- },
- allocatedCIDRs: nil,
- expectedAllocatedCIDR: nil,
- ctrlCreateFail: false,
- },
- {
- description: "success, dual stack no node allocation",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("10.10.0.0/16")
- _, clusterCIDRv6, _ := net.ParseCIDR("ace:cab:deca::/8")
- return []*net.IPNet{clusterCIDRv4, clusterCIDRv6}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24, 24},
- },
- allocatedCIDRs: nil,
- expectedAllocatedCIDR: nil,
- ctrlCreateFail: false,
- },
- {
- description: "success, single stack correct node allocation",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- Spec: v1.NodeSpec{
- PodCIDRs: []string{"10.10.0.1/24"},
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("10.10.0.0/16")
- return []*net.IPNet{clusterCIDRv4}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24},
- },
- allocatedCIDRs: nil,
- expectedAllocatedCIDR: nil,
- ctrlCreateFail: false,
- },
- {
- description: "success, dual stack both allocated correctly",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- Spec: v1.NodeSpec{
- PodCIDRs: []string{"10.10.0.1/24", "a00::/86"},
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("10.10.0.0/16")
- _, clusterCIDRv6, _ := net.ParseCIDR("ace:cab:deca::/8")
- return []*net.IPNet{clusterCIDRv4, clusterCIDRv6}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24, 24},
- },
- allocatedCIDRs: nil,
- expectedAllocatedCIDR: nil,
- ctrlCreateFail: false,
- },
- // failure cases
- {
- description: "fail, single stack incorrect node allocation",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- Spec: v1.NodeSpec{
- PodCIDRs: []string{"172.10.0.1/24"},
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("10.10.0.0/16")
- return []*net.IPNet{clusterCIDRv4}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24},
- },
- allocatedCIDRs: nil,
- expectedAllocatedCIDR: nil,
- ctrlCreateFail: true,
- },
- {
- description: "fail, dualstack node allocating from non existing cidr",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- Spec: v1.NodeSpec{
- PodCIDRs: []string{"10.10.0.1/24", "a00::/86"},
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("10.10.0.0/16")
- return []*net.IPNet{clusterCIDRv4}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24},
- },
- allocatedCIDRs: nil,
- expectedAllocatedCIDR: nil,
- ctrlCreateFail: true,
- },
- {
- description: "fail, dualstack node allocating bad v4",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- Spec: v1.NodeSpec{
- PodCIDRs: []string{"172.10.0.1/24", "a00::/86"},
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("10.10.0.0/16")
- _, clusterCIDRv6, _ := net.ParseCIDR("ace:cab:deca::/8")
- return []*net.IPNet{clusterCIDRv4, clusterCIDRv6}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24, 24},
- },
- allocatedCIDRs: nil,
- expectedAllocatedCIDR: nil,
- ctrlCreateFail: true,
- },
- {
- description: "fail, dualstack node allocating bad v6",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- Spec: v1.NodeSpec{
- PodCIDRs: []string{"10.10.0.1/24", "cdd::/86"},
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("10.10.0.0/16")
- _, clusterCIDRv6, _ := net.ParseCIDR("ace:cab:deca::/8")
- return []*net.IPNet{clusterCIDRv4, clusterCIDRv6}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24, 24},
- },
- allocatedCIDRs: nil,
- expectedAllocatedCIDR: nil,
- ctrlCreateFail: true,
- },
- }
- // test function
- for _, tc := range testCases {
- t.Run(tc.description, func(t *testing.T) {
- // Initialize the range allocator.
- fakeNodeInformer := getFakeNodeInformer(tc.fakeNodeHandler)
- nodeList, _ := tc.fakeNodeHandler.List(context.TODO(), metav1.ListOptions{})
- _, err := NewCIDRRangeAllocator(tc.fakeNodeHandler, fakeNodeInformer, tc.allocatorParams, nodeList)
- if err == nil && tc.ctrlCreateFail {
- t.Fatalf("creating range allocator was expected to fail, but it did not")
- }
- if err != nil && !tc.ctrlCreateFail {
- t.Fatalf("creating range allocator was expected to succeed, but it did not")
- }
- })
- }
- }
- func TestAllocateOrOccupyCIDRSuccess(t *testing.T) {
- // all tests operate on a single node
- testCases := []testCase{
- {
- description: "When there's no ServiceCIDR return first CIDR in range",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/24")
- return []*net.IPNet{clusterCIDR}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{30},
- },
- expectedAllocatedCIDR: map[int]string{
- 0: "127.123.234.0/30",
- },
- },
- {
- description: "Correctly filter out ServiceCIDR",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/24")
- return []*net.IPNet{clusterCIDR}
- }(),
- ServiceCIDR: func() *net.IPNet {
- _, serviceCIDR, _ := net.ParseCIDR("127.123.234.0/26")
- return serviceCIDR
- }(),
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{30},
- },
- // it should return first /30 CIDR after service range
- expectedAllocatedCIDR: map[int]string{
- 0: "127.123.234.64/30",
- },
- },
- {
- description: "Correctly ignore already allocated CIDRs",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/24")
- return []*net.IPNet{clusterCIDR}
- }(),
- ServiceCIDR: func() *net.IPNet {
- _, serviceCIDR, _ := net.ParseCIDR("127.123.234.0/26")
- return serviceCIDR
- }(),
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{30},
- },
- allocatedCIDRs: map[int][]string{
- 0: {"127.123.234.64/30", "127.123.234.68/30", "127.123.234.72/30", "127.123.234.80/30"},
- },
- expectedAllocatedCIDR: map[int]string{
- 0: "127.123.234.76/30",
- },
- },
- {
- description: "Dualstack CIDRs v4,v6",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("127.123.234.0/8")
- _, clusterCIDRv6, _ := net.ParseCIDR("ace:cab:deca::/84")
- return []*net.IPNet{clusterCIDRv4, clusterCIDRv6}
- }(),
- ServiceCIDR: func() *net.IPNet {
- _, serviceCIDR, _ := net.ParseCIDR("127.123.234.0/26")
- return serviceCIDR
- }(),
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24, 98},
- },
- },
- {
- description: "Dualstack CIDRs v6,v4",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("127.123.234.0/8")
- _, clusterCIDRv6, _ := net.ParseCIDR("ace:cab:deca::/84")
- return []*net.IPNet{clusterCIDRv6, clusterCIDRv4}
- }(),
- ServiceCIDR: func() *net.IPNet {
- _, serviceCIDR, _ := net.ParseCIDR("127.123.234.0/26")
- return serviceCIDR
- }(),
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{98, 24},
- },
- },
- {
- description: "Dualstack CIDRs, more than two",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDRv4, _ := net.ParseCIDR("127.123.234.0/8")
- _, clusterCIDRv6, _ := net.ParseCIDR("ace:cab:deca::/84")
- _, clusterCIDRv4_2, _ := net.ParseCIDR("10.0.0.0/8")
- return []*net.IPNet{clusterCIDRv4, clusterCIDRv6, clusterCIDRv4_2}
- }(),
- ServiceCIDR: func() *net.IPNet {
- _, serviceCIDR, _ := net.ParseCIDR("127.123.234.0/26")
- return serviceCIDR
- }(),
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{24, 98, 24},
- },
- },
- }
- // test function
- testFunc := func(tc testCase) {
- // Initialize the range allocator.
- allocator, err := NewCIDRRangeAllocator(tc.fakeNodeHandler, getFakeNodeInformer(tc.fakeNodeHandler), tc.allocatorParams, nil)
- if err != nil {
- t.Errorf("%v: failed to create CIDRRangeAllocator with error %v", tc.description, err)
- return
- }
- rangeAllocator, ok := allocator.(*rangeAllocator)
- if !ok {
- t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
- return
- }
- rangeAllocator.nodesSynced = alwaysReady
- rangeAllocator.recorder = testutil.NewFakeRecorder()
- go allocator.Run(wait.NeverStop)
- // this is a bit of white box testing
- // pre allocate the cidrs as per the test
- for idx, allocatedList := range tc.allocatedCIDRs {
- for _, allocated := range allocatedList {
- _, cidr, err := net.ParseCIDR(allocated)
- if err != nil {
- t.Fatalf("%v: unexpected error when parsing CIDR %v: %v", tc.description, allocated, err)
- }
- if err = rangeAllocator.cidrSets[idx].Occupy(cidr); err != nil {
- t.Fatalf("%v: unexpected error when occupying CIDR %v: %v", tc.description, allocated, err)
- }
- }
- if err := allocator.AllocateOrOccupyCIDR(tc.fakeNodeHandler.Existing[0]); err != nil {
- t.Errorf("%v: unexpected error in AllocateOrOccupyCIDR: %v", tc.description, err)
- }
- if err := waitForUpdatedNodeWithTimeout(tc.fakeNodeHandler, 1, wait.ForeverTestTimeout); err != nil {
- t.Fatalf("%v: timeout while waiting for Node update: %v", tc.description, err)
- }
- }
- if len(tc.expectedAllocatedCIDR) == 0 {
- // nothing further expected
- return
- }
- for _, updatedNode := range tc.fakeNodeHandler.GetUpdatedNodesCopy() {
- if len(updatedNode.Spec.PodCIDRs) == 0 {
- continue // not assigned yet
- }
- //match
- for podCIDRIdx, expectedPodCIDR := range tc.expectedAllocatedCIDR {
- if updatedNode.Spec.PodCIDRs[podCIDRIdx] != expectedPodCIDR {
- t.Errorf("%v: Unable to find allocated CIDR %v, found updated Nodes with CIDRs: %v", tc.description, expectedPodCIDR, updatedNode.Spec.PodCIDRs)
- break
- }
- }
- }
- }
- // run the test cases
- for _, tc := range testCases {
- testFunc(tc)
- }
- }
- func TestAllocateOrOccupyCIDRFailure(t *testing.T) {
- testCases := []testCase{
- {
- description: "When there's no ServiceCIDR return first CIDR in range",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/28")
- return []*net.IPNet{clusterCIDR}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{30},
- },
- allocatedCIDRs: map[int][]string{
- 0: {"127.123.234.0/30", "127.123.234.4/30", "127.123.234.8/30", "127.123.234.12/30"},
- },
- },
- }
- testFunc := func(tc testCase) {
- // Initialize the range allocator.
- allocator, err := NewCIDRRangeAllocator(tc.fakeNodeHandler, getFakeNodeInformer(tc.fakeNodeHandler), tc.allocatorParams, nil)
- if err != nil {
- t.Logf("%v: failed to create CIDRRangeAllocator with error %v", tc.description, err)
- }
- rangeAllocator, ok := allocator.(*rangeAllocator)
- if !ok {
- t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
- return
- }
- rangeAllocator.nodesSynced = alwaysReady
- rangeAllocator.recorder = testutil.NewFakeRecorder()
- go allocator.Run(wait.NeverStop)
- // this is a bit of white box testing
- for setIdx, allocatedList := range tc.allocatedCIDRs {
- for _, allocated := range allocatedList {
- _, cidr, err := net.ParseCIDR(allocated)
- if err != nil {
- t.Fatalf("%v: unexpected error when parsing CIDR %v: %v", tc.description, cidr, err)
- }
- err = rangeAllocator.cidrSets[setIdx].Occupy(cidr)
- if err != nil {
- t.Fatalf("%v: unexpected error when occupying CIDR %v: %v", tc.description, cidr, err)
- }
- }
- }
- if err := allocator.AllocateOrOccupyCIDR(tc.fakeNodeHandler.Existing[0]); err == nil {
- t.Errorf("%v: unexpected success in AllocateOrOccupyCIDR: %v", tc.description, err)
- }
- // We don't expect any updates, so just sleep for some time
- time.Sleep(time.Second)
- if len(tc.fakeNodeHandler.GetUpdatedNodesCopy()) != 0 {
- t.Fatalf("%v: unexpected update of nodes: %v", tc.description, tc.fakeNodeHandler.GetUpdatedNodesCopy())
- }
- if len(tc.expectedAllocatedCIDR) == 0 {
- // nothing further expected
- return
- }
- for _, updatedNode := range tc.fakeNodeHandler.GetUpdatedNodesCopy() {
- if len(updatedNode.Spec.PodCIDRs) == 0 {
- continue // not assigned yet
- }
- //match
- for podCIDRIdx, expectedPodCIDR := range tc.expectedAllocatedCIDR {
- if updatedNode.Spec.PodCIDRs[podCIDRIdx] == expectedPodCIDR {
- t.Errorf("%v: found cidr %v that should not be allocated on node with CIDRs:%v", tc.description, expectedPodCIDR, updatedNode.Spec.PodCIDRs)
- break
- }
- }
- }
- }
- for _, tc := range testCases {
- testFunc(tc)
- }
- }
- type releaseTestCase struct {
- description string
- fakeNodeHandler *testutil.FakeNodeHandler
- allocatorParams CIDRAllocatorParams
- expectedAllocatedCIDRFirstRound map[int]string
- expectedAllocatedCIDRSecondRound map[int]string
- allocatedCIDRs map[int][]string
- cidrsToRelease [][]string
- }
- func TestReleaseCIDRSuccess(t *testing.T) {
- testCases := []releaseTestCase{
- {
- description: "Correctly release preallocated CIDR",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/28")
- return []*net.IPNet{clusterCIDR}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{30},
- },
- allocatedCIDRs: map[int][]string{
- 0: {"127.123.234.0/30", "127.123.234.4/30", "127.123.234.8/30", "127.123.234.12/30"},
- },
- expectedAllocatedCIDRFirstRound: nil,
- cidrsToRelease: [][]string{
- {"127.123.234.4/30"},
- },
- expectedAllocatedCIDRSecondRound: map[int]string{
- 0: "127.123.234.4/30",
- },
- },
- {
- description: "Correctly recycle CIDR",
- fakeNodeHandler: &testutil.FakeNodeHandler{
- Existing: []*v1.Node{
- {
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- },
- },
- Clientset: fake.NewSimpleClientset(),
- },
- allocatorParams: CIDRAllocatorParams{
- ClusterCIDRs: func() []*net.IPNet {
- _, clusterCIDR, _ := net.ParseCIDR("127.123.234.0/28")
- return []*net.IPNet{clusterCIDR}
- }(),
- ServiceCIDR: nil,
- SecondaryServiceCIDR: nil,
- NodeCIDRMaskSizes: []int{30},
- },
- allocatedCIDRs: map[int][]string{
- 0: {"127.123.234.4/30", "127.123.234.8/30", "127.123.234.12/30"},
- },
- expectedAllocatedCIDRFirstRound: map[int]string{
- 0: "127.123.234.0/30",
- },
- cidrsToRelease: [][]string{
- {"127.123.234.0/30"},
- },
- expectedAllocatedCIDRSecondRound: map[int]string{
- 0: "127.123.234.0/30",
- },
- },
- }
- testFunc := func(tc releaseTestCase) {
- // Initialize the range allocator.
- allocator, _ := NewCIDRRangeAllocator(tc.fakeNodeHandler, getFakeNodeInformer(tc.fakeNodeHandler), tc.allocatorParams, nil)
- rangeAllocator, ok := allocator.(*rangeAllocator)
- if !ok {
- t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
- return
- }
- rangeAllocator.nodesSynced = alwaysReady
- rangeAllocator.recorder = testutil.NewFakeRecorder()
- go allocator.Run(wait.NeverStop)
- // this is a bit of white box testing
- for setIdx, allocatedList := range tc.allocatedCIDRs {
- for _, allocated := range allocatedList {
- _, cidr, err := net.ParseCIDR(allocated)
- if err != nil {
- t.Fatalf("%v: unexpected error when parsing CIDR %v: %v", tc.description, allocated, err)
- }
- err = rangeAllocator.cidrSets[setIdx].Occupy(cidr)
- if err != nil {
- t.Fatalf("%v: unexpected error when occupying CIDR %v: %v", tc.description, allocated, err)
- }
- }
- }
- err := allocator.AllocateOrOccupyCIDR(tc.fakeNodeHandler.Existing[0])
- if len(tc.expectedAllocatedCIDRFirstRound) != 0 {
- if err != nil {
- t.Fatalf("%v: unexpected error in AllocateOrOccupyCIDR: %v", tc.description, err)
- }
- if err := waitForUpdatedNodeWithTimeout(tc.fakeNodeHandler, 1, wait.ForeverTestTimeout); err != nil {
- t.Fatalf("%v: timeout while waiting for Node update: %v", tc.description, err)
- }
- } else {
- if err == nil {
- t.Fatalf("%v: unexpected success in AllocateOrOccupyCIDR: %v", tc.description, err)
- }
- // We don't expect any updates here
- time.Sleep(time.Second)
- if len(tc.fakeNodeHandler.GetUpdatedNodesCopy()) != 0 {
- t.Fatalf("%v: unexpected update of nodes: %v", tc.description, tc.fakeNodeHandler.GetUpdatedNodesCopy())
- }
- }
- for _, cidrToRelease := range tc.cidrsToRelease {
- nodeToRelease := v1.Node{
- ObjectMeta: metav1.ObjectMeta{
- Name: "node0",
- },
- }
- nodeToRelease.Spec.PodCIDRs = cidrToRelease
- err = allocator.ReleaseCIDR(&nodeToRelease)
- if err != nil {
- t.Fatalf("%v: unexpected error in ReleaseCIDR: %v", tc.description, err)
- }
- }
- if err = allocator.AllocateOrOccupyCIDR(tc.fakeNodeHandler.Existing[0]); err != nil {
- t.Fatalf("%v: unexpected error in AllocateOrOccupyCIDR: %v", tc.description, err)
- }
- if err := waitForUpdatedNodeWithTimeout(tc.fakeNodeHandler, 1, wait.ForeverTestTimeout); err != nil {
- t.Fatalf("%v: timeout while waiting for Node update: %v", tc.description, err)
- }
- if len(tc.expectedAllocatedCIDRSecondRound) == 0 {
- // nothing further expected
- return
- }
- for _, updatedNode := range tc.fakeNodeHandler.GetUpdatedNodesCopy() {
- if len(updatedNode.Spec.PodCIDRs) == 0 {
- continue // not assigned yet
- }
- //match
- for podCIDRIdx, expectedPodCIDR := range tc.expectedAllocatedCIDRSecondRound {
- if updatedNode.Spec.PodCIDRs[podCIDRIdx] != expectedPodCIDR {
- t.Errorf("%v: found cidr %v that should not be allocated on node with CIDRs:%v", tc.description, expectedPodCIDR, updatedNode.Spec.PodCIDRs)
- break
- }
- }
- }
- }
- for _, tc := range testCases {
- testFunc(tc)
- }
- }
|