d630b55235
* Few more minor changes to increase test coverage Change-Id: Id34a33732d3201637027cb3eb512a245acbd77b5
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
/*
|
|
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
|
|
|
|
https://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 util_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"opendev.org/airship/airshipctl/pkg/util"
|
|
)
|
|
|
|
func TestReadYAMLFile(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
var actual map[string]interface{}
|
|
|
|
tests := []struct {
|
|
testFile string
|
|
isError bool
|
|
}{
|
|
{"testdata/test.yaml", false},
|
|
{"testdata/incorrect.yaml", true},
|
|
{"testdata/notfound.yaml", true},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
err := util.ReadYAMLFile(test.testFile, &actual)
|
|
if test.isError {
|
|
assert.Error(err)
|
|
} else {
|
|
assert.NoError(err)
|
|
}
|
|
}
|
|
}
|