@@ -1405,10 +1405,25 @@ func TestDockerImageReferenceEquality(t *testing.T) {
1405
1405
}
1406
1406
1407
1407
func TestPrioritizeTags (t * testing.T ) {
1408
- tags := []string {"5" , "other" , "latest" , "v5.5" , "v6" , "5.2.3" , "v5.3.6-bother" , "5.3.6-abba" , "5.6" }
1409
- PrioritizeTags (tags )
1410
- if ! reflect .DeepEqual (tags , []string {"latest" , "v6" , "5" , "5.6" , "v5.5" , "v5.3.6-bother" , "5.3.6-abba" , "5.2.3" , "other" }) {
1411
- t .Errorf ("unexpected order: %v" , tags )
1408
+ tests := []struct {
1409
+ tags []string
1410
+ expected []string
1411
+ }{
1412
+ {
1413
+ tags : []string {"5" , "other" , "latest" , "v5.5" , "v6" , "5.2.3" , "v5.3.6-bother" , "5.3.6-abba" , "5.6" },
1414
+ expected : []string {"latest" , "v6" , "5" , "5.6" , "v5.5" , "v5.3.6-bother" , "5.3.6-abba" , "5.2.3" , "other" },
1415
+ },
1416
+ {
1417
+ tags : []string {"1.1-beta1" , "1.2-rc1" , "1.1-rc1" , "1.1-beta2" , "1.2-beta1" , "1.2-alpha1" , "1.2-beta4" , "latest" },
1418
+ expected : []string {"latest" , "1.2-rc1" , "1.2-beta4" , "1.2-beta1" , "1.2-alpha1" , "1.1-rc1" , "1.1-beta2" , "1.1-beta1" },
1419
+ },
1420
+ }
1421
+
1422
+ for i , tc := range tests {
1423
+ PrioritizeTags (tc .tags )
1424
+ if ! reflect .DeepEqual (tc .tags , tc .expected ) {
1425
+ t .Errorf ("%d: unexpected order: %v" , i , tc .tags )
1426
+ }
1412
1427
}
1413
1428
}
1414
1429
0 commit comments