blob: 16e2e9d808d388e1fcf8b488ff89ae48666d9fe4 [file] [log] [blame]
// Copyright 2016 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 (
"testing"
. "github.com/smartystreets/goconvey/convey"
. "go.chromium.org/luci/common/testing/assertions"
)
func TestConfigSet(t *testing.T) {
t.Parallel()
Convey(`Testing config set utility methods`, t, func() {
ss, err := ServiceSet("my-service")
So(err, ShouldBeNil)
So(ss.Validate(), ShouldBeNil)
So(ss, ShouldEqual, Set("services/my-service"))
ps, err := ProjectSet("my-project")
So(err, ShouldBeNil)
So(ps.Validate(), ShouldBeNil)
So(ps, ShouldEqual, Set("projects/my-project"))
s := MustServiceSet("foo")
So(s.Service(), ShouldEqual, "foo")
So(s.Project(), ShouldEqual, "")
So(s.Domain(), ShouldEqual, ServiceDomain)
s = MustProjectSet("foo")
So(s.Service(), ShouldEqual, "")
So(s.Project(), ShouldEqual, "foo")
So(s.Domain(), ShouldEqual, ProjectDomain)
s = Set("malformed/set/abc/def")
So(s.Validate(), ShouldErrLike, "unknown domain \"malformed\" for config set \"malformed/set/abc/def\"; currently supported domains [projects, services]")
So(s.Service(), ShouldEqual, "")
So(s.Project(), ShouldEqual, "")
s, err = ServiceSet("malformed/service/set/abc")
So(err, ShouldErrLike, "invalid service name \"malformed/service/set/abc\", expected to match")
So(s, ShouldBeEmpty)
So(Set("services/malformed/service/set/abc").Validate(), ShouldErrLike, err)
s, err = ProjectSet("malformed/project/set/abc")
So(err, ShouldErrLike, "invalid project name: invalid character")
So(s, ShouldBeEmpty)
So(Set("projects/malformed/service/set/abc").Validate(), ShouldErrLike, err)
So(Set("/abc").Validate(), ShouldErrLike, "can not extract domain from config set \"/abc\". expected syntax \"domain/target\"")
So(Set("unknown/abc").Validate(), ShouldErrLike, "unknown domain \"unknown\" for config set \"unknown/abc\"")
})
}