mirror of
https://github.com/rancher/os.git
synced 2025-07-03 18:16:13 +00:00
Stringify libcompose datatypes' leaf values to avoid unmarshaling errors, even on somewhat incorrect input data: like using bools or numerics in labels.
325 lines
7.5 KiB
Go
325 lines
7.5 KiB
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
yaml "github.com/cloudfoundry-incubator/candiedyaml"
|
|
"testing"
|
|
|
|
"github.com/rancher/os/util"
|
|
"github.com/stretchr/testify/require"
|
|
"strings"
|
|
)
|
|
|
|
func TestFilterKey(t *testing.T) {
|
|
assert := require.New(t)
|
|
data := map[interface{}]interface{}{
|
|
"ssh_authorized_keys": []string{"pubk1", "pubk2"},
|
|
"hostname": "ros-test",
|
|
"rancher": map[interface{}]interface{}{
|
|
"ssh": map[interface{}]interface{}{
|
|
"keys": map[interface{}]interface{}{
|
|
"dsa": "dsa-test1",
|
|
"dsa-pub": "dsa-test2",
|
|
},
|
|
},
|
|
"docker": map[interface{}]interface{}{
|
|
"ca_key": "ca_key-test3",
|
|
"ca_cert": "ca_cert-test4",
|
|
"args": []string{"args_test5"},
|
|
},
|
|
},
|
|
}
|
|
expectedFiltered := map[interface{}]interface{}{
|
|
"rancher": map[interface{}]interface{}{
|
|
"ssh": map[interface{}]interface{}{
|
|
"keys": map[interface{}]interface{}{
|
|
"dsa": "dsa-test1",
|
|
"dsa-pub": "dsa-test2",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
expectedRest := map[interface{}]interface{}{
|
|
"ssh_authorized_keys": []string{"pubk1", "pubk2"},
|
|
"hostname": "ros-test",
|
|
"rancher": map[interface{}]interface{}{
|
|
"docker": map[interface{}]interface{}{
|
|
"ca_key": "ca_key-test3",
|
|
"ca_cert": "ca_cert-test4",
|
|
"args": []string{"args_test5"},
|
|
},
|
|
},
|
|
}
|
|
filtered, rest := filterKey(data, []string{"rancher", "ssh"})
|
|
assert.Equal(expectedFiltered, filtered)
|
|
assert.Equal(expectedRest, rest)
|
|
}
|
|
|
|
func TestStringifyValues(t *testing.T) {
|
|
assert := require.New(t)
|
|
data := map[interface{}]interface{}{
|
|
"ssh_authorized_keys": []string{"pubk1", "pubk2"},
|
|
"hostname": "ros-test",
|
|
"rancher": map[interface{}]interface{}{
|
|
"services": map[interface{}]interface{}{
|
|
"my-service": map[interface{}]interface{}{
|
|
"command": []interface{}{"echo", 1, false, "nothing"},
|
|
"labels": map[interface{}]interface{}{
|
|
"some-bool": true,
|
|
"some-num": 42,
|
|
},
|
|
"dsa-pub": "dsa-test2",
|
|
},
|
|
},
|
|
"docker": map[interface{}]interface{}{
|
|
"ca_key": "ca_key-test3",
|
|
"ca_cert": "ca_cert-test4",
|
|
"args": []string{"args_test5"},
|
|
},
|
|
},
|
|
}
|
|
expected := map[interface{}]interface{}{
|
|
"ssh_authorized_keys": []string{"pubk1", "pubk2"},
|
|
"hostname": "ros-test",
|
|
"rancher": map[interface{}]interface{}{
|
|
"services": map[interface{}]interface{}{
|
|
"my-service": map[interface{}]interface{}{
|
|
"command": []interface{}{"echo", "1", "false", "nothing"},
|
|
"labels": map[interface{}]interface{}{
|
|
"some-bool": "true",
|
|
"some-num": "42",
|
|
},
|
|
"dsa-pub": "dsa-test2",
|
|
},
|
|
},
|
|
"docker": map[interface{}]interface{}{
|
|
"ca_key": "ca_key-test3",
|
|
"ca_cert": "ca_cert-test4",
|
|
"args": []string{"args_test5"},
|
|
},
|
|
},
|
|
}
|
|
assert.Equal(expected, StringifyValues(data))
|
|
}
|
|
|
|
func TestFilterDottedKeys(t *testing.T) {
|
|
assert := require.New(t)
|
|
|
|
data := map[interface{}]interface{}{
|
|
"ssh_authorized_keys": []string{"pubk1", "pubk2"},
|
|
"hostname": "ros-test",
|
|
"rancher": map[interface{}]interface{}{
|
|
"ssh": map[interface{}]interface{}{
|
|
"keys": map[interface{}]interface{}{
|
|
"dsa": "dsa-test1",
|
|
"dsa-pub": "dsa-test2",
|
|
},
|
|
},
|
|
"docker": map[interface{}]interface{}{
|
|
"ca_key": "ca_key-test3",
|
|
"ca_cert": "ca_cert-test4",
|
|
"args": []string{"args_test5"},
|
|
},
|
|
},
|
|
}
|
|
expectedFiltered := map[interface{}]interface{}{
|
|
"ssh_authorized_keys": []string{"pubk1", "pubk2"},
|
|
"rancher": map[interface{}]interface{}{
|
|
"ssh": map[interface{}]interface{}{
|
|
"keys": map[interface{}]interface{}{
|
|
"dsa": "dsa-test1",
|
|
"dsa-pub": "dsa-test2",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
expectedRest := map[interface{}]interface{}{
|
|
"hostname": "ros-test",
|
|
"rancher": map[interface{}]interface{}{
|
|
"docker": map[interface{}]interface{}{
|
|
"ca_key": "ca_key-test3",
|
|
"ca_cert": "ca_cert-test4",
|
|
"args": []string{"args_test5"},
|
|
},
|
|
},
|
|
}
|
|
|
|
assert.Equal([]string{"rancher", "ssh"}, strings.Split("rancher.ssh", "."))
|
|
assert.Equal([]string{"ssh_authorized_keys"}, strings.Split("ssh_authorized_keys", "."))
|
|
|
|
filtered, rest := filterDottedKeys(data, []string{"ssh_authorized_keys", "rancher.ssh"})
|
|
|
|
assert.Equal(expectedFiltered, filtered)
|
|
assert.Equal(expectedRest, rest)
|
|
}
|
|
|
|
func TestParseCmdline(t *testing.T) {
|
|
assert := require.New(t)
|
|
|
|
expected := map[interface{}]interface{}{
|
|
"rancher": map[interface{}]interface{}{
|
|
"rescue": true,
|
|
"key1": "value1",
|
|
"key2": "value2",
|
|
"keyArray": []string{"1", "2"},
|
|
"obj1": map[interface{}]interface{}{
|
|
"key3": "3value",
|
|
"obj2": map[interface{}]interface{}{
|
|
"key4": true,
|
|
},
|
|
},
|
|
"key5": 5,
|
|
},
|
|
}
|
|
|
|
actual := parseCmdline("a b rancher.rescue rancher.keyArray=[1,2] rancher.key1=value1 c rancher.key2=value2 rancher.obj1.key3=3value rancher.obj1.obj2.key4 rancher.key5=5")
|
|
|
|
assert.Equal(expected, actual)
|
|
}
|
|
|
|
func TestGet(t *testing.T) {
|
|
assert := require.New(t)
|
|
|
|
data := map[interface{}]interface{}{
|
|
"key": "value",
|
|
"rancher": map[interface{}]interface{}{
|
|
"key2": map[interface{}]interface{}{
|
|
"subkey": "subvalue",
|
|
"subnum": 42,
|
|
},
|
|
},
|
|
}
|
|
|
|
tests := map[string]interface{}{
|
|
"key": "value",
|
|
"rancher.key2.subkey": "subvalue",
|
|
"rancher.key2.subnum": 42,
|
|
"rancher.key2.subkey2": "",
|
|
"foo": "",
|
|
}
|
|
|
|
for k, v := range tests {
|
|
val, _ := getOrSetVal(k, data, nil)
|
|
assert.Equal(v, val)
|
|
}
|
|
}
|
|
|
|
func TestSet(t *testing.T) {
|
|
assert := require.New(t)
|
|
|
|
data := map[interface{}]interface{}{
|
|
"key": "value",
|
|
"rancher": map[interface{}]interface{}{
|
|
"key2": map[interface{}]interface{}{
|
|
"subkey": "subvalue",
|
|
"subnum": 42,
|
|
},
|
|
},
|
|
}
|
|
|
|
expected := map[interface{}]interface{}{
|
|
"key": "value2",
|
|
"rancher": map[interface{}]interface{}{
|
|
"key2": map[interface{}]interface{}{
|
|
"subkey": "subvalue2",
|
|
"subkey2": "value",
|
|
"subkey3": 43,
|
|
"subnum": 42,
|
|
},
|
|
"key3": map[interface{}]interface{}{
|
|
"subkey3": 44,
|
|
},
|
|
},
|
|
"key4": "value4",
|
|
}
|
|
|
|
tests := map[string]interface{}{
|
|
"key": "value2",
|
|
"rancher.key2.subkey": "subvalue2",
|
|
"rancher.key2.subkey2": "value",
|
|
"rancher.key2.subkey3": 43,
|
|
"rancher.key3.subkey3": 44,
|
|
"key4": "value4",
|
|
}
|
|
|
|
for k, v := range tests {
|
|
_, tData := getOrSetVal(k, data, v)
|
|
val, _ := getOrSetVal(k, tData, nil)
|
|
data = tData
|
|
assert.Equal(v, val)
|
|
}
|
|
|
|
assert.Equal(expected, data)
|
|
}
|
|
|
|
type OuterData struct {
|
|
One Data `"yaml:one"`
|
|
}
|
|
|
|
type Data struct {
|
|
Two bool `"yaml:two"`
|
|
Three bool `"yaml:three"`
|
|
}
|
|
|
|
func TestMapMerge(t *testing.T) {
|
|
assert := require.New(t)
|
|
one := `
|
|
one:
|
|
two: true`
|
|
two := `
|
|
one:
|
|
three: true`
|
|
|
|
data := map[string]map[string]bool{}
|
|
yaml.Unmarshal([]byte(one), &data)
|
|
yaml.Unmarshal([]byte(two), &data)
|
|
|
|
assert.NotNil(data["one"])
|
|
assert.True(data["one"]["three"])
|
|
assert.False(data["one"]["two"])
|
|
|
|
data2 := &OuterData{}
|
|
yaml.Unmarshal([]byte(one), data2)
|
|
yaml.Unmarshal([]byte(two), data2)
|
|
|
|
assert.True(data2.One.Three)
|
|
assert.True(data2.One.Two)
|
|
}
|
|
|
|
func TestUserDocker(t *testing.T) {
|
|
assert := require.New(t)
|
|
|
|
config := &CloudConfig{
|
|
Rancher: RancherConfig{
|
|
Docker: DockerConfig{
|
|
TLS: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
bytes, err := yaml.Marshal(config)
|
|
assert.Nil(err)
|
|
|
|
config = &CloudConfig{}
|
|
assert.False(config.Rancher.Docker.TLS)
|
|
err = yaml.Unmarshal(bytes, config)
|
|
assert.Nil(err)
|
|
assert.True(config.Rancher.Docker.TLS)
|
|
|
|
data := map[interface{}]interface{}{}
|
|
err = util.Convert(config, &data)
|
|
assert.Nil(err)
|
|
|
|
fmt.Println(data)
|
|
|
|
val, ok := data["rancher"].(map[interface{}]interface{})["docker"]
|
|
assert.True(ok)
|
|
|
|
m, ok := val.(map[interface{}]interface{})
|
|
assert.True(ok)
|
|
v, ok := m["tls"]
|
|
assert.True(ok)
|
|
assert.True(v.(bool))
|
|
|
|
}
|