1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
package main
import (
"io/ioutil"
"os"
"path/filepath"
"reflect"
"testing"
"text/template"
"github.com/google/go-cmp/cmp"
)
func Test_outFile(t *testing.T) {
tests := []struct {
tname string
outdir string
template string
nameRe string
namespaceRe string
fileRe string
kind string
name string
namespace string
fileExp string
}{
{
tname: "tpl_flat",
outdir: "gen",
template: TemplateFlat,
nameRe: NameRe,
namespaceRe: NamespaceRe,
fileRe: FileRe,
kind: "Pod",
namespace: "foo",
name: "bar",
fileExp: filepath.Join("gen", "bar-pod.yaml"),
},
{
tname: "tpl_ns",
outdir: "gen",
template: TemplateNS,
nameRe: NameRe,
namespaceRe: NamespaceRe,
fileRe: FileRe,
kind: "Pod",
namespace: "foo",
name: "bar",
fileExp: filepath.Join("gen", "foo", "bar.Pod.yaml"),
},
{
tname: "ns/name.kind-otherRe",
outdir: "gen",
template: TemplateNS,
nameRe: NameRe,
namespaceRe: NamespaceRe,
fileRe: "foo.*bar",
kind: "Pod",
namespace: "foo",
name: "bar",
fileExp: filepath.Join("gen", "foo", "bar.Pod.yaml"),
},
{
tname: "no-ns/name.kind-otherRe",
outdir: "gen",
template: TemplateNS,
nameRe: NameRe,
namespaceRe: NamespaceRe,
fileRe: FileRe,
kind: "ClusterRole",
namespace: "",
name: "bar",
fileExp: filepath.Join("gen", "_no_ns_", "bar.ClusterRole.yaml"),
},
{
tname: "nonmatching-ns",
outdir: "gen",
template: TemplateNS,
nameRe: NameRe,
namespaceRe: "qqq",
fileRe: FileRe,
kind: "Pod",
namespace: "foo",
name: "bar",
fileExp: "",
},
{
tname: "no-filename-match",
outdir: "gen",
template: TemplateNS,
nameRe: NameRe,
namespaceRe: NamespaceRe,
fileRe: "foo.*BAR",
kind: "Pod",
namespace: "foo",
name: "bar",
fileExp: "",
},
{
tname: "no-name-match",
outdir: "gen",
template: TemplateNS,
nameRe: "qqq",
namespaceRe: NamespaceRe,
fileRe: FileRe,
kind: "Pod",
namespace: "foo",
name: "bar",
fileExp: "",
},
}
for _, tt := range tests {
t.Run(tt.tname, func(t *testing.T) {
m := &KubernetesAPI{
Kind: tt.kind,
}
tpl, err := template.New("test").Parse(tt.template)
if err != nil {
t.Errorf("template: %s", tt.template)
}
m.Metadata.Name = tt.name
m.Metadata.Namespace = tt.namespace
filters := &Filters{
name: tt.nameRe,
namespace: tt.namespaceRe,
filename: tt.fileRe,
}
got, err := outFile(tt.outdir, tpl, filters, m)
if got != tt.fileExp {
t.Errorf("outFile() got = '%v', want '%v'", got, tt.fileExp)
}
})
}
}
func Test_handleFile(t *testing.T) {
// determine input files
match, err := filepath.Glob("testdata/*.yaml")
if err != nil {
t.Fatal(err)
}
for _, in := range match {
out := in + ".golden"
runTest(t, in, out)
}
}
func runTest(t *testing.T, in, out string) {
t.Run(in, func(t *testing.T) {
f := filepath.Base(in)
outDir, err := ioutil.TempDir(os.TempDir(), f+"-")
if err != nil {
log.Fatal(err)
}
defer os.RemoveAll(outDir)
handleFile(in, outDir, TemplateFlat, &Filters{})
wantFiles, err := filepath.Glob(filepath.Join(out, "*"))
if err != nil {
t.Errorf("could not find test files: %v", err)
}
gotFiles, err := filepath.Glob(filepath.Join(outDir, "*"))
if err != nil {
t.Errorf("could not find result files: %v", err)
}
if len(gotFiles) != len(wantFiles) {
t.Errorf("handleFile() = %v, want %v", len(gotFiles), len(wantFiles))
}
t.Logf("wantFiles: %s", wantFiles)
for _, wantFile := range wantFiles {
fileName := filepath.Base(wantFile)
want, _ := ioutil.ReadFile(wantFile)
generatedFileName := filepath.Join(outDir, filepath.Base(wantFile))
t.Logf("Validating content of file: \n - Generated: %s\n - GoldenTest: %s", generatedFileName, wantFile)
got, _ := ioutil.ReadFile(generatedFileName)
if !reflect.DeepEqual(got, want) {
t.Errorf(fileName + "\n" + cmp.Diff(string(got), string(want)))
}
}
})
}
|