-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcontroller_test.go
92 lines (82 loc) · 2.36 KB
/
controller_test.go
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Copyright 2016 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package names_test
import (
gc "gopkg.in/check.v1"
"github.com/juju/names/v6"
)
type controllerSuite struct{}
var _ = gc.Suite(&controllerSuite{})
var parseControllerTagTests = []struct {
title string
tag string
expected names.Tag
err error
}{{
title: "empty tag fails",
tag: "",
err: names.InvalidTagError("", ""),
}, {
title: "valid controller-<uuid> tag",
tag: "controller-f47ac10b-58cc-4372-a567-0e02b2c3d479",
expected: names.NewControllerTag("f47ac10b-58cc-4372-a567-0e02b2c3d479"),
}, {
title: "invalid controller tag one word",
tag: "dave",
err: names.InvalidTagError("dave", ""),
}, {
title: "invalid controller tag prefix only",
tag: "controller-",
err: names.InvalidTagError("controller-", names.ControllerTagKind),
}, {
title: "invalid controller tag hyphen separated words",
tag: "application-dave",
err: names.InvalidTagError("application-dave", names.ControllerTagKind),
}, {
title: "invalid controller tag non hyphen separated prefix",
tag: "controllerf47ac10b-58cc-4372-a567-0e02b2c3d479",
err: names.InvalidTagError("controllerf47ac10b-58cc-4372-a567-0e02b2c3d479", ""),
}, {
title: "invalid controller tag non hyphen separated terms",
tag: "controllerf47ac10b58cc4372a5670e02b2c3d479",
err: names.InvalidTagError("controllerf47ac10b58cc4372a5670e02b2c3d479", ""),
}}
func (s *controllerSuite) TestParseControllerTag(c *gc.C) {
for i, t := range parseControllerTagTests {
c.Logf("test %d: %q %s", i, t.title, t.tag)
got, err := names.ParseControllerTag(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)
}
}
var controllerNameTest = []struct {
test string
name string
expected bool
}{{
test: "Hyphenated true",
name: "foo-bar",
expected: true,
}, {
test: "Whitespsce false",
name: "foo bar",
expected: false,
}, {
test: "Capital false",
name: "fooBar",
expected: false,
}, {
test: "At sign false",
name: "foo@bar",
expected: false,
}}
func (s *controllerSuite) TestControllerName(c *gc.C) {
for i, t := range controllerNameTest {
c.Logf("test %d: %q", i, t.name)
c.Check(names.IsValidControllerName(t.name), gc.Equals, t.expected)
}
}