mirror of https://github.com/pulumi/pulumi.git
97 lines
2.4 KiB
Go
97 lines
2.4 KiB
Go
// Copyright 2016-2018, Pulumi Corporation.
|
|
//
|
|
// 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 config
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
yaml "gopkg.in/yaml.v2"
|
|
)
|
|
|
|
func TestParseKey(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
k, err := ParseKey("test:config:key")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "test", k.namespace)
|
|
assert.Equal(t, "key", k.name)
|
|
|
|
k, err = ParseKey("test:key")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "test", k.namespace)
|
|
assert.Equal(t, "key", k.name)
|
|
|
|
_, err = ParseKey("foo")
|
|
assert.ErrorContains(t, err,
|
|
"could not parse foo as a configuration key "+
|
|
"(configuration keys should be of the form `<namespace>:<name>`)")
|
|
|
|
_, err = ParseKey("test:data:key")
|
|
assert.ErrorContains(t, err,
|
|
"could not parse test:data:key as a configuration key "+
|
|
"(configuration keys should be of the form `<namespace>:<name>`)")
|
|
}
|
|
|
|
func TestMarshalKeyJSON(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
k := Key{namespace: "test", name: "key"}
|
|
|
|
b, err := json.Marshal(k)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []byte("\"test:key\""), b)
|
|
|
|
newK, err := roundtripKeyJSON(k)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, k, newK)
|
|
}
|
|
|
|
func TestMarshalKeyYAML(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
k := Key{namespace: "test", name: "key"}
|
|
|
|
b, err := yaml.Marshal(k)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []byte("test:key\n"), b)
|
|
|
|
newK, err := roundtripKeyYAML(k)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, k, newK)
|
|
}
|
|
|
|
func roundtripKeyYAML(k Key) (Key, error) {
|
|
return roundtripKey(k, yaml.Marshal, yaml.Unmarshal)
|
|
}
|
|
|
|
func roundtripKeyJSON(k Key) (Key, error) {
|
|
return roundtripKey(k, json.Marshal, json.Unmarshal)
|
|
}
|
|
|
|
func roundtripKey(m Key, marshal func(v interface{}) ([]byte, error),
|
|
unmarshal func([]byte, interface{}) error,
|
|
) (Key, error) {
|
|
b, err := marshal(m)
|
|
if err != nil {
|
|
return Key{}, err
|
|
}
|
|
|
|
var newM Key
|
|
err = unmarshal(b, &newM)
|
|
return newM, err
|
|
}
|