forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteger_limit_test.go
55 lines (48 loc) · 1.42 KB
/
integer_limit_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
package flag_test
import (
. "code.cloudfoundry.org/cli/command/flag"
flags "github.com/jessevdk/go-flags"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("IntegerLimit", func() {
var limit IntegerLimit
BeforeEach(func() {
limit = IntegerLimit{}
})
Describe("UnmarshalFlag", func() {
When("the empty string is provided", func() {
It("sets IsSet to false", func() {
err := limit.UnmarshalFlag("")
Expect(err).ToNot(HaveOccurred())
Expect(limit).To(Equal(IntegerLimit{Value: 0, IsSet: false}))
})
})
When("an invalid value is provided", func() {
It("returns an error", func() {
err := limit.UnmarshalFlag("abcdef")
Expect(err).To(MatchError(&flags.Error{
Type: flags.ErrRequired,
Message: "invalid integer limit (expected int >= -1)",
}))
Expect(limit).To(Equal(IntegerLimit{Value: 0, IsSet: false}))
})
})
When("an out of bounds integer is provided", func() {
It("returns an error", func() {
err := limit.UnmarshalFlag("-10")
Expect(err).To(MatchError(&flags.Error{
Type: flags.ErrRequired,
Message: "invalid integer limit (expected int >= -1)",
}))
})
})
When("a valid integer is provided", func() {
It("stores the integer and sets IsSet to true", func() {
err := limit.UnmarshalFlag("-1")
Expect(err).ToNot(HaveOccurred())
Expect(limit).To(Equal(IntegerLimit{Value: -1, IsSet: true}))
})
})
})
})