kubernetes util_test 源码

  • 2022-09-18
  • 浏览 (257)

kubernetes util_test 代码

文件路径:/staging/src/k8s.io/apiserver/pkg/audit/policy/util_test.go

/*
Copyright 2018 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 policy

import (
	"testing"

	"github.com/stretchr/testify/require"

	"k8s.io/apiserver/pkg/apis/audit"
)

func TestInvertStages(t *testing.T) {
	for _, test := range []struct {
		desc           string
		stages         []audit.Stage
		expectedStages []audit.Stage
	}{
		{
			desc: "should remove one",
			stages: []audit.Stage{
				audit.StageResponseStarted,
			},
			expectedStages: []audit.Stage{
				audit.StageRequestReceived,
				audit.StageResponseComplete,
				audit.StagePanic,
			},
		},
		{
			desc: "should remove both",
			stages: []audit.Stage{
				audit.StageResponseStarted,
				audit.StageRequestReceived,
			},
			expectedStages: []audit.Stage{
				audit.StageResponseComplete,
				audit.StagePanic,
			},
		},
		{
			desc:   "should remove none",
			stages: []audit.Stage{},
			expectedStages: []audit.Stage{
				audit.StageResponseComplete,
				audit.StageResponseStarted,
				audit.StageRequestReceived,
				audit.StagePanic,
			},
		},
		{
			desc: "should remove all",
			stages: []audit.Stage{
				audit.StageResponseComplete,
				audit.StageResponseStarted,
				audit.StageRequestReceived,
				audit.StagePanic,
			},
			expectedStages: []audit.Stage{},
		},
	} {
		t.Run(test.desc, func(t *testing.T) {
			e := InvertStages(test.stages)
			require.ElementsMatch(t, e, test.expectedStages)
		})
	}
}

相关信息

kubernetes 源码目录

相关文章

kubernetes checker 源码

kubernetes checker_test 源码

kubernetes reader 源码

kubernetes reader_test 源码

kubernetes util 源码

0  赞