forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetwork_port_test.go
65 lines (59 loc) · 1.89 KB
/
network_port_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
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("NetworkPort", func() {
var port NetworkPort
Describe("UnmarshalFlag", func() {
BeforeEach(func() {
port = NetworkPort{}
})
DescribeTable("it sets the ports correctly",
func(input string, expectedStart int, expectedEnd int) {
err := port.UnmarshalFlag(input)
Expect(err).ToNot(HaveOccurred())
Expect(port).To(Equal(NetworkPort{
StartPort: expectedStart,
EndPort: expectedEnd,
}))
},
Entry("when provided '3000' it sets the start and end to 3000", "3000", 3000, 3000),
Entry("when provided '3000-6000' it sets the start to 3000 and end to 6000", "3000-6000", 3000, 6000),
)
DescribeTable("errors correctly",
func(input string, expectedErr error) {
err := port.UnmarshalFlag(input)
Expect(err).To(MatchError(expectedErr))
},
Entry("when provided 'fooo' it returns back a flag error", "fooo",
&flags.Error{
Type: flags.ErrRequired,
Message: `PORT must be a positive integer`,
}),
Entry("when provided '1-fooo' it returns back a flag error", "1-fooo",
&flags.Error{
Type: flags.ErrRequired,
Message: `PORT must be a positive integer`,
}),
Entry("when provided '-1' it returns back a flag error", "-1",
&flags.Error{
Type: flags.ErrRequired,
Message: `PORT must be a positive integer`,
}),
Entry("when provided '-1-1' it returns back a flag error", "-1-1",
&flags.Error{
Type: flags.ErrRequired,
Message: `PORT must be a positive integer`,
}),
Entry("when provided '1-2-3' it returns back a flag error", "1-2-3",
&flags.Error{
Type: flags.ErrRequired,
Message: `PORT syntax must match integer[-integer]`,
}),
)
})
})