-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathensemble.go
293 lines (251 loc) · 9.72 KB
/
ensemble.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
/*
* Copyright The Microcks Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ensemble
import (
"context"
"strings"
"github.com/testcontainers/testcontainers-go"
"github.com/testcontainers/testcontainers-go/network"
"microcks.io/go-client"
microcks "microcks.io/testcontainers-go"
"microcks.io/testcontainers-go/ensemble/async"
"microcks.io/testcontainers-go/ensemble/async/connection/kafka"
"microcks.io/testcontainers-go/ensemble/postman"
)
// Option represents an option to pass to the ensemble.
type Option func(*MicrocksContainersEnsemble) error
// ContainerOptions represents the container options.
type ContainerOptions struct {
list []testcontainers.ContainerCustomizer
}
// Add adds an option to the list.
func (co *ContainerOptions) Add(opt testcontainers.ContainerCustomizer) {
co.list = append(co.list, opt)
}
// MicrocksContainersEnsemble represents the ensemble of containers.
type MicrocksContainersEnsemble struct {
ctx context.Context
network *testcontainers.DockerNetwork
hostAccessPorts []int
microcksContainer *microcks.MicrocksContainer
microcksContainerImage string
microcksContainerOptions ContainerOptions
postmanEnabled bool
postmanContainer *postman.PostmanContainer
postmanContainerImage string
postmanContainerOptions ContainerOptions
asyncEnabled bool
asyncMinionContainer *async.MicrocksAsyncMinionContainer
asyncMinionContainerImage string
asyncMinionContainerOptions ContainerOptions
}
// GetNetwork returns the ensemble network.
func (ec *MicrocksContainersEnsemble) GetNetwork() *testcontainers.DockerNetwork {
return ec.network
}
// GetMicrocksContainer returns the Microcks container.
func (ec *MicrocksContainersEnsemble) GetMicrocksContainer() *microcks.MicrocksContainer {
return ec.microcksContainer
}
// GetPostmanContainer returns the Postman container.
func (ec *MicrocksContainersEnsemble) GetPostmanContainer() *postman.PostmanContainer {
return ec.postmanContainer
}
// GetAsyncMinionContainer returns the Async Minion container.
func (ec *MicrocksContainersEnsemble) GetAsyncMinionContainer() *async.MicrocksAsyncMinionContainer {
return ec.asyncMinionContainer
}
// Terminate helps to terminate all containers.
func (ec *MicrocksContainersEnsemble) Terminate(ctx context.Context) error {
// Main Microcks container.
if err := ec.microcksContainer.Terminate(ctx); err != nil {
return err
}
// Postman container.
if ec.postmanEnabled {
if err := ec.postmanContainer.Terminate(ctx); err != nil {
return err
}
}
// Async Microcks minion container.
if ec.asyncEnabled {
if err := ec.asyncMinionContainer.Terminate(ctx); err != nil {
return err
}
}
return nil
}
// RunContainers creates instances of the Microcks Ensemble.
// Using sequential start to avoid resource contention on CI systems with weaker hardware.
func RunContainers(ctx context.Context, opts ...Option) (*MicrocksContainersEnsemble, error) {
var err error
ensemble := &MicrocksContainersEnsemble{ctx: ctx}
// Options.
defaults := []Option{WithDefaultNetwork()}
options := append(defaults, opts...)
for _, opt := range options {
if err = opt(ensemble); err != nil {
return nil, err
}
}
// Set microcks container env variables.
testCallbackURL := strings.Join([]string{"http://", microcks.DefaultNetworkAlias, ":8080"}, "")
postmanRunnerURL := strings.Join([]string{"http://", postman.DefaultNetworkAlias, ":3000"}, "")
asyncMinionURL := strings.Join([]string{"http://", async.DefaultNetworkAlias, ":8081"}, "")
ensemble.microcksContainerOptions.Add(microcks.WithEnv("TEST_CALLBACK_URL", testCallbackURL))
ensemble.microcksContainerOptions.Add(microcks.WithEnv("POSTMAN_RUNNER_URL", postmanRunnerURL))
ensemble.microcksContainerOptions.Add(microcks.WithEnv("ASYNC_MINION_URL", asyncMinionURL))
// Start default Microcks container.
if len(ensemble.hostAccessPorts) > 0 {
ensemble.microcksContainerOptions.Add(
microcks.WithHostAccessPorts(ensemble.hostAccessPorts),
)
}
if ensemble.microcksContainerImage == "" {
ensemble.microcksContainerImage = microcks.DefaultImage
}
ensemble.microcksContainer, err = microcks.Run(ctx, ensemble.microcksContainerImage, ensemble.microcksContainerOptions.list...)
if err != nil {
return nil, err
}
// Start Postman container if enabled.
if ensemble.postmanEnabled {
ensemble.postmanContainer, err = postman.Run(ctx, ensemble.postmanContainerImage, ensemble.postmanContainerOptions.list...)
if err != nil {
return nil, err
}
}
// Start Microcks async minion container if enabled.
if ensemble.asyncEnabled {
microcksHostPort := strings.Join([]string{microcks.DefaultNetworkAlias, ":8080"}, "")
ensemble.asyncMinionContainer, err = async.Run(ctx, ensemble.asyncMinionContainerImage, microcksHostPort, ensemble.asyncMinionContainerOptions.list...)
if err != nil {
return nil, err
}
}
return ensemble, nil
}
// WithMicrocksImage helps to use specific Microcks image.
func WithMicrocksImage(image string) Option {
return func(e *MicrocksContainersEnsemble) error {
//e.microcksContainerOptions.Add(testcontainers.WithImage(image))
e.microcksContainerImage = image
return nil
}
}
// WithAsynncFature enables the Async Feature container with default container image (deduced from Microcks main one).
func WithAsyncFeature() Option {
return func(e *MicrocksContainersEnsemble) error {
e.asyncMinionContainerImage = async.DefaultImage
e.asyncEnabled = true
return nil
}
}
// WithAsyncFeatureImage enabled the Async Feature container with specific image.
func WithAsyncFeatureImage(image string) Option {
return func(e *MicrocksContainersEnsemble) error {
//e.asyncMinionContainerOptions.Add(testcontainers.WithImage(image))
e.asyncMinionContainerImage = image
e.asyncEnabled = true
return nil
}
}
// WithPostman allows to enable Postman container.
func WithPostman() Option {
return func(e *MicrocksContainersEnsemble) error {
e.postmanContainerImage = postman.DefaultImage
e.postmanEnabled = true
return nil
}
}
// WithPostmanImage helps to use specific Postman image.
func WithPostmanImage(image string) Option {
return func(e *MicrocksContainersEnsemble) error {
//e.postmanContainerOptions.Add(testcontainers.WithImage(image))
e.postmanContainerImage = image
e.postmanEnabled = true
return nil
}
}
// WithDefaultNetwork allows to use a default network.
func WithDefaultNetwork() Option {
return func(e *MicrocksContainersEnsemble) (err error) {
e.network, err = network.New(e.ctx, network.WithCheckDuplicate())
if err != nil {
return err
}
e.microcksContainerOptions.Add(microcks.WithNetwork(e.network.Name))
e.microcksContainerOptions.Add(microcks.WithNetworkAlias(e.network.Name, microcks.DefaultNetworkAlias))
e.postmanContainerOptions.Add(postman.WithNetwork(e.network.Name))
e.postmanContainerOptions.Add(postman.WithNetworkAlias(e.network.Name, postman.DefaultNetworkAlias))
e.asyncMinionContainerOptions.Add(async.WithNetwork(e.network.Name))
e.asyncMinionContainerOptions.Add(async.WithNetworkAlias(e.network.Name, async.DefaultNetworkAlias))
return nil
}
}
// WithNetwork allows to define the network.
func WithNetwork(network *testcontainers.DockerNetwork) Option {
return func(e *MicrocksContainersEnsemble) error {
e.network = network
e.microcksContainerOptions.Add(microcks.WithNetwork(e.network.Name))
e.microcksContainerOptions.Add(microcks.WithNetworkAlias(e.network.Name, microcks.DefaultNetworkAlias))
e.postmanContainerOptions.Add(postman.WithNetwork(e.network.Name))
e.postmanContainerOptions.Add(postman.WithNetworkAlias(e.network.Name, postman.DefaultNetworkAlias))
e.asyncMinionContainerOptions.Add(async.WithNetwork(e.network.Name))
e.asyncMinionContainerOptions.Add(async.WithNetworkAlias(e.network.Name, async.DefaultNetworkAlias))
return nil
}
}
// WithMainArtifact provides paths to artifacts that will be imported as main or main
// ones within the Microcks container.
// Once it will be started and healthy.
func WithMainArtifact(artifactFilePath string) Option {
return func(e *MicrocksContainersEnsemble) error {
e.microcksContainerOptions.Add(microcks.WithMainArtifact(artifactFilePath))
return nil
}
}
// WithSecondaryArtifact provides paths to artifacts that will be imported as main or main
// ones within the Microcks container.
// Once it will be started and healthy.
func WithSecondaryArtifact(artifactFilePath string) Option {
return func(e *MicrocksContainersEnsemble) error {
e.microcksContainerOptions.Add(microcks.WithSecondaryArtifact(artifactFilePath))
return nil
}
}
// WithHostAccessPorts helps to open connections between Microcks, Postman or Microcks async
// to the user's host ports.
func WithHostAccessPorts(hostAccessPorts []int) Option {
return func(e *MicrocksContainersEnsemble) error {
e.hostAccessPorts = hostAccessPorts
return nil
}
}
// WithKafkaConnection configures the Kafka connection.
func WithKafkaConnection(connection kafka.Connection) Option {
return func(e *MicrocksContainersEnsemble) error {
e.asyncMinionContainerOptions.Add(async.WithKafkaConnection(connection))
return nil
}
}
// WithSecret creates a new secret.
func WithSecret(s client.Secret) Option {
return func(e *MicrocksContainersEnsemble) error {
e.asyncMinionContainerOptions.Add(microcks.WithSecret(s))
return nil
}
}