@@ -119,7 +119,7 @@ func TestContainerStart(t *testing.T) {
119
119
if err != nil {
120
120
t .Fatal (err )
121
121
}
122
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withExitStatus (7 )), WithNewSnapshot ( id , image ))
122
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withExitStatus (7 )))
123
123
if err != nil {
124
124
t .Fatal (err )
125
125
}
@@ -183,7 +183,7 @@ func TestContainerOutput(t *testing.T) {
183
183
if err != nil {
184
184
t .Fatal (err )
185
185
}
186
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("echo" , expected )), WithNewSnapshot ( id , image ))
186
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("echo" , expected )))
187
187
if err != nil {
188
188
t .Fatal (err )
189
189
}
@@ -252,7 +252,7 @@ func TestContainerExec(t *testing.T) {
252
252
t .Fatal (err )
253
253
}
254
254
255
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )), WithNewSnapshot ( id , image ))
255
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )))
256
256
if err != nil {
257
257
t .Fatal (err )
258
258
}
@@ -337,7 +337,7 @@ func TestContainerLargeExecArgs(t *testing.T) {
337
337
t .Fatal (err )
338
338
}
339
339
340
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )), WithNewSnapshot ( id , image ))
340
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )))
341
341
if err != nil {
342
342
t .Fatal (err )
343
343
}
@@ -413,7 +413,7 @@ func TestContainerPids(t *testing.T) {
413
413
t .Fatal (err )
414
414
}
415
415
416
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )), WithNewSnapshot ( id , image ))
416
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )))
417
417
if err != nil {
418
418
t .Fatal (err )
419
419
}
@@ -490,7 +490,7 @@ func TestContainerCloseIO(t *testing.T) {
490
490
t .Fatal (err )
491
491
}
492
492
493
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withCat ()), WithNewSnapshot ( id , image ))
493
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withCat ()))
494
494
if err != nil {
495
495
t .Fatal (err )
496
496
}
@@ -546,7 +546,7 @@ func TestDeleteRunningContainer(t *testing.T) {
546
546
t .Fatal (err )
547
547
}
548
548
549
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )), WithNewSnapshot ( id , image ))
549
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )))
550
550
if err != nil {
551
551
t .Fatal (err )
552
552
}
@@ -601,7 +601,7 @@ func TestContainerKill(t *testing.T) {
601
601
t .Fatal (err )
602
602
}
603
603
604
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "10" )), WithNewSnapshot ( id , image ))
604
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "10" )))
605
605
if err != nil {
606
606
t .Fatal (err )
607
607
}
@@ -657,8 +657,8 @@ func TestContainerNoBinaryExists(t *testing.T) {
657
657
}
658
658
659
659
container , err := client .NewContainer (ctx , id ,
660
- WithNewSpec ( oci . WithImageConfig ( image ), oci . WithProcessArgs ( "nothing" ) ),
661
- WithNewSnapshot ( id , image ))
660
+ WithNewSnapshot ( id , image ),
661
+ WithNewSpec ( oci . WithImageConfig ( image ), oci . WithProcessArgs ( "nothing" ) ))
662
662
if err != nil {
663
663
t .Fatal (err )
664
664
}
@@ -703,7 +703,7 @@ func TestContainerExecNoBinaryExists(t *testing.T) {
703
703
t .Fatal (err )
704
704
}
705
705
706
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )), WithNewSnapshot ( id , image ))
706
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )))
707
707
if err != nil {
708
708
t .Fatal (err )
709
709
}
@@ -768,7 +768,7 @@ func TestWaitStoppedTask(t *testing.T) {
768
768
t .Fatal (err )
769
769
}
770
770
771
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withExitStatus (7 )), WithNewSnapshot ( id , image ))
771
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withExitStatus (7 )))
772
772
if err != nil {
773
773
t .Fatal (err )
774
774
}
@@ -831,7 +831,7 @@ func TestWaitStoppedProcess(t *testing.T) {
831
831
t .Fatal (err )
832
832
}
833
833
834
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )), WithNewSnapshot ( id , image ))
834
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )))
835
835
if err != nil {
836
836
t .Fatal (err )
837
837
}
@@ -918,7 +918,7 @@ func TestTaskForceDelete(t *testing.T) {
918
918
if err != nil {
919
919
t .Fatal (err )
920
920
}
921
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "30" )), WithNewSnapshot ( id , image ))
921
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "30" )))
922
922
if err != nil {
923
923
t .Fatal (err )
924
924
}
@@ -959,7 +959,7 @@ func TestProcessForceDelete(t *testing.T) {
959
959
if err != nil {
960
960
t .Fatal (err )
961
961
}
962
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "30" )), WithNewSnapshot ( id , image ))
962
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "30" )))
963
963
if err != nil {
964
964
t .Fatal (err )
965
965
}
@@ -1029,11 +1029,10 @@ func TestContainerHostname(t *testing.T) {
1029
1029
t .Fatal (err )
1030
1030
}
1031
1031
1032
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ),
1032
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ),
1033
1033
withProcessArgs ("hostname" ),
1034
1034
oci .WithHostname (expected ),
1035
- ),
1036
- WithNewSnapshot (id , image ))
1035
+ ))
1037
1036
if err != nil {
1038
1037
t .Fatal (err )
1039
1038
}
@@ -1098,7 +1097,7 @@ func TestContainerExitedAtSet(t *testing.T) {
1098
1097
t .Fatal (err )
1099
1098
}
1100
1099
1101
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withTrue ()), WithNewSnapshot ( id , image ))
1100
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withTrue ()))
1102
1101
if err != nil {
1103
1102
t .Fatal (err )
1104
1103
}
@@ -1158,7 +1157,7 @@ func TestDeleteContainerExecCreated(t *testing.T) {
1158
1157
t .Fatal (err )
1159
1158
}
1160
1159
1161
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )), WithNewSnapshot ( id , image ))
1160
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), withProcessArgs ("sleep" , "100" )))
1162
1161
if err != nil {
1163
1162
t .Fatal (err )
1164
1163
}
@@ -1228,8 +1227,8 @@ func TestContainerMetrics(t *testing.T) {
1228
1227
t .Fatal (err )
1229
1228
}
1230
1229
container , err := client .NewContainer (ctx , id ,
1231
- WithNewSpec ( oci . WithImageConfig ( image ), oci . WithProcessArgs ( "sleep" , "30" ) ),
1232
- WithNewSnapshot ( id , image ))
1230
+ WithNewSnapshot ( id , image ),
1231
+ WithNewSpec ( oci . WithImageConfig ( image ), oci . WithProcessArgs ( "sleep" , "30" ) ))
1233
1232
if err != nil {
1234
1233
t .Fatal (err )
1235
1234
}
@@ -1285,9 +1284,8 @@ func TestDeletedContainerMetrics(t *testing.T) {
1285
1284
t .Fatal (err )
1286
1285
}
1287
1286
container , err := client .NewContainer (ctx , id ,
1288
- WithNewSpec (oci .WithImageConfig (image ), withExitStatus (0 )),
1289
1287
WithNewSnapshot (id , image ),
1290
- )
1288
+ WithNewSpec ( oci . WithImageConfig ( image ), withExitStatus ( 0 )) )
1291
1289
if err != nil {
1292
1290
t .Fatal (err )
1293
1291
}
@@ -1518,7 +1516,7 @@ func TestContainerHook(t *testing.T) {
1518
1516
}
1519
1517
return nil
1520
1518
}
1521
- container , err := client .NewContainer (ctx , id , WithNewSpec (oci .WithImageConfig (image ), hook ), WithNewSnapshot ( id , image ))
1519
+ container , err := client .NewContainer (ctx , id , WithNewSnapshot ( id , image ), WithNewSpec (oci .WithImageConfig (image ), hook ))
1522
1520
if err != nil {
1523
1521
t .Fatal (err )
1524
1522
}
0 commit comments