kubernetes/test/e2e/framework/node/wait_test.go
Patrick Ohly 2f6c4f5eab e2e: use Ginkgo context
All code must use the context from Ginkgo when doing API calls or polling for a
change, otherwise the code would not return immediately when the test gets
aborted.
2022-12-16 20:14:04 +01:00

279 lines
8.6 KiB
Go

/*
Copyright 2019 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 node
import (
"context"
"errors"
"testing"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/kubernetes/fake"
k8stesting "k8s.io/client-go/testing"
)
// TestCheckReadyForTests specifically is concerned about the multi-node logic
// since single node checks are in TestReadyForTests.
func TestCheckReadyForTests(t *testing.T) {
// This is a duplicate definition of the constant in pkg/controller/service/controller.go
labelNodeRoleControlPlane := "node-role.kubernetes.io/control-plane"
fromVanillaNode := func(f func(*v1.Node)) v1.Node {
vanillaNode := &v1.Node{
ObjectMeta: metav1.ObjectMeta{Name: "test-node"},
Status: v1.NodeStatus{
Conditions: []v1.NodeCondition{
{Type: v1.NodeReady, Status: v1.ConditionTrue},
},
},
}
f(vanillaNode)
return *vanillaNode
}
tcs := []struct {
desc string
nonblockingTaints string
allowedNotReadyNodes int
nodes []v1.Node
nodeListErr error
expected bool
expectedErr string
}{
{
desc: "Vanilla node should pass",
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {}),
},
expected: true,
}, {
desc: "Default value for nonblocking taints tolerates control plane taint",
nonblockingTaints: `node-role.kubernetes.io/control-plane`,
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: labelNodeRoleControlPlane, Effect: v1.TaintEffectNoSchedule}}
}),
},
expected: true,
}, {
desc: "Tainted node should fail if effect is TaintEffectNoExecute",
nonblockingTaints: "bar",
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoExecute}}
})},
expected: false,
}, {
desc: "Tainted node can be allowed via allowedNotReadyNodes",
nonblockingTaints: "bar",
allowedNotReadyNodes: 1,
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoExecute}}
})},
expected: true,
}, {
desc: "Multi-node, all OK",
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {}),
fromVanillaNode(func(n *v1.Node) {}),
},
expected: true,
}, {
desc: "Multi-node, single blocking node blocks",
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {}),
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoSchedule}}
}),
},
expected: false,
}, {
desc: "Multi-node, single blocking node allowed via allowedNotReadyNodes",
allowedNotReadyNodes: 1,
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {}),
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoSchedule}}
}),
},
expected: true,
}, {
desc: "Multi-node, single blocking node allowed via nonblocking taint",
nonblockingTaints: "foo",
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {}),
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoSchedule}}
}),
},
expected: true,
}, {
desc: "Multi-node, both blocking nodes allowed via separate nonblocking taints",
nonblockingTaints: "foo,bar",
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {}),
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoSchedule}}
}),
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "bar", Effect: v1.TaintEffectNoSchedule}}
}),
},
expected: true,
}, {
desc: "Multi-node, one blocking node allowed via nonblocking taints still blocked",
nonblockingTaints: "foo,notbar",
nodes: []v1.Node{
fromVanillaNode(func(n *v1.Node) {}),
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoSchedule}}
}),
fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "bar", Effect: v1.TaintEffectNoSchedule}}
}),
},
expected: false,
}, {
desc: "Errors from node list are reported",
nodeListErr: errors.New("Forced error"),
expected: false,
expectedErr: "Forced error",
},
}
// Only determines some logging functionality; not relevant so set to a large value.
testLargeClusterThreshold := 1000
for _, tc := range tcs {
t.Run(tc.desc, func(t *testing.T) {
c := fake.NewSimpleClientset()
c.PrependReactor("list", "nodes", func(action k8stesting.Action) (handled bool, ret runtime.Object, err error) {
nodeList := &v1.NodeList{Items: tc.nodes}
return true, nodeList, tc.nodeListErr
})
checkFunc := CheckReadyForTests(context.Background(), c, tc.nonblockingTaints, tc.allowedNotReadyNodes, testLargeClusterThreshold)
// The check function returns "false, nil" during its
// first two calls, therefore we have to try several
// times until we get the expected error.
for attempt := 0; attempt <= 3; attempt++ {
out, err := checkFunc(context.Background())
expected := tc.expected
expectedErr := tc.expectedErr
if tc.nodeListErr != nil && attempt < 2 {
expected = false
expectedErr = ""
}
if out != expected {
t.Errorf("Expected %v but got %v", expected, out)
}
switch {
case err == nil && expectedErr != "":
t.Errorf("attempt #%d: expected error %q nil", attempt, expectedErr)
case err != nil && err.Error() != expectedErr:
t.Errorf("attempt #%d: expected error %q but got %q", attempt, expectedErr, err.Error())
}
}
})
}
}
func TestReadyForTests(t *testing.T) {
fromVanillaNode := func(f func(*v1.Node)) *v1.Node {
vanillaNode := &v1.Node{
ObjectMeta: metav1.ObjectMeta{Name: "test-node"},
Status: v1.NodeStatus{
Conditions: []v1.NodeCondition{
{Type: v1.NodeReady, Status: v1.ConditionTrue},
},
},
}
f(vanillaNode)
return vanillaNode
}
_ = fromVanillaNode
tcs := []struct {
desc string
node *v1.Node
nonblockingTaints string
expected bool
}{
{
desc: "Vanilla node should pass",
node: fromVanillaNode(func(n *v1.Node) {
}),
expected: true,
}, {
desc: "Vanilla node should pass with non-applicable nonblocking taint",
nonblockingTaints: "foo",
node: fromVanillaNode(func(n *v1.Node) {
}),
expected: true,
}, {
desc: "Tainted node should pass if effect is TaintEffectPreferNoSchedule",
node: fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectPreferNoSchedule}}
}),
expected: true,
}, {
desc: "Tainted node should fail if effect is TaintEffectNoExecute",
node: fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoExecute}}
}),
expected: false,
}, {
desc: "Tainted node should fail",
node: fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoSchedule}}
}),
expected: false,
}, {
desc: "Tainted node should pass if nonblocking",
nonblockingTaints: "foo",
node: fromVanillaNode(func(n *v1.Node) {
n.Spec.Taints = []v1.Taint{{Key: "foo", Effect: v1.TaintEffectNoSchedule}}
}),
expected: true,
}, {
desc: "Node with network not ready fails",
node: fromVanillaNode(func(n *v1.Node) {
n.Status.Conditions = append(n.Status.Conditions,
v1.NodeCondition{Type: v1.NodeNetworkUnavailable, Status: v1.ConditionTrue},
)
}),
expected: false,
}, {
desc: "Node fails unless NodeReady status",
node: fromVanillaNode(func(n *v1.Node) {
n.Status.Conditions = []v1.NodeCondition{}
}),
expected: false,
},
}
for _, tc := range tcs {
t.Run(tc.desc, func(t *testing.T) {
out := readyForTests(tc.node, tc.nonblockingTaints)
if out != tc.expected {
t.Errorf("Expected %v but got %v", tc.expected, out)
}
})
}
}