2019-09-04 12:15:40 +02:00
|
|
|
// Copyright (C) 2016-2019 Vincent Ambo <mail@tazj.in>
|
2017-11-21 11:24:04 +01:00
|
|
|
//
|
|
|
|
// This file is part of Kontemplate.
|
|
|
|
//
|
|
|
|
// Kontemplate is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2017-02-08 21:44:51 +01:00
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2018-06-09 16:23:09 +02:00
|
|
|
var noExplicitVars []string = make([]string, 0)
|
|
|
|
|
2017-02-08 21:44:51 +01:00
|
|
|
func TestLoadFlatContextFromFile(t *testing.T) {
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, err := LoadContext("testdata/flat-test.yaml", &noExplicitVars)
|
2017-02-08 21:44:51 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := Context{
|
|
|
|
Name: "k8s.prod.mydomain.com",
|
|
|
|
Global: map[string]interface{}{
|
|
|
|
"globalVar": "lizards",
|
|
|
|
},
|
|
|
|
ResourceSets: []ResourceSet{
|
|
|
|
{
|
|
|
|
Name: "some-api",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/some-api",
|
2017-02-08 21:44:51 +01:00
|
|
|
Values: map[string]interface{}{
|
|
|
|
"apiPort": float64(4567), // yep!
|
|
|
|
"importantFeature": true,
|
|
|
|
"version": "1.0-0e6884d",
|
2018-06-09 16:23:09 +02:00
|
|
|
"globalVar": "lizards",
|
2017-02-08 21:44:51 +01:00
|
|
|
},
|
|
|
|
Include: nil,
|
|
|
|
Parent: "",
|
|
|
|
},
|
|
|
|
},
|
2018-06-09 20:14:38 +02:00
|
|
|
BaseDir: "testdata",
|
2018-06-09 16:23:09 +02:00
|
|
|
ImportedVars: make(map[string]interface{}, 0),
|
|
|
|
ExplicitVars: make(map[string]interface{}, 0),
|
2017-02-08 21:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(*ctx, expected) {
|
|
|
|
t.Error("Loaded context and expected context did not match")
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
2018-11-15 13:49:23 +01:00
|
|
|
|
|
|
|
func TestLoadContextWithArgs(t *testing.T) {
|
|
|
|
ctx, err := LoadContext("testdata/flat-with-args-test.yaml", &noExplicitVars)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := Context{
|
|
|
|
Name: "k8s.prod.mydomain.com",
|
|
|
|
ResourceSets: []ResourceSet{
|
|
|
|
{
|
|
|
|
Name: "some-api",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/some-api",
|
2018-11-15 13:49:23 +01:00
|
|
|
Values: make(map[string]interface{}, 0),
|
|
|
|
Args: []string{
|
|
|
|
"--as=some-user",
|
|
|
|
"--as-group=hello:world",
|
|
|
|
"--as-banana",
|
|
|
|
"true",
|
|
|
|
},
|
|
|
|
Include: nil,
|
|
|
|
Parent: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
BaseDir: "testdata",
|
|
|
|
ImportedVars: make(map[string]interface{}, 0),
|
|
|
|
ExplicitVars: make(map[string]interface{}, 0),
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(*ctx, expected) {
|
|
|
|
t.Error("Loaded context and expected context did not match")
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
2017-02-08 21:44:51 +01:00
|
|
|
|
|
|
|
func TestLoadContextWithResourceSetCollections(t *testing.T) {
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, err := LoadContext("testdata/collections-test.yaml", &noExplicitVars)
|
2017-02-08 21:44:51 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := Context{
|
|
|
|
Name: "k8s.prod.mydomain.com",
|
|
|
|
Global: map[string]interface{}{
|
|
|
|
"globalVar": "lizards",
|
|
|
|
},
|
|
|
|
ResourceSets: []ResourceSet{
|
|
|
|
{
|
|
|
|
Name: "some-api",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/some-api",
|
2017-02-08 21:44:51 +01:00
|
|
|
Values: map[string]interface{}{
|
|
|
|
"apiPort": float64(4567), // yep!
|
|
|
|
"importantFeature": true,
|
|
|
|
"version": "1.0-0e6884d",
|
2018-06-09 16:23:09 +02:00
|
|
|
"globalVar": "lizards",
|
2017-02-08 21:44:51 +01:00
|
|
|
},
|
|
|
|
Include: nil,
|
|
|
|
Parent: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "collection/nested",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/collection/nested",
|
2017-02-08 21:44:51 +01:00
|
|
|
Values: map[string]interface{}{
|
2018-06-09 20:14:38 +02:00
|
|
|
"lizards": "good",
|
2018-06-09 16:23:09 +02:00
|
|
|
"globalVar": "lizards",
|
2017-02-08 21:44:51 +01:00
|
|
|
},
|
|
|
|
Include: nil,
|
|
|
|
Parent: "collection",
|
|
|
|
},
|
|
|
|
},
|
2018-06-09 20:14:38 +02:00
|
|
|
BaseDir: "testdata",
|
2018-06-09 16:23:09 +02:00
|
|
|
ImportedVars: make(map[string]interface{}, 0),
|
|
|
|
ExplicitVars: make(map[string]interface{}, 0),
|
2017-02-08 21:44:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(*ctx, expected) {
|
|
|
|
t.Error("Loaded context and expected context did not match")
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2017-02-14 19:00:06 +01:00
|
|
|
|
|
|
|
func TestSubresourceVariableInheritance(t *testing.T) {
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, err := LoadContext("testdata/parent-variables.yaml", &noExplicitVars)
|
2017-02-14 19:00:06 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := Context{
|
|
|
|
Name: "k8s.prod.mydomain.com",
|
|
|
|
ResourceSets: []ResourceSet{
|
|
|
|
{
|
|
|
|
Name: "parent/child",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/parent/child",
|
2017-02-14 19:00:06 +01:00
|
|
|
Values: map[string]interface{}{
|
|
|
|
"foo": "bar",
|
|
|
|
"bar": "baz",
|
|
|
|
},
|
|
|
|
Include: nil,
|
2017-02-20 14:25:39 +01:00
|
|
|
Parent: "parent",
|
2017-02-14 19:00:06 +01:00
|
|
|
},
|
|
|
|
},
|
2018-06-09 20:14:38 +02:00
|
|
|
BaseDir: "testdata",
|
2018-06-09 16:23:09 +02:00
|
|
|
ImportedVars: make(map[string]interface{}, 0),
|
|
|
|
ExplicitVars: make(map[string]interface{}, 0),
|
2017-02-14 19:00:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(*ctx, expected) {
|
|
|
|
t.Error("Loaded and expected context did not match")
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSubresourceVariableInheritanceOverride(t *testing.T) {
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, err := LoadContext("testdata/parent-variable-override.yaml", &noExplicitVars)
|
2017-02-14 19:00:06 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := Context{
|
|
|
|
Name: "k8s.prod.mydomain.com",
|
|
|
|
ResourceSets: []ResourceSet{
|
|
|
|
{
|
|
|
|
Name: "parent/child",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/parent/child",
|
2017-02-14 19:00:06 +01:00
|
|
|
Values: map[string]interface{}{
|
|
|
|
"foo": "newvalue",
|
|
|
|
},
|
|
|
|
Include: nil,
|
2017-02-20 14:25:39 +01:00
|
|
|
Parent: "parent",
|
2017-02-14 19:00:06 +01:00
|
|
|
},
|
|
|
|
},
|
2018-06-09 20:14:38 +02:00
|
|
|
BaseDir: "testdata",
|
2018-06-09 16:23:09 +02:00
|
|
|
ImportedVars: make(map[string]interface{}, 0),
|
|
|
|
ExplicitVars: make(map[string]interface{}, 0),
|
2017-02-14 19:00:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(*ctx, expected) {
|
|
|
|
t.Error("Loaded and expected context did not match")
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
2017-04-04 14:28:22 +02:00
|
|
|
|
|
|
|
func TestDefaultValuesLoading(t *testing.T) {
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, err := LoadContext("testdata/default-loading.yaml", &noExplicitVars)
|
2017-04-04 14:28:22 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
rs := ctx.ResourceSets[0]
|
|
|
|
if rs.Values["defaultValues"] != "loaded" {
|
|
|
|
t.Errorf("Default values not loaded from YAML file")
|
|
|
|
t.Fail()
|
|
|
|
}
|
2017-04-04 14:38:00 +02:00
|
|
|
|
|
|
|
if rs.Values["override"] != "notAtAll" {
|
|
|
|
t.Error("Default values should not override other values")
|
|
|
|
t.Fail()
|
|
|
|
}
|
2017-04-04 14:28:22 +02:00
|
|
|
}
|
2017-06-22 17:01:36 +02:00
|
|
|
|
|
|
|
func TestImportValuesLoading(t *testing.T) {
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, err := LoadContext("testdata/import-vars-simple.yaml", &noExplicitVars)
|
2017-06-22 17:01:36 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := map[string]interface{}{
|
|
|
|
"override": "true",
|
|
|
|
"music": map[string]interface{}{
|
|
|
|
"artist": "Pallida",
|
|
|
|
"track": "Tractor Beam",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-06-09 16:23:09 +02:00
|
|
|
if !reflect.DeepEqual(ctx.ImportedVars, expected) {
|
|
|
|
t.Error("Expected imported values after loading imports did not match!")
|
2017-06-22 17:01:36 +02:00
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 15:57:18 +02:00
|
|
|
func TestExplicitPathLoading(t *testing.T) {
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, err := LoadContext("testdata/explicit-path.yaml", &noExplicitVars)
|
2017-07-13 15:57:18 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := Context{
|
|
|
|
Name: "k8s.prod.mydomain.com",
|
|
|
|
ResourceSets: []ResourceSet{
|
|
|
|
{
|
|
|
|
Name: "some-api-europe",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/some-api",
|
2017-07-13 15:57:18 +02:00
|
|
|
Values: map[string]interface{}{
|
|
|
|
"location": "europe",
|
|
|
|
},
|
|
|
|
Include: nil,
|
|
|
|
Parent: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "some-api-asia",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/some-api",
|
2017-07-13 15:57:18 +02:00
|
|
|
Values: map[string]interface{}{
|
|
|
|
"location": "asia",
|
|
|
|
},
|
|
|
|
Include: nil,
|
|
|
|
Parent: "",
|
|
|
|
},
|
|
|
|
},
|
2018-06-09 20:14:38 +02:00
|
|
|
BaseDir: "testdata",
|
2018-06-09 16:23:09 +02:00
|
|
|
ImportedVars: make(map[string]interface{}, 0),
|
|
|
|
ExplicitVars: make(map[string]interface{}, 0),
|
2017-07-13 15:57:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(*ctx, expected) {
|
|
|
|
t.Error("Loaded context and expected context did not match")
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestExplicitSubresourcePathLoading(t *testing.T) {
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, err := LoadContext("testdata/explicit-subresource-path.yaml", &noExplicitVars)
|
2017-07-13 15:57:18 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := Context{
|
|
|
|
Name: "k8s.prod.mydomain.com",
|
|
|
|
ResourceSets: []ResourceSet{
|
|
|
|
{
|
|
|
|
Name: "parent/child",
|
2019-09-04 11:56:07 +02:00
|
|
|
Path: "testdata/parent-path/child-path",
|
2017-07-13 15:57:18 +02:00
|
|
|
Parent: "parent",
|
2018-06-09 16:23:09 +02:00
|
|
|
Values: make(map[string]interface{}, 0),
|
2017-07-13 15:57:18 +02:00
|
|
|
},
|
|
|
|
},
|
2018-06-09 20:14:38 +02:00
|
|
|
BaseDir: "testdata",
|
2018-06-09 16:23:09 +02:00
|
|
|
ImportedVars: make(map[string]interface{}, 0),
|
|
|
|
ExplicitVars: make(map[string]interface{}, 0),
|
2017-07-13 15:57:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(*ctx, expected) {
|
|
|
|
t.Error("Loaded context and expected context did not match")
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
2018-05-30 21:43:31 +02:00
|
|
|
|
|
|
|
func TestSetVariablesFromArguments(t *testing.T) {
|
|
|
|
vars := []string{"version=some-service-version"}
|
2018-06-09 16:23:09 +02:00
|
|
|
ctx, _ := LoadContext("testdata/default-loading.yaml", &vars)
|
2018-05-30 21:43:31 +02:00
|
|
|
|
2018-06-09 16:23:09 +02:00
|
|
|
if version := ctx.ExplicitVars["version"]; version != "some-service-version" {
|
2018-05-30 21:43:31 +02:00
|
|
|
t.Errorf(`Expected variable "version" to have value "some-service-version" but was "%s"`, version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetInvalidVariablesFromArguments(t *testing.T) {
|
|
|
|
vars := []string{"version: some-service-version"}
|
2018-06-09 16:23:09 +02:00
|
|
|
_, err := LoadContext("testdata/default-loading.yaml", &vars)
|
2018-05-30 21:43:31 +02:00
|
|
|
|
2018-06-09 16:23:09 +02:00
|
|
|
if err == nil {
|
2018-05-30 21:43:31 +02:00
|
|
|
t.Error("Expected invalid variable to return an error")
|
|
|
|
}
|
|
|
|
}
|
2018-06-26 12:25:55 +02:00
|
|
|
|
|
|
|
// This test ensures that variables are merged in the correct order.
|
|
|
|
// Please consult the test data in `testdata/merging`.
|
|
|
|
func TestValueMergePrecedence(t *testing.T) {
|
|
|
|
cliVars:= []string{"cliVar=cliVar"}
|
|
|
|
ctx, _ := LoadContext("testdata/merging/context.yaml", &cliVars)
|
|
|
|
|
|
|
|
expected := map[string]interface{}{
|
|
|
|
"defaultVar": "defaultVar",
|
|
|
|
"importVar": "importVar",
|
|
|
|
"globalVar": "globalVar",
|
|
|
|
"includeVar": "includeVar",
|
|
|
|
"cliVar": "cliVar",
|
|
|
|
}
|
|
|
|
|
|
|
|
result := ctx.ResourceSets[0].Values
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(expected, result) {
|
|
|
|
t.Errorf("Merged values did not match expected result: \n%v", result)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|