kubekey/pkg/service/provisioning/cloudinit/writefiles_test.go
24sama 3dd48dc8df refactor KubeKey project structure
Signed-off-by: 24sama <jacksama@foxmail.com>
2022-10-06 11:58:06 +08:00

174 lines
4.1 KiB
Go

/*
Copyright 2022 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 cloudinit
import (
"bytes"
"compress/gzip"
"testing"
. "github.com/onsi/gomega"
"github.com/kubesphere/kubekey/pkg/service/provisioning/commands"
)
func TestWriteFiles(t *testing.T) {
var useCases = []struct {
name string
w writeFilesAction
expectedCmds []commands.Cmd
}{
{
name: "two files pass",
w: writeFilesAction{
Files: []files{
{Path: "foo", Content: "bar"},
{Path: "baz", Content: "qux"},
},
},
expectedCmds: []commands.Cmd{
{Cmd: "mkdir", Args: []string{"-p", "."}},
{Cmd: "/bin/sh", Args: []string{"-c", "echo 'bar' > foo"}},
{Cmd: "mkdir", Args: []string{"-p", "."}},
{Cmd: "/bin/sh", Args: []string{"-c", "echo 'qux' > baz"}},
},
},
{
name: "owner different than default",
w: writeFilesAction{
Files: []files{
{Path: "foo", Content: "bar", Owner: "baz:baz"},
},
},
expectedCmds: []commands.Cmd{
{Cmd: "mkdir", Args: []string{"-p", "."}},
{Cmd: "/bin/sh", Args: []string{"-c", "echo 'bar' > foo"}},
{Cmd: "chown", Args: []string{"baz:baz", "foo"}},
},
},
{
name: "permissions different than default",
w: writeFilesAction{
Files: []files{
{Path: "foo", Content: "bar", Permissions: "755"},
},
},
expectedCmds: []commands.Cmd{
{Cmd: "mkdir", Args: []string{"-p", "."}},
{Cmd: "/bin/sh", Args: []string{"-c", "echo 'bar' > foo"}},
{Cmd: "chmod", Args: []string{"755", "foo"}},
},
},
{
name: "append",
w: writeFilesAction{
Files: []files{
{Path: "foo", Content: "bar", Append: true},
},
},
expectedCmds: []commands.Cmd{
{Cmd: "mkdir", Args: []string{"-p", "."}},
{Cmd: "/bin/sh", Args: []string{"-c", "echo 'bar' >> foo"}},
},
},
}
for _, rt := range useCases {
t.Run(rt.name, func(t *testing.T) {
g := NewWithT(t)
cmds, err := rt.w.Commands()
g.Expect(err).NotTo(HaveOccurred())
g.Expect(rt.expectedCmds).To(Equal(cmds))
})
}
}
func TestFixContent(t *testing.T) {
v := "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
gv, _ := gZipData([]byte(v))
var useCases = []struct {
name string
content string
encoding string
expectedContent string
expectedError bool
}{
{
name: "plain text",
content: "foobar",
expectedContent: "foobar",
},
{
name: "base64 data",
content: "YWJjMTIzIT8kKiYoKSctPUB+",
encoding: "base64",
expectedContent: "abc123!?$*&()'-=@~",
},
{
name: "gzip data",
content: string(gv),
encoding: "gzip",
expectedContent: v,
},
}
for _, rt := range useCases {
t.Run(rt.name, func(t *testing.T) {
g := NewWithT(t)
encoding := fixEncoding(rt.encoding)
c, err := fixContent(rt.content, encoding)
if rt.expectedError {
g.Expect(err).To(HaveOccurred())
} else {
g.Expect(err).NotTo(HaveOccurred())
}
g.Expect(rt.expectedContent).To(Equal(c))
})
}
}
func TestUnzipData(t *testing.T) {
g := NewWithT(t)
value := []byte("foobarbazquxfoobarbazquxfoobarbazquxfoobarbazquxfoobarbazquxfoobarbazquxfoobarbazquxfoobarbazquxfoobarbazqux")
gvalue, _ := gZipData(value)
dvalue, _ := gUnzipData(gvalue)
g.Expect(value).To(Equal(dvalue))
}
func gZipData(data []byte) ([]byte, error) {
var b bytes.Buffer
gz := gzip.NewWriter(&b)
if _, err := gz.Write(data); err != nil {
return nil, err
}
if err := gz.Flush(); err != nil {
return nil, err
}
if err := gz.Close(); err != nil {
return nil, err
}
return b.Bytes(), nil
}