forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor_test.go
63 lines (55 loc) · 1.75 KB
/
color_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
package flag_test
import (
. "code.cloudfoundry.org/cli/command/flag"
flags "github.com/jessevdk/go-flags"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
)
var _ = Describe("Color", func() {
var color Color
Describe("Complete", func() {
DescribeTable("returns list of completions",
func(prefix string, matches []flags.Completion) {
completions := color.Complete(prefix)
Expect(completions).To(Equal(matches))
},
Entry("completes to 'true' when passed 't'", "t",
[]flags.Completion{{Item: "true"}}),
Entry("completes to 'false' when passed 'f'", "f",
[]flags.Completion{{Item: "false"}}),
Entry("completes to 'true' when passed 'tR'", "tR",
[]flags.Completion{{Item: "true"}}),
Entry("completes to 'false' when passed 'Fa'", "Fa",
[]flags.Completion{{Item: "false"}}),
Entry("returns 'true' and 'false' when passed nothing", "",
[]flags.Completion{{Item: "true"}, {Item: "false"}}),
Entry("completes to nothing when passed 'wut'", "wut",
[]flags.Completion{}),
)
})
Describe("UnmarshalFlag", func() {
BeforeEach(func() {
color = Color{}
})
It("accepts true", func() {
err := color.UnmarshalFlag("true")
Expect(err).ToNot(HaveOccurred())
Expect(color.Value).To(Equal("true"))
Expect(color.IsSet).To(BeTrue())
})
It("accepts false", func() {
err := color.UnmarshalFlag("FalsE")
Expect(err).ToNot(HaveOccurred())
Expect(color.Value).To(Equal("false"))
Expect(color.IsSet).To(BeTrue())
})
It("errors on anything else", func() {
err := color.UnmarshalFlag("I AM A BANANANANANANANANAE")
Expect(err).To(MatchError(&flags.Error{
Type: flags.ErrRequired,
Message: `COLOR must be "true" or "false"`,
}))
})
})
})