-
Notifications
You must be signed in to change notification settings - Fork 348
Expand file tree
/
Copy pathsessions_test.go
More file actions
411 lines (358 loc) · 11.2 KB
/
sessions_test.go
File metadata and controls
411 lines (358 loc) · 11.2 KB
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
package sessions_test
import (
"os"
"path/filepath"
"github.com/cloudfoundry/php-buildpack/src/php/extensions"
"github.com/cloudfoundry/php-buildpack/src/php/extensions/sessions"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
var _ = Describe("SessionsExtension", func() {
var (
ext *sessions.SessionsExtension
ctx *extensions.Context
err error
buildDir string
)
BeforeEach(func() {
ext = &sessions.SessionsExtension{}
ctx, err = extensions.NewContext()
Expect(err).NotTo(HaveOccurred())
// Create temp build directory for file operations
buildDir, err = os.MkdirTemp("", "sessions-test")
Expect(err).NotTo(HaveOccurred())
// Set BuildDir directly on the struct field (not via Set() which uses Data map)
ctx.BuildDir = buildDir
ctx.Set("BP_DIR", "/tmp/bp")
})
AfterEach(func() {
if buildDir != "" {
os.RemoveAll(buildDir)
}
})
Describe("Name", func() {
It("should return 'sessions'", func() {
Expect(ext.Name()).To(Equal("sessions"))
})
})
Describe("ShouldCompile", func() {
Context("when no session service is found", func() {
It("should return false", func() {
ctx.VcapServices = map[string][]extensions.Service{}
Expect(ext.ShouldCompile(ctx)).To(BeFalse())
})
})
Context("when redis-sessions service exists", func() {
It("should return true", func() {
ctx.VcapServices = map[string][]extensions.Service{
"p-redis": {
{
Name: "my-redis-sessions",
Credentials: map[string]interface{}{
"hostname": "redis.example.com",
"port": 6379,
"password": "secret",
},
},
},
}
Expect(ext.ShouldCompile(ctx)).To(BeTrue())
})
})
Context("when memcached-sessions service exists", func() {
It("should return true", func() {
ctx.VcapServices = map[string][]extensions.Service{
"p-memcached": {
{
Name: "my-memcached-sessions",
Credentials: map[string]interface{}{
"servers": "memcached.example.com:11211",
"username": "admin",
"password": "secret",
},
},
},
}
Expect(ext.ShouldCompile(ctx)).To(BeTrue())
})
})
Context("when custom Redis service name is set", func() {
It("should detect the custom name", func() {
ctx.Set("REDIS_SESSION_STORE_SERVICE_NAME", "custom-redis")
ctx.VcapServices = map[string][]extensions.Service{
"redis": {
{
Name: "my-custom-redis-service",
Credentials: map[string]interface{}{
"hostname": "redis.example.com",
"port": 6379,
},
},
},
}
Expect(ext.ShouldCompile(ctx)).To(BeTrue())
})
})
Context("when custom Memcached service name is set", func() {
It("should detect the custom name", func() {
ctx.Set("MEMCACHED_SESSION_STORE_SERVICE_NAME", "custom-memcached")
ctx.VcapServices = map[string][]extensions.Service{
"memcached": {
{
Name: "my-custom-memcached-service",
Credentials: map[string]interface{}{
"servers": "memcached.example.com:11211",
},
},
},
}
Expect(ext.ShouldCompile(ctx)).To(BeTrue())
})
})
Context("when service name doesn't match", func() {
It("should return false", func() {
ctx.VcapServices = map[string][]extensions.Service{
"redis": {
{
Name: "regular-redis",
Credentials: map[string]interface{}{
"hostname": "redis.example.com",
},
},
},
}
Expect(ext.ShouldCompile(ctx)).To(BeFalse())
})
})
})
Describe("Configure", func() {
Context("when no session service is found", func() {
It("should return nil without error", func() {
ctx.VcapServices = map[string][]extensions.Service{}
err := ext.Configure(ctx)
Expect(err).NotTo(HaveOccurred())
})
})
Context("when Redis session service is found", func() {
BeforeEach(func() {
ctx.VcapServices = map[string][]extensions.Service{
"redis": {
{
Name: "my-redis-sessions",
Credentials: map[string]interface{}{
"hostname": "redis.example.com",
"port": 6379,
},
},
},
}
})
It("should add 'redis' to PHP_EXTENSIONS", func() {
err := ext.Configure(ctx)
Expect(err).NotTo(HaveOccurred())
phpExtensions := ctx.GetStringSlice("PHP_EXTENSIONS")
Expect(phpExtensions).To(ContainElement("redis"))
})
It("should preserve existing PHP_EXTENSIONS", func() {
ctx.Set("PHP_EXTENSIONS", []string{"bz2", "zlib"})
err := ext.Configure(ctx)
Expect(err).NotTo(HaveOccurred())
phpExtensions := ctx.GetStringSlice("PHP_EXTENSIONS")
Expect(phpExtensions).To(ContainElement("bz2"))
Expect(phpExtensions).To(ContainElement("zlib"))
Expect(phpExtensions).To(ContainElement("redis"))
})
})
Context("when Memcached session service is found", func() {
BeforeEach(func() {
ctx.VcapServices = map[string][]extensions.Service{
"memcached": {
{
Name: "my-memcached-sessions",
Credentials: map[string]interface{}{
"servers": "memcached.example.com:11211",
},
},
},
}
})
It("should add 'memcached' to PHP_EXTENSIONS", func() {
err := ext.Configure(ctx)
Expect(err).NotTo(HaveOccurred())
phpExtensions := ctx.GetStringSlice("PHP_EXTENSIONS")
Expect(phpExtensions).To(ContainElement("memcached"))
})
})
})
Describe("Compile", func() {
var phpDir string
BeforeEach(func() {
phpDir = filepath.Join(buildDir, "php")
err := os.MkdirAll(filepath.Join(phpDir, "etc"), 0755)
Expect(err).NotTo(HaveOccurred())
// Create a basic php.ini file with session config
phpIniContent := `session.name = JSESSIONID
session.save_handler = files
session.save_path = "@{TMPDIR}"
`
phpIniPath := filepath.Join(phpDir, "etc", "php.ini")
err = os.WriteFile(phpIniPath, []byte(phpIniContent), 0644)
Expect(err).NotTo(HaveOccurred())
// Create a basic php-fpm.conf file (required by PHPConfigHelper)
phpFpmContent := `[global]
pid = @{HOME}/php/etc/php-fpm.pid
error_log = @{HOME}/php/var/log/php-fpm.log
`
phpFpmPath := filepath.Join(phpDir, "etc", "php-fpm.conf")
err = os.WriteFile(phpFpmPath, []byte(phpFpmContent), 0644)
Expect(err).NotTo(HaveOccurred())
ctx.Set("PHP_DIR", phpDir)
})
Context("when no session service is found", func() {
It("should return nil without error", func() {
ctx.VcapServices = map[string][]extensions.Service{}
err := ext.Compile(ctx, nil)
Expect(err).NotTo(HaveOccurred())
})
})
Context("when Redis session service is found", func() {
BeforeEach(func() {
ctx.VcapServices = map[string][]extensions.Service{
"redis": {
{
Name: "my-redis-sessions",
Credentials: map[string]interface{}{
"hostname": "redis.example.com",
"port": 6379,
"password": "mysecret",
},
},
},
}
})
It("should modify php.ini with Redis configuration", func() {
err := ext.Compile(ctx, nil)
Expect(err).NotTo(HaveOccurred())
phpIniPath := filepath.Join(phpDir, "etc", "php.ini")
content, err := os.ReadFile(phpIniPath)
Expect(err).NotTo(HaveOccurred())
contentStr := string(content)
Expect(contentStr).To(ContainSubstring("session.name = PHPSESSIONID"))
Expect(contentStr).To(ContainSubstring("session.save_handler = redis"))
Expect(contentStr).To(ContainSubstring("tcp://redis.example.com:6379?auth=mysecret"))
})
It("should handle missing password gracefully", func() {
ctx.VcapServices = map[string][]extensions.Service{
"redis": {
{
Name: "my-redis-sessions",
Credentials: map[string]interface{}{
"hostname": "redis.example.com",
"port": 6379,
},
},
},
}
err := ext.Compile(ctx, nil)
Expect(err).NotTo(HaveOccurred())
phpIniPath := filepath.Join(phpDir, "etc", "php.ini")
content, err := os.ReadFile(phpIniPath)
Expect(err).NotTo(HaveOccurred())
contentStr := string(content)
Expect(contentStr).To(ContainSubstring("tcp://redis.example.com:6379?auth="))
})
It("should handle 'host' field instead of 'hostname'", func() {
ctx.VcapServices = map[string][]extensions.Service{
"redis": {
{
Name: "my-redis-sessions",
Credentials: map[string]interface{}{
"host": "redis2.example.com",
"port": 6380,
},
},
},
}
err := ext.Compile(ctx, nil)
Expect(err).NotTo(HaveOccurred())
phpIniPath := filepath.Join(phpDir, "etc", "php.ini")
content, err := os.ReadFile(phpIniPath)
Expect(err).NotTo(HaveOccurred())
contentStr := string(content)
Expect(contentStr).To(ContainSubstring("tcp://redis2.example.com:6380"))
})
})
Context("when Memcached session service is found", func() {
BeforeEach(func() {
ctx.VcapServices = map[string][]extensions.Service{
"memcached": {
{
Name: "my-memcached-sessions",
Credentials: map[string]interface{}{
"servers": "memcached.example.com:11211",
"username": "admin",
"password": "mysecret",
},
},
},
}
})
It("should modify php.ini with Memcached configuration", func() {
err := ext.Compile(ctx, nil)
Expect(err).NotTo(HaveOccurred())
phpIniPath := filepath.Join(phpDir, "etc", "php.ini")
content, err := os.ReadFile(phpIniPath)
Expect(err).NotTo(HaveOccurred())
contentStr := string(content)
Expect(contentStr).To(ContainSubstring("session.name = PHPSESSIONID"))
Expect(contentStr).To(ContainSubstring("session.save_handler = memcached"))
Expect(contentStr).To(ContainSubstring("PERSISTENT=app_sessions memcached.example.com:11211"))
Expect(contentStr).To(ContainSubstring("memcached.sess_binary=On"))
Expect(contentStr).To(ContainSubstring("memcached.use_sasl=On"))
Expect(contentStr).To(ContainSubstring("memcached.sess_sasl_username=admin"))
Expect(contentStr).To(ContainSubstring("memcached.sess_sasl_password=mysecret"))
})
It("should handle missing credentials gracefully", func() {
ctx.VcapServices = map[string][]extensions.Service{
"memcached": {
{
Name: "my-memcached-sessions",
Credentials: map[string]interface{}{
"servers": "memcached.example.com:11211",
},
},
},
}
err := ext.Compile(ctx, nil)
Expect(err).NotTo(HaveOccurred())
phpIniPath := filepath.Join(phpDir, "etc", "php.ini")
content, err := os.ReadFile(phpIniPath)
Expect(err).NotTo(HaveOccurred())
contentStr := string(content)
Expect(contentStr).To(ContainSubstring("memcached.sess_sasl_username="))
Expect(contentStr).To(ContainSubstring("memcached.sess_sasl_password="))
})
})
})
Describe("PreprocessCommands", func() {
It("should return empty array", func() {
cmds, err := ext.PreprocessCommands(ctx)
Expect(err).NotTo(HaveOccurred())
Expect(cmds).To(Equal([]string{}))
})
})
Describe("ServiceCommands", func() {
It("should return empty map", func() {
cmds, err := ext.ServiceCommands(ctx)
Expect(err).NotTo(HaveOccurred())
Expect(cmds).To(Equal(map[string]string{}))
})
})
Describe("ServiceEnvironment", func() {
It("should return empty map", func() {
env, err := ext.ServiceEnvironment(ctx)
Expect(err).NotTo(HaveOccurred())
Expect(env).To(Equal(map[string]string{}))
})
})
})