@@ -74,6 +74,22 @@ func isReady(ctx context.Context, c dktest.ContainerInfo) bool {
74
74
}
75
75
76
76
func Test (t * testing.T ) {
77
+ t .Run ("test" , test )
78
+ t .Run ("testMigrate" , testMigrate )
79
+ t .Run ("testWithAuth" , testWithAuth )
80
+ t .Run ("testLockWorks" , testLockWorks )
81
+
82
+ t .Cleanup (func () {
83
+ for _ , spec := range specs {
84
+ t .Log ("Cleaning up " , spec .ImageName )
85
+ if err := spec .Cleanup (); err != nil {
86
+ t .Error ("Error removing " , spec .ImageName , "error:" , err )
87
+ }
88
+ }
89
+ })
90
+ }
91
+
92
+ func test (t * testing.T ) {
77
93
dktesting .ParallelTest (t , specs , func (t * testing.T , c dktest.ContainerInfo ) {
78
94
ip , port , err := c .FirstPort ()
79
95
if err != nil {
@@ -99,7 +115,7 @@ func Test(t *testing.T) {
99
115
})
100
116
}
101
117
102
- func TestMigrate (t * testing.T ) {
118
+ func testMigrate (t * testing.T ) {
103
119
dktesting .ParallelTest (t , specs , func (t * testing.T , c dktest.ContainerInfo ) {
104
120
ip , port , err := c .FirstPort ()
105
121
if err != nil {
@@ -125,7 +141,7 @@ func TestMigrate(t *testing.T) {
125
141
})
126
142
}
127
143
128
- func TestWithAuth (t * testing.T ) {
144
+ func testWithAuth (t * testing.T ) {
129
145
dktesting .ParallelTest (t , specs , func (t * testing.T , c dktest.ContainerInfo ) {
130
146
ip , port , err := c .FirstPort ()
131
147
if err != nil {
@@ -180,7 +196,7 @@ func TestWithAuth(t *testing.T) {
180
196
})
181
197
}
182
198
183
- func TestLockWorks (t * testing.T ) {
199
+ func testLockWorks (t * testing.T ) {
184
200
dktesting .ParallelTest (t , specs , func (t * testing.T , c dktest.ContainerInfo ) {
185
201
ip , port , err := c .FirstPort ()
186
202
if err != nil {
@@ -241,6 +257,15 @@ func TestTransaction(t *testing.T) {
241
257
{ImageName : "mongo:4" , Options : dktest.Options {PortRequired : true , ReadyFunc : isReady ,
242
258
Cmd : []string {"mongod" , "--bind_ip_all" , "--replSet" , "rs0" }}},
243
259
}
260
+ t .Cleanup (func () {
261
+ for _ , spec := range transactionSpecs {
262
+ t .Log ("Cleaning up " , spec .ImageName )
263
+ if err := spec .Cleanup (); err != nil {
264
+ t .Error ("Error removing " , spec .ImageName , "error:" , err )
265
+ }
266
+ }
267
+ })
268
+
244
269
dktesting .ParallelTest (t , transactionSpecs , func (t * testing.T , c dktest.ContainerInfo ) {
245
270
ip , port , err := c .FirstPort ()
246
271
if err != nil {
0 commit comments