41 lines
795 B
Go
41 lines
795 B
Go
|
package system
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/coreos/coreos-cloudinit/config"
|
||
|
)
|
||
|
|
||
|
func TestFlannelUnits(t *testing.T) {
|
||
|
for _, tt := range []struct {
|
||
|
config config.Flannel
|
||
|
units []Unit
|
||
|
}{
|
||
|
{
|
||
|
config.Flannel{},
|
||
|
nil,
|
||
|
},
|
||
|
{
|
||
|
config.Flannel{
|
||
|
EtcdEndpoint: "http://12.34.56.78:4001",
|
||
|
EtcdPrefix: "/coreos.com/network/tenant1",
|
||
|
},
|
||
|
[]Unit{{config.Unit{
|
||
|
Name: "flannel.service",
|
||
|
Content: `[Service]
|
||
|
Environment="FLANNELD_ETCD_ENDPOINT=http://12.34.56.78:4001"
|
||
|
Environment="FLANNELD_ETCD_PREFIX=/coreos.com/network/tenant1"
|
||
|
`,
|
||
|
Runtime: true,
|
||
|
DropIn: true,
|
||
|
}}},
|
||
|
},
|
||
|
} {
|
||
|
units := Flannel{tt.config}.Units()
|
||
|
if !reflect.DeepEqual(units, tt.units) {
|
||
|
t.Errorf("bad units (%q): want %v, got %v", tt.config, tt.units, units)
|
||
|
}
|
||
|
}
|
||
|
}
|