blob: 20508762ef791db2fae00eb4517b037599a42936 [file] [log] [blame]
// Copyright 2019 The LUCI Authors.
//
// 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.
package config
import (
"context"
"testing"
"go.chromium.org/luci/config/validation"
. "github.com/smartystreets/goconvey/convey"
. "go.chromium.org/luci/common/testing/assertions"
)
func TestVM(t *testing.T) {
t.Parallel()
Convey("VM", t, func() {
Convey("SetZone", func() {
Convey("no replacement", func() {
vm := &VM{
Disk: []*Disk{
{
Type: "zones/zone/diskTypes/type",
},
},
MachineType: "type",
}
vm.SetZone("zone")
So(vm.Disk[0].Type, ShouldEqual, "zones/zone/diskTypes/type")
So(vm.MachineType, ShouldEqual, "type")
So(vm.Zone, ShouldEqual, "zone")
})
Convey("replacement", func() {
Convey("disk type", func() {
vm := &VM{
Disk: []*Disk{
{
Type: "zones/{{.Zone}}/diskTypes/type",
},
},
MachineType: "type",
}
vm.SetZone("zone")
So(vm.Disk[0].Type, ShouldEqual, "zones/zone/diskTypes/type")
So(vm.MachineType, ShouldEqual, "type")
So(vm.Zone, ShouldEqual, "zone")
})
Convey("machine type", func() {
vm := &VM{
Disk: []*Disk{
{
Type: "zones/zone/diskTypes/type",
},
},
MachineType: "{{.Zone}}/type",
}
vm.SetZone("zone")
So(vm.Disk[0].Type, ShouldEqual, "zones/zone/diskTypes/type")
So(vm.MachineType, ShouldEqual, "zone/type")
So(vm.Zone, ShouldEqual, "zone")
})
Convey("multiple", func() {
vm := &VM{
Disk: []*Disk{
{
Type: "zones/{{.Zone}}/diskTypes/type-1",
},
{
Type: "zones/{{.Zone}}/diskTypes/type-2",
},
},
MachineType: "{{.Zone}}/type",
}
vm.SetZone("zone")
So(vm.Disk[0].Type, ShouldEqual, "zones/zone/diskTypes/type-1")
So(vm.Disk[1].Type, ShouldEqual, "zones/zone/diskTypes/type-2")
So(vm.MachineType, ShouldEqual, "zone/type")
So(vm.Zone, ShouldEqual, "zone")
})
})
})
Convey("Validate", func() {
c := &validation.Context{Context: context.Background()}
Convey("invalid", func() {
Convey("empty", func() {
vm := &VM{}
vm.Validate(c)
err := c.Finalize().(*validation.Error).Errors
So(err, ShouldContainErr, "at least one disk is required")
So(err, ShouldContainErr, "machine type is required")
So(err, ShouldContainErr, "at least one network interface is required")
So(err, ShouldContainErr, "project is required")
So(err, ShouldContainErr, "zone is required")
})
Convey("metadata", func() {
Convey("format", func() {
vm := &VM{
Metadata: []*Metadata{
{},
},
}
vm.Validate(c)
err := c.Finalize().(*validation.Error).Errors
So(err, ShouldContainErr, "metadata from text must be in key:value form")
})
Convey("file", func() {
vm := &VM{
Metadata: []*Metadata{
{
Metadata: &Metadata_FromFile{
FromFile: "key:file",
},
},
},
}
vm.Validate(c)
err := c.Finalize().(*validation.Error).Errors
So(err, ShouldContainErr, "metadata from text must be in key:value form")
})
})
})
Convey("valid", func() {
vm := &VM{
Disk: []*Disk{
{
Image: "global/images/image",
Type: "zones/{{.Zone}}/diskTypes/type",
},
},
MachineType: "type",
Metadata: []*Metadata{
{
Metadata: &Metadata_FromText{
FromText: "key:value",
},
},
},
NetworkInterface: []*NetworkInterface{
{},
},
Project: "project",
Zone: "zone",
}
vm.Validate(c)
So(c.Finalize(), ShouldBeNil)
})
})
})
}