kubekey/pkg/modules/gen_cert_test.go
liujian 48b7c3b34b
feat: check inventory when it's changed (#2691)
Signed-off-by: joyceliu <joyceliu@yunify.com>
2025-08-07 17:50:23 +08:00

69 lines
1.6 KiB
Go

/*
Copyright 2024 The KubeSphere 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 modules
import (
"context"
"os"
"testing"
"github.com/stretchr/testify/assert"
"k8s.io/apimachinery/pkg/runtime"
)
func TestModuleGenCert(t *testing.T) {
testcases := []struct {
name string
opt ExecOptions
exceptStdout string
}{
{
name: "gen root cert",
opt: ExecOptions{
Args: runtime.RawExtension{
Raw: []byte(`{
"policy": "{{- .policy -}}\n",
"sans": "[\"localhost\"]",
"cn": "test",
"out_key": "./test_gen_cert/test-key.pem",
"out_cert": "./test_gen_cert/test-crt.pem"
}`),
},
Host: "node1",
Variable: newTestVariable([]string{"node1"}, map[string]any{
"policy": "IfNotPresent",
}),
},
exceptStdout: "success",
},
}
if _, err := os.Stat("./test_gen_cert"); os.IsNotExist(err) {
if err := os.Mkdir("./test_gen_cert", os.ModePerm); err != nil {
t.Fatal(err)
}
}
defer os.RemoveAll("./test_gen_cert")
for _, testcase := range testcases {
t.Run(testcase.name, func(t *testing.T) {
stdout, _, _ := ModuleGenCert(context.Background(), testcase.opt)
assert.Equal(t, testcase.exceptStdout, stdout)
})
}
}