forked from testcontainers/testcontainers-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneric_test.go
178 lines (152 loc) · 4.25 KB
/
generic_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
package testcontainers
import (
"context"
"errors"
"fmt"
"net/http"
"os"
"os/exec"
"regexp"
"sync"
"testing"
"github.com/stretchr/testify/require"
"github.com/testcontainers/testcontainers-go/wait"
)
const (
reusableContainerName = "my_test_reusable_container"
)
func TestGenericReusableContainer(t *testing.T) {
ctx := context.Background()
n1, err := GenericContainer(ctx, GenericContainerRequest{
ProviderType: providerType,
ContainerRequest: ContainerRequest{
Image: nginxAlpineImage,
ExposedPorts: []string{nginxDefaultPort},
WaitingFor: wait.ForListeningPort(nginxDefaultPort),
Name: reusableContainerName,
},
Started: true,
})
require.NoError(t, err)
require.True(t, n1.IsRunning())
terminateContainerOnEnd(t, ctx, n1)
copiedFileName := "hello_copy.sh"
err = n1.CopyFileToContainer(ctx, "./testdata/hello.sh", "/"+copiedFileName, 700)
require.NoError(t, err)
tests := []struct {
name string
containerName string
errorMatcher func(err error) error
reuseOption bool
}{
{
name: "reuse option with empty name",
errorMatcher: func(err error) error {
if errors.Is(err, ErrReuseEmptyName) {
return nil
}
return err
},
reuseOption: true,
},
{
name: "container already exists (reuse=false)",
containerName: reusableContainerName,
errorMatcher: func(err error) error {
if err == nil {
return errors.New("expected error but got none")
}
return nil
},
reuseOption: false,
},
{
name: "success reusing",
containerName: reusableContainerName,
reuseOption: true,
errorMatcher: func(err error) error {
return err
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
n2, err := GenericContainer(ctx, GenericContainerRequest{
ProviderType: providerType,
ContainerRequest: ContainerRequest{
Image: nginxAlpineImage,
ExposedPorts: []string{nginxDefaultPort},
WaitingFor: wait.ForListeningPort(nginxDefaultPort),
Name: tc.containerName,
},
Started: true,
Reuse: tc.reuseOption,
})
require.NoError(t, tc.errorMatcher(err))
if err == nil {
c, _, err := n2.Exec(ctx, []string{"/bin/ash", copiedFileName})
require.NoError(t, err)
require.Zero(t, c)
}
})
}
}
func TestGenericReusableContainerInSubprocess(t *testing.T) {
containerIDOnce := sync.Once{}
containerID := ""
wg := sync.WaitGroup{}
wg.Add(10)
for i := 0; i < 10; i++ {
go func() {
defer wg.Done()
// create containers in subprocesses, as "go test ./..." does.
output := createReuseContainerInSubprocess(t)
// check is container reused.
re := regexp.MustCompile(fmt.Sprintf("%s(.*)%s",
"🚧 Waiting for container id ",
regexp.QuoteMeta(fmt.Sprintf(" image: %s", nginxDelayedImage)),
))
match := re.FindStringSubmatch(output)
containerIDOnce.Do(func() {
containerID = match[1]
})
require.Equal(t, containerID, match[1])
}()
}
wg.Wait()
}
func createReuseContainerInSubprocess(t *testing.T) string {
cmd := exec.Command(os.Args[0], "-test.run=TestHelperContainerStarterProcess")
cmd.Env = []string{"GO_WANT_HELPER_PROCESS=1"}
output, err := cmd.CombinedOutput()
require.NoError(t, err, string(output))
return string(output)
}
// TestHelperContainerStarterProcess is a helper function
// to start a container in a subprocess. It's not a real test.
func TestHelperContainerStarterProcess(t *testing.T) {
if os.Getenv("GO_WANT_HELPER_PROCESS") != "1" {
return
}
ctx := context.Background()
nginxC, err := GenericContainer(ctx, GenericContainerRequest{
ProviderType: providerType,
ContainerRequest: ContainerRequest{
Image: nginxDelayedImage,
ExposedPorts: []string{nginxDefaultPort},
WaitingFor: wait.ForListeningPort(nginxDefaultPort), // default startupTimeout is 60s
Name: reusableContainerName,
},
Started: true,
Reuse: true,
})
require.NoError(t, err)
require.True(t, nginxC.IsRunning())
origin, err := nginxC.PortEndpoint(ctx, nginxDefaultPort, "http")
require.NoError(t, err)
// check is reuse container with WaitingFor work correctly.
resp, err := http.Get(origin)
require.NoError(t, err)
defer resp.Body.Close()
require.Equal(t, http.StatusOK, resp.StatusCode)
}