38 lines
666 B
Go
38 lines
666 B
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestPrlctlConfigPrepare_Prlctl(t *testing.T) {
|
||
|
// Test with empty
|
||
|
c := new(PrlctlConfig)
|
||
|
errs := c.Prepare(testConfigTemplate(t))
|
||
|
if len(errs) > 0 {
|
||
|
t.Fatalf("err: %#v", errs)
|
||
|
}
|
||
|
|
||
|
if !reflect.DeepEqual(c.Prlctl, [][]string{}) {
|
||
|
t.Fatalf("bad: %#v", c.Prlctl)
|
||
|
}
|
||
|
|
||
|
// Test with a good one
|
||
|
c = new(PrlctlConfig)
|
||
|
c.Prlctl = [][]string{
|
||
|
{"foo", "bar", "baz"},
|
||
|
}
|
||
|
errs = c.Prepare(testConfigTemplate(t))
|
||
|
if len(errs) > 0 {
|
||
|
t.Fatalf("err: %#v", errs)
|
||
|
}
|
||
|
|
||
|
expected := [][]string{
|
||
|
[]string{"foo", "bar", "baz"},
|
||
|
}
|
||
|
|
||
|
if !reflect.DeepEqual(c.Prlctl, expected) {
|
||
|
t.Fatalf("bad: %#v", c.Prlctl)
|
||
|
}
|
||
|
}
|