This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathkernel_mount_options_test.go
206 lines (175 loc) · 5.12 KB
/
kernel_mount_options_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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package smbdriver_test
import (
"code.cloudfoundry.org/smbdriver"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
var _ = Describe("KernelMountOptions", func() {
Describe("#ToKernelMountOptionFlagsAndEnvVars", func() {
var (
mountOpts map[string]interface{}
kernelMountOptions string
kernelMountEnvVars []string
)
BeforeEach(func() {
mountOpts = make(map[string]interface{})
})
JustBeforeEach(func() {
kernelMountOptions, kernelMountEnvVars = smbdriver.ToKernelMountOptionFlagsAndEnvVars(mountOpts)
})
Context("given an empty mount opts", func() {
It("should return an empty mount opts string and empty env vars", func() {
Expect(kernelMountOptions).To(BeEmpty())
Expect(kernelMountEnvVars).To(BeEmpty())
})
})
Context("given a mount opts", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"opt1": "val1",
"opt2": "val2",
}
})
It("should return a valid mount opts string", func() {
Expect(kernelMountOptions).To(Equal("opt1=val1,opt2=val2"))
Expect(kernelMountEnvVars).To(BeEmpty())
})
})
Context("given an integer option value with a leading zero", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"opt1": "0123",
}
})
It("strips the leading zero from the mount option string", func() {
Expect(kernelMountOptions).To(Equal("opt1=123"))
})
})
Context("given a mount option with no value", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"does-not-matter": "",
}
})
It("contains the mount option", func() {
Expect(kernelMountOptions).To(ContainSubstring("does-not-matter"))
})
})
Context("given a mount option with nil value", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"does-not-matter": nil,
}
})
It("omits the mount option", func() {
Expect(kernelMountOptions).NotTo(ContainSubstring("does-not-matter"))
})
})
Context("given a 'Domain' mount option with no value", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"domain": "",
"Domain": "",
}
})
It("omits the mount option", func() {
Expect(kernelMountOptions).NotTo(ContainSubstring("domain"))
Expect(kernelMountOptions).NotTo(ContainSubstring("Domain"))
})
})
Context("given a 'Domain' mount option with nil value", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"domain": nil,
}
})
It("omits the mount option", func() {
Expect(kernelMountOptions).NotTo(ContainSubstring("domain"))
})
})
Context("username and password", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"ro": "true",
"username": "user",
"password": "secret",
}
})
It("converts them to environment variables", func() {
Expect(kernelMountOptions).To(ContainSubstring("ro"))
Expect(kernelMountOptions).NotTo(ContainSubstring("username"))
Expect(kernelMountOptions).NotTo(ContainSubstring("password"))
Expect(kernelMountEnvVars).To(Equal([]string{"PASSWD=secret", "USER=user"}))
})
})
Context("given a readonly mount option with a string boolean value", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"ro": "true",
}
})
It("includes the mount option", func() {
Expect(kernelMountOptions).To(ContainSubstring("ro"))
})
})
Context("given a nodfs mount option with an empty string value", func() {
Context("true", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"nodfs": "",
}
})
It("includes the mount option", func() {
Expect(kernelMountOptions).To(ContainSubstring("nodfs"))
Expect(kernelMountOptions).NotTo(ContainSubstring("nodfs="))
})
})
})
Context("given a nodfs mount option with a string boolean value", func() {
Context("true", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"nodfs": "true",
}
})
It("includes the mount option", func() {
Expect(kernelMountOptions).To(ContainSubstring("nodfs"))
Expect(kernelMountOptions).NotTo(ContainSubstring("nodfs=true"))
})
})
Context("false", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"nodfs": "false",
}
})
It("does not include the mount option", func() {
Expect(kernelMountOptions).NotTo(ContainSubstring("nodfs"))
})
})
})
Context("given a mfsymlinks mount option with a string boolean value", func() {
Context("true", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"mfsymlinks": "true",
}
})
It("includes the mount option", func() {
Expect(kernelMountOptions).To(ContainSubstring("mfsymlinks"))
Expect(kernelMountOptions).NotTo(ContainSubstring("mfsymlinks=true"))
})
})
Context("false", func() {
BeforeEach(func() {
mountOpts = map[string]interface{}{
"mfsymlinks": "false",
}
})
It("includes the mount option", func() {
Expect(kernelMountOptions).NotTo(ContainSubstring("mfsymlinks"))
})
})
})
})
})