70 lines
1.4 KiB
Go
70 lines
1.4 KiB
Go
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package supervisor
|
||
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
|
||
|
"go.pinniped.dev/internal/here"
|
||
|
)
|
||
|
|
||
|
func TestFromPath(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
yaml string
|
||
|
wantConfig *Config
|
||
|
}{
|
||
|
{
|
||
|
name: "Happy",
|
||
|
yaml: here.Doc(`
|
||
|
---
|
||
|
labels:
|
||
|
myLabelKey1: myLabelValue1
|
||
|
myLabelKey2: myLabelValue2
|
||
|
`),
|
||
|
wantConfig: &Config{
|
||
|
Labels: map[string]string{
|
||
|
"myLabelKey1": "myLabelValue1",
|
||
|
"myLabelKey2": "myLabelValue2",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name: "When only the required fields are present, causes other fields to be defaulted",
|
||
|
yaml: here.Doc(`
|
||
|
---
|
||
|
`),
|
||
|
wantConfig: &Config{
|
||
|
Labels: map[string]string{},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, test := range tests {
|
||
|
test := test
|
||
|
t.Run(test.name, func(t *testing.T) {
|
||
|
// Write yaml to temp file
|
||
|
f, err := ioutil.TempFile("", "pinniped-test-config-yaml-*")
|
||
|
require.NoError(t, err)
|
||
|
defer func() {
|
||
|
err := os.Remove(f.Name())
|
||
|
require.NoError(t, err)
|
||
|
}()
|
||
|
_, err = f.WriteString(test.yaml)
|
||
|
require.NoError(t, err)
|
||
|
err = f.Close()
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
// Test FromPath()
|
||
|
config, err := FromPath(f.Name())
|
||
|
|
||
|
require.NoError(t, err)
|
||
|
require.Equal(t, test.wantConfig, config)
|
||
|
})
|
||
|
}
|
||
|
}
|