2015-01-25 06:32:33 +03:00
|
|
|
// Copyright 2015 CoreOS, Inc.
|
|
|
|
//
|
|
|
|
// 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.
|
2014-10-18 02:36:22 +04:00
|
|
|
|
2014-03-18 20:00:41 +04:00
|
|
|
package initialize
|
2014-03-05 04:36:05 +04:00
|
|
|
|
|
|
|
import (
|
2014-11-25 04:05:36 +03:00
|
|
|
"reflect"
|
2014-03-05 04:36:05 +04:00
|
|
|
"testing"
|
2014-06-06 04:40:53 +04:00
|
|
|
|
2015-11-09 11:24:52 +03:00
|
|
|
"github.com/coreos/coreos-cloudinit/config"
|
|
|
|
"github.com/coreos/coreos-cloudinit/network"
|
|
|
|
"github.com/coreos/coreos-cloudinit/system"
|
2014-03-05 04:36:05 +04:00
|
|
|
)
|
|
|
|
|
2014-06-06 04:40:53 +04:00
|
|
|
type TestUnitManager struct {
|
|
|
|
placed []string
|
|
|
|
enabled []string
|
|
|
|
masked []string
|
|
|
|
unmasked []string
|
2014-12-02 23:46:35 +03:00
|
|
|
commands []UnitAction
|
2014-06-06 04:40:53 +04:00
|
|
|
reload bool
|
|
|
|
}
|
|
|
|
|
2014-12-02 23:46:35 +03:00
|
|
|
type UnitAction struct {
|
|
|
|
unit string
|
|
|
|
command string
|
|
|
|
}
|
|
|
|
|
2014-11-25 03:42:31 +03:00
|
|
|
func (tum *TestUnitManager) PlaceUnit(u system.Unit) error {
|
|
|
|
tum.placed = append(tum.placed, u.Name)
|
2014-06-06 04:40:53 +04:00
|
|
|
return nil
|
|
|
|
}
|
2014-11-26 03:57:15 +03:00
|
|
|
func (tum *TestUnitManager) PlaceUnitDropIn(u system.Unit, d config.UnitDropIn) error {
|
|
|
|
tum.placed = append(tum.placed, u.Name+".d/"+d.Name)
|
|
|
|
return nil
|
|
|
|
}
|
2014-11-25 03:42:31 +03:00
|
|
|
func (tum *TestUnitManager) EnableUnitFile(u system.Unit) error {
|
|
|
|
tum.enabled = append(tum.enabled, u.Name)
|
2014-06-06 04:40:53 +04:00
|
|
|
return nil
|
|
|
|
}
|
2014-11-25 03:42:31 +03:00
|
|
|
func (tum *TestUnitManager) RunUnitCommand(u system.Unit, c string) (string, error) {
|
2014-12-02 23:46:35 +03:00
|
|
|
tum.commands = append(tum.commands, UnitAction{u.Name, c})
|
2014-06-06 04:40:53 +04:00
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
func (tum *TestUnitManager) DaemonReload() error {
|
|
|
|
tum.reload = true
|
|
|
|
return nil
|
|
|
|
}
|
2014-11-25 03:42:31 +03:00
|
|
|
func (tum *TestUnitManager) MaskUnit(u system.Unit) error {
|
|
|
|
tum.masked = append(tum.masked, u.Name)
|
2014-06-06 04:40:53 +04:00
|
|
|
return nil
|
|
|
|
}
|
2014-11-25 03:42:31 +03:00
|
|
|
func (tum *TestUnitManager) UnmaskUnit(u system.Unit) error {
|
|
|
|
tum.unmasked = append(tum.unmasked, u.Name)
|
2014-06-06 04:40:53 +04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-14 02:44:48 +04:00
|
|
|
type mockInterface struct {
|
|
|
|
name string
|
|
|
|
filename string
|
|
|
|
netdev string
|
|
|
|
link string
|
|
|
|
network string
|
|
|
|
kind string
|
|
|
|
modprobeParams string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i mockInterface) Name() string {
|
|
|
|
return i.name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i mockInterface) Filename() string {
|
|
|
|
return i.filename
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i mockInterface) Netdev() string {
|
|
|
|
return i.netdev
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i mockInterface) Link() string {
|
|
|
|
return i.link
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i mockInterface) Network() string {
|
|
|
|
return i.network
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i mockInterface) Type() string {
|
|
|
|
return i.kind
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i mockInterface) ModprobeParams() string {
|
|
|
|
return i.modprobeParams
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCreateNetworkingUnits(t *testing.T) {
|
|
|
|
for _, tt := range []struct {
|
|
|
|
interfaces []network.InterfaceGenerator
|
|
|
|
expect []system.Unit
|
|
|
|
}{
|
|
|
|
{nil, nil},
|
|
|
|
{
|
|
|
|
[]network.InterfaceGenerator{
|
|
|
|
network.InterfaceGenerator(mockInterface{filename: "test"}),
|
|
|
|
},
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]network.InterfaceGenerator{
|
|
|
|
network.InterfaceGenerator(mockInterface{filename: "test1", netdev: "test netdev"}),
|
|
|
|
network.InterfaceGenerator(mockInterface{filename: "test2", link: "test link"}),
|
|
|
|
network.InterfaceGenerator(mockInterface{filename: "test3", network: "test network"}),
|
|
|
|
},
|
|
|
|
[]system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{Name: "test1.netdev", Runtime: true, Content: "test netdev"}},
|
|
|
|
system.Unit{Unit: config.Unit{Name: "test2.link", Runtime: true, Content: "test link"}},
|
|
|
|
system.Unit{Unit: config.Unit{Name: "test3.network", Runtime: true, Content: "test network"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]network.InterfaceGenerator{
|
|
|
|
network.InterfaceGenerator(mockInterface{filename: "test", netdev: "test netdev", link: "test link", network: "test network"}),
|
|
|
|
},
|
|
|
|
[]system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{Name: "test.netdev", Runtime: true, Content: "test netdev"}},
|
|
|
|
system.Unit{Unit: config.Unit{Name: "test.link", Runtime: true, Content: "test link"}},
|
|
|
|
system.Unit{Unit: config.Unit{Name: "test.network", Runtime: true, Content: "test network"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
} {
|
|
|
|
units := createNetworkingUnits(tt.interfaces)
|
|
|
|
if !reflect.DeepEqual(tt.expect, units) {
|
|
|
|
t.Errorf("bad units (%+v): want %#v, got %#v", tt.interfaces, tt.expect, units)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-06 04:40:53 +04:00
|
|
|
func TestProcessUnits(t *testing.T) {
|
2014-11-25 04:05:36 +03:00
|
|
|
tests := []struct {
|
|
|
|
units []system.Unit
|
2014-06-06 04:40:53 +04:00
|
|
|
|
2014-11-25 04:05:36 +03:00
|
|
|
result TestUnitManager
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
units: []system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
Name: "foo",
|
|
|
|
Mask: true,
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{
|
|
|
|
masked: []string{"foo"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
units: []system.Unit{
|
2014-12-02 23:46:35 +03:00
|
|
|
system.Unit{Unit: config.Unit{
|
2014-12-03 04:21:31 +03:00
|
|
|
Name: "baz.service",
|
|
|
|
Content: "[Service]\nExecStart=/bin/baz",
|
|
|
|
Command: "start",
|
|
|
|
}},
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
Name: "foo.network",
|
|
|
|
Content: "[Network]\nFoo=true",
|
2014-12-02 23:46:35 +03:00
|
|
|
}},
|
2014-11-25 04:05:36 +03:00
|
|
|
system.Unit{Unit: config.Unit{
|
2014-12-03 04:21:31 +03:00
|
|
|
Name: "bar.network",
|
|
|
|
Content: "[Network]\nBar=true",
|
2014-11-25 04:05:36 +03:00
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{
|
2014-12-03 04:21:31 +03:00
|
|
|
placed: []string{"baz.service", "foo.network", "bar.network"},
|
2014-12-02 23:46:35 +03:00
|
|
|
commands: []UnitAction{
|
|
|
|
UnitAction{"systemd-networkd.service", "restart"},
|
2014-12-03 04:21:31 +03:00
|
|
|
UnitAction{"baz.service", "start"},
|
2014-11-25 04:05:36 +03:00
|
|
|
},
|
2014-12-03 04:21:31 +03:00
|
|
|
reload: true,
|
2014-11-25 04:05:36 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
units: []system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
Name: "baz.service",
|
|
|
|
Content: "[Service]\nExecStart=/bin/true",
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{
|
|
|
|
placed: []string{"baz.service"},
|
|
|
|
reload: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
units: []system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
Name: "locksmithd.service",
|
|
|
|
Runtime: true,
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{
|
|
|
|
unmasked: []string{"locksmithd.service"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
units: []system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
Name: "woof",
|
|
|
|
Enable: true,
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{
|
|
|
|
enabled: []string{"woof"},
|
|
|
|
},
|
|
|
|
},
|
2014-11-26 03:57:15 +03:00
|
|
|
{
|
|
|
|
units: []system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
Name: "hi.service",
|
|
|
|
Runtime: true,
|
|
|
|
Content: "[Service]\nExecStart=/bin/echo hi",
|
|
|
|
DropIns: []config.UnitDropIn{
|
|
|
|
{
|
|
|
|
Name: "lo.conf",
|
|
|
|
Content: "[Service]\nExecStart=/bin/echo lo",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "bye.conf",
|
|
|
|
Content: "[Service]\nExecStart=/bin/echo bye",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{
|
|
|
|
placed: []string{"hi.service", "hi.service.d/lo.conf", "hi.service.d/bye.conf"},
|
|
|
|
unmasked: []string{"hi.service"},
|
|
|
|
reload: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
units: []system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
DropIns: []config.UnitDropIn{
|
|
|
|
{
|
|
|
|
Name: "lo.conf",
|
|
|
|
Content: "[Service]\nExecStart=/bin/echo lo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
units: []system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
Name: "hi.service",
|
|
|
|
DropIns: []config.UnitDropIn{
|
|
|
|
{
|
|
|
|
Content: "[Service]\nExecStart=/bin/echo lo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
units: []system.Unit{
|
|
|
|
system.Unit{Unit: config.Unit{
|
|
|
|
Name: "hi.service",
|
|
|
|
DropIns: []config.UnitDropIn{
|
|
|
|
{
|
|
|
|
Name: "lo.conf",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}},
|
|
|
|
},
|
|
|
|
result: TestUnitManager{},
|
|
|
|
},
|
2014-06-06 04:40:53 +04:00
|
|
|
}
|
|
|
|
|
2014-11-25 04:05:36 +03:00
|
|
|
for _, tt := range tests {
|
|
|
|
tum := &TestUnitManager{}
|
|
|
|
if err := processUnits(tt.units, "", tum); err != nil {
|
|
|
|
t.Errorf("bad error (%+v): want nil, got %s", tt.units, err)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(tt.result, *tum) {
|
|
|
|
t.Errorf("bad result (%+v): want %+v, got %+v", tt.units, tt.result, tum)
|
|
|
|
}
|
2014-06-06 04:40:53 +04:00
|
|
|
}
|
|
|
|
}
|