forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbytes_with_unlimited_test.go
158 lines (138 loc) · 4.77 KB
/
bytes_with_unlimited_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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
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("BytesWithUnlimited", func() {
var bytesWithUnlimited BytesWithUnlimited
Describe("UnmarshalFlag", func() {
BeforeEach(func() {
bytesWithUnlimited = BytesWithUnlimited{}
})
When("the suffix is B", func() {
It("interprets the number as bytes", func() {
err := bytesWithUnlimited.UnmarshalFlag("17B")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(17))
})
})
When("the suffix is K", func() {
It("interprets the number as kilobytes", func() {
err := bytesWithUnlimited.UnmarshalFlag("64K")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(64 * 1024))
})
})
When("the suffix is KB", func() {
It("interprets the number as kilobytes", func() {
err := bytesWithUnlimited.UnmarshalFlag("64KB")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(64 * 1024))
})
})
When("the suffix is M", func() {
It("interprets the number as megabytes", func() {
err := bytesWithUnlimited.UnmarshalFlag("17M")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(17 * 1024 * 1024))
})
})
When("the suffix is MB", func() {
It("interprets the number as megabytes", func() {
err := bytesWithUnlimited.UnmarshalFlag("19MB")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(19 * 1024 * 1024))
})
})
When("the suffix is G", func() {
It("interprets the number as gigabytes", func() {
err := bytesWithUnlimited.UnmarshalFlag("2G")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(2 * 1024 * 1024 * 1024))
})
})
When("the suffix is GB", func() {
It("interprets the number as gigabytes", func() {
err := bytesWithUnlimited.UnmarshalFlag("3GB")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(3 * 1024 * 1024 * 1024))
})
})
When("the value is -1 (unlimited)", func() {
It("interprets the number as -1 (unlimited)", func() {
err := bytesWithUnlimited.UnmarshalFlag("-1")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(-1))
})
It("accepts units", func() {
err := bytesWithUnlimited.UnmarshalFlag("-1T")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(-1))
})
})
When("the value is 0", func() {
It("sets the value to 0", func() {
err := bytesWithUnlimited.UnmarshalFlag("0")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(0))
})
It("accepts units", func() {
err := bytesWithUnlimited.UnmarshalFlag("0TB")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(0))
})
})
When("the suffix is lowercase", func() {
It("is case insensitive", func() {
err := bytesWithUnlimited.UnmarshalFlag("7m")
Expect(err).ToNot(HaveOccurred())
Expect(bytesWithUnlimited.Value).To(BeEquivalentTo(7 * 1024 * 1024))
})
})
When("the value is invalid", func() {
It("returns an error", func() {
err := bytesWithUnlimited.UnmarshalFlag("invalid")
Expect(err).To(MatchError(&flags.Error{
Type: flags.ErrRequired,
Message: `Byte quantity must be an integer with a unit of measurement like B, K, KB, M, MB, G, or GB`,
}))
})
})
When("a decimal is used", func() {
It("returns an error", func() {
err := bytesWithUnlimited.UnmarshalFlag("1.2M")
Expect(err).To(MatchError(&flags.Error{
Type: flags.ErrRequired,
Message: `Byte quantity must be an integer with a unit of measurement like B, K, KB, M, MB, G, or GB`,
}))
})
})
When("the value is too large", func() {
It("returns an error", func() {
err := bytesWithUnlimited.UnmarshalFlag("9999999TB")
Expect(err).To(MatchError(&flags.Error{
Type: flags.ErrRequired,
Message: `Byte quantity must be an integer with a unit of measurement like B, K, KB, M, MB, G, or GB`,
}))
})
})
When("the units are missing", func() {
It("returns an error", func() {
err := bytesWithUnlimited.UnmarshalFlag("37")
Expect(err).To(MatchError(&flags.Error{
Type: flags.ErrRequired,
Message: `Byte quantity must be an integer with a unit of measurement like B, K, KB, M, MB, G, or GB`,
}))
})
})
When("value is empty", func() {
It("sets IsSet to false", func() {
err := bytesWithUnlimited.UnmarshalFlag("")
Expect(err).NotTo(HaveOccurred())
Expect(bytesWithUnlimited.IsSet).To(BeFalse())
})
})
})
})