forked from testcontainers/testcontainers-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose_test.go
410 lines (326 loc) · 10.6 KB
/
compose_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
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
package testcontainers
import (
"fmt"
"os/exec"
"strings"
"testing"
"time"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"github.com/testcontainers/testcontainers-go/wait"
)
func ExampleNewLocalDockerCompose() {
path := "/path/to/docker-compose.yml"
_ = NewLocalDockerCompose([]string{path}, "my_project")
}
func ExampleLocalDockerCompose() {
_ = LocalDockerCompose{
Executable: "docker-compose",
ComposeFilePaths: []string{
"/path/to/docker-compose.yml",
"/path/to/docker-compose-1.yml",
"/path/to/docker-compose-2.yml",
"/path/to/docker-compose-3.yml",
},
Identifier: "my_project",
Cmd: []string{
"up", "-d",
},
Env: map[string]string{
"FOO": "foo",
"BAR": "bar",
},
}
}
func ExampleLocalDockerCompose_Down() {
path := "/path/to/docker-compose.yml"
compose := NewLocalDockerCompose([]string{path}, "my_project")
execError := compose.WithCommand([]string{"up", "-d"}).Invoke()
if execError.Error != nil {
_ = fmt.Errorf("Failed when running: %v", execError.Command)
}
execError = compose.Down()
if execError.Error != nil {
_ = fmt.Errorf("Failed when running: %v", execError.Command)
}
}
func ExampleLocalDockerCompose_Invoke() {
path := "/path/to/docker-compose.yml"
compose := NewLocalDockerCompose([]string{path}, "my_project")
execError := compose.
WithCommand([]string{"up", "-d"}).
WithEnv(map[string]string{
"bar": "BAR",
}).
Invoke()
if execError.Error != nil {
_ = fmt.Errorf("Failed when running: %v", execError.Command)
}
}
func ExampleLocalDockerCompose_WithCommand() {
path := "/path/to/docker-compose.yml"
compose := NewLocalDockerCompose([]string{path}, "my_project")
compose.WithCommand([]string{"up", "-d"})
}
func ExampleLocalDockerCompose_WithEnv() {
path := "/path/to/docker-compose.yml"
compose := NewLocalDockerCompose([]string{path}, "my_project")
compose.WithEnv(map[string]string{
"FOO": "foo",
"BAR": "bar",
})
}
func TestLocalDockerCompose(t *testing.T) {
path := "./testresources/docker-compose-simple.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
Invoke()
checkIfError(t, err)
}
func TestDockerComposeStrategyForInvalidService(t *testing.T) {
path := "./testresources/docker-compose-simple.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
// Appending with _1 as given in the Java Test-Containers Example
WithExposedService("mysql_1", 13306, wait.NewLogStrategy("started").WithStartupTimeout(10*time.Second).WithOccurrence(1)).
Invoke()
assert.NotEqual(t, err.Error, nil, "Expected error to be thrown because service with wait strategy is not running")
assert.Equal(t, 1, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
}
func TestDockerComposeWithWaitLogStrategy(t *testing.T) {
path := "./testresources/docker-compose-complex.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
// Appending with _1 as given in the Java Test-Containers Example
WithExposedService("mysql_1", 13306, wait.NewLogStrategy("started").WithStartupTimeout(10*time.Second).WithOccurrence(1)).
Invoke()
checkIfError(t, err)
assert.Equal(t, 2, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
assert.Contains(t, compose.Services, "mysql")
}
func TestDockerComposeWithWaitForService(t *testing.T) {
path := "./testresources/docker-compose-simple.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
WithEnv(map[string]string{
"bar": "BAR",
}).
WaitForService("nginx_1", wait.NewHTTPStrategy("/").WithPort("80/tcp").WithStartupTimeout(10*time.Second)).
Invoke()
checkIfError(t, err)
assert.Equal(t, 1, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
}
func TestDockerComposeWithWaitHTTPStrategy(t *testing.T) {
path := "./testresources/docker-compose-simple.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
WithEnv(map[string]string{
"bar": "BAR",
}).
WithExposedService("nginx_1", 9080, wait.NewHTTPStrategy("/").WithPort("80/tcp").WithStartupTimeout(10*time.Second)).
Invoke()
checkIfError(t, err)
assert.Equal(t, 1, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
}
func TestDockerComposeWithWaitStrategy_NoExposedPorts(t *testing.T) {
path := "./testresources/docker-compose-no-exposed-ports.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
WithExposedService("nginx_1", 9080, wait.ForLog("Configuration complete; ready for start up")).
Invoke()
checkIfError(t, err)
assert.Equal(t, 1, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
}
func TestDockerComposeWithMultipleWaitStrategies(t *testing.T) {
path := "./testresources/docker-compose-complex.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
WithExposedService("mysql_1", 13306, wait.NewLogStrategy("started").WithStartupTimeout(10*time.Second)).
WithExposedService("nginx_1", 9080, wait.NewHTTPStrategy("/").WithPort("80/tcp").WithStartupTimeout(10*time.Second)).
Invoke()
checkIfError(t, err)
assert.Equal(t, 2, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
assert.Contains(t, compose.Services, "mysql")
}
func TestDockerComposeWithFailedStrategy(t *testing.T) {
path := "./testresources/docker-compose-simple.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
WithEnv(map[string]string{
"bar": "BAR",
}).
WithExposedService("nginx_1", 9080, wait.NewHTTPStrategy("/").WithPort("8080/tcp").WithStartupTimeout(5*time.Second)).
Invoke()
// Verify that an error is thrown and not nil
// A specific error message matcher is not asserted since the docker library can change the return message, breaking this test
assert.NotEqual(t, err.Error, nil, "Expected error to be thrown because of a wrong suplied wait strategy")
assert.Equal(t, 1, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
}
func TestLocalDockerComposeComplex(t *testing.T) {
path := "./testresources/docker-compose-complex.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
Invoke()
checkIfError(t, err)
assert.Equal(t, 2, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
assert.Contains(t, compose.Services, "mysql")
}
func TestLocalDockerComposeWithEnvironment(t *testing.T) {
path := "./testresources/docker-compose-simple.yml"
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose([]string{path}, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
WithEnv(map[string]string{
"bar": "BAR",
}).
Invoke()
checkIfError(t, err)
assert.Equal(t, 1, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
containerNameNginx := compose.Identifier + "_nginx_1"
present := map[string]string{
"bar": "BAR",
}
absent := map[string]string{}
assertContainerEnvironmentVariables(t, containerNameNginx, present, absent)
}
func TestLocalDockerComposeWithMultipleComposeFiles(t *testing.T) {
composeFiles := []string{
"testresources/docker-compose-simple.yml",
"testresources/docker-compose-override.yml",
}
identifier := strings.ToLower(uuid.New().String())
compose := NewLocalDockerCompose(composeFiles, identifier)
destroyFn := func() {
err := compose.Down()
checkIfError(t, err)
}
defer destroyFn()
err := compose.
WithCommand([]string{"up", "-d"}).
WithEnv(map[string]string{
"bar": "BAR",
"foo": "FOO",
}).
Invoke()
checkIfError(t, err)
assert.Equal(t, 2, len(compose.Services))
assert.Contains(t, compose.Services, "nginx")
assert.Contains(t, compose.Services, "mysql")
containerNameNginx := compose.Identifier + "_nginx_1"
present := map[string]string{
"bar": "BAR",
"foo": "FOO",
}
absent := map[string]string{}
assertContainerEnvironmentVariables(t, containerNameNginx, present, absent)
}
func assertContainerEnvironmentVariables(t *testing.T, containerName string, present map[string]string, absent map[string]string) {
args := []string{"exec", containerName, "env"}
output, err := executeAndGetOutput("docker", args)
checkIfError(t, err)
for k, v := range present {
keyVal := k + "=" + v
assert.Contains(t, output, keyVal)
}
for k, v := range absent {
keyVal := k + "=" + v
assert.NotContains(t, output, keyVal)
}
}
func checkIfError(t *testing.T, err ExecError) {
if err.Error != nil {
t.Fatalf("Failed when running %v: %v", err.Command, err.Error)
}
if err.Stdout != nil {
t.Fatalf("An error in Stdout happened when running %v: %v", err.Command, err.Stdout)
}
if err.Stderr != nil {
t.Fatalf("An error in Stderr happened when running %v: %v", err.Command, err.Stderr)
}
}
func executeAndGetOutput(command string, args []string) (string, ExecError) {
cmd := exec.Command(command, args...)
out, err := cmd.CombinedOutput()
if err != nil {
return "", ExecError{Error: err}
}
return string(out), ExecError{Error: nil}
}