mirror of
https://github.com/rancher/os.git
synced 2025-06-23 21:47:03 +00:00
285 lines
6.1 KiB
Go
285 lines
6.1 KiB
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"gopkg.in/yaml.v2"
|
|
"testing"
|
|
|
|
"github.com/rancherio/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",
|
|
},
|
|
},
|
|
"user_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{}{
|
|
"user_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 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",
|
|
},
|
|
},
|
|
"user_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{}{
|
|
"user_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 {
|
|
assert.Equal(v, getOrSetVal(k, data, nil))
|
|
}
|
|
}
|
|
|
|
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 {
|
|
getOrSetVal(k, data, v)
|
|
assert.Equal(v, getOrSetVal(k, data, nil))
|
|
}
|
|
|
|
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) {
|
|
one := `
|
|
one:
|
|
two: true`
|
|
two := `
|
|
one:
|
|
three: true`
|
|
|
|
data := make(map[string]map[string]bool)
|
|
yaml.Unmarshal([]byte(one), data)
|
|
yaml.Unmarshal([]byte(two), data)
|
|
|
|
if _, ok := data["one"]; !ok {
|
|
t.Fatal("one not found")
|
|
}
|
|
|
|
if !data["one"]["three"] {
|
|
t.Fatal("three not found")
|
|
}
|
|
|
|
if data["one"]["two"] {
|
|
t.Fatal("two not found")
|
|
}
|
|
|
|
data2 := &OuterData{}
|
|
yaml.Unmarshal([]byte(one), data2)
|
|
yaml.Unmarshal([]byte(two), data2)
|
|
|
|
if !data2.One.Three {
|
|
t.Fatal("three not found")
|
|
}
|
|
|
|
if !data2.One.Two {
|
|
t.Fatal("two not found")
|
|
}
|
|
|
|
}
|
|
|
|
func TestUserDocker(t *testing.T) {
|
|
assert := require.New(t)
|
|
|
|
config := &CloudConfig{
|
|
Rancher: RancherConfig{
|
|
UserDocker: DockerConfig{
|
|
TLS: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
bytes, err := yaml.Marshal(config)
|
|
assert.Nil(err)
|
|
|
|
config = NewConfig()
|
|
err = yaml.Unmarshal(bytes, config)
|
|
assert.Nil(err)
|
|
|
|
data := make(map[interface{}]map[interface{}]interface{})
|
|
util.Convert(config, data)
|
|
|
|
fmt.Println(data)
|
|
|
|
val, ok := data["rancher"]["user_docker"]
|
|
assert.True(ok)
|
|
|
|
m, ok := val.(map[interface{}]interface{})
|
|
assert.True(ok)
|
|
v, ok := m["tls"]
|
|
assert.True(ok)
|
|
assert.True(v.(bool))
|
|
|
|
}
|