1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
// Copyright 2014 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package names_test
import (
gc "gopkg.in/check.v1"
"github.com/juju/names/v4"
)
type environSuite struct{}
var _ = gc.Suite(&environSuite{})
var parseEnvironTagTests = []struct {
tag string
expected names.Tag
err error
}{{
tag: "",
err: names.InvalidTagError("", ""),
}, {
tag: "environment-f47ac10b-58cc-4372-a567-0e02b2c3d479",
expected: names.NewEnvironTag("f47ac10b-58cc-4372-a567-0e02b2c3d479"),
}, {
tag: "dave",
err: names.InvalidTagError("dave", ""),
//}, {
// TODO(dfc) passes, but should not
// tag: "environment-",
// err: names.InvalidTagError("environment", ""),
}, {
tag: "application-dave",
err: names.InvalidTagError("application-dave", names.EnvironTagKind),
}}
func (s *environSuite) TestParseEnvironTag(c *gc.C) {
for i, t := range parseEnvironTagTests {
c.Logf("test %d: %s", i, t.tag)
got, err := names.ParseEnvironTag(t.tag)
if err != nil || t.err != nil {
c.Check(err, gc.DeepEquals, t.err)
continue
}
c.Check(got, gc.FitsTypeOf, t.expected)
c.Check(got, gc.Equals, t.expected)
}
}
|