-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: missing tags on images with multiple tags for minikube image list
- Loading branch information
1 parent
0426b38
commit fa650ae
Showing
2 changed files
with
285 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,246 @@ | ||
/* | ||
Copyright 2023 The Kubernetes Authors All rights reserved. | ||
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 machine | ||
|
||
import ( | ||
"reflect" | ||
"sort" | ||
"testing" | ||
|
||
"k8s.io/minikube/pkg/minikube/cruntime" | ||
) | ||
|
||
func TestMergeImageLists(t *testing.T) { | ||
testCases := [][][]cruntime.ListImage{ | ||
// test case 0: from #16556 | ||
// e.g. on node 1 image1 have an item with k8s.gcr.io/image1:v1.0.0 tag | ||
// and another item with registry.k8s.io/image1:v1.0.0 tag too | ||
{ | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"k8s.gcr.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"registry.k8s.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
|
||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"registry.k8s.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"k8s.gcr.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
}, | ||
// test case 1: from #16557 | ||
// e.g. image1 have k8s.gcr.io/image1:v1.0.0 tag on node 1 and registry.k8s.io/image1:v1.0.0 on node 2 | ||
{ | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"k8s.gcr.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"registry.k8s.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"registry.k8s.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"k8s.gcr.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
}, | ||
// test case 2: from #16557 | ||
// e.g. image1 have k8s.gcr.io/image1:v1.0.0 tag on node 1 | ||
// and both k8s.gcr.io/image1:v1.0.0 and registry.k8s.io/image1:v1.0.0 on node 2 | ||
{ | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"k8s.gcr.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"registry.k8s.io/image2:v1.0.0", "k8s.gcr.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"registry.k8s.io/image1:v1.0.0", "k8s.gcr.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"k8s.gcr.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
}, | ||
// test case 3: normal case | ||
{ | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"k8s.gcr.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"registry.k8s.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
{ | ||
{ | ||
ID: "image_id_3", | ||
RepoDigests: []string{"image_digest_3"}, | ||
RepoTags: []string{"registry.k8s.io/image3:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_4", | ||
RepoDigests: []string{"image_digest_4"}, | ||
RepoTags: []string{"k8s.gcr.io/image4:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
}, | ||
} | ||
testResult := [][]cruntime.ListImage{ | ||
// result for test case 0 | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"k8s.gcr.io/image1:v1.0.0", "registry.k8s.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"k8s.gcr.io/image2:v1.0.0", "registry.k8s.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
// result for test case 1 | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"k8s.gcr.io/image1:v1.0.0", "registry.k8s.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"k8s.gcr.io/image2:v1.0.0", "registry.k8s.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
// result for test case 2 | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"k8s.gcr.io/image1:v1.0.0", "registry.k8s.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"k8s.gcr.io/image2:v1.0.0", "registry.k8s.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
// result for test case 3 | ||
{ | ||
{ | ||
ID: "image_id_1", | ||
RepoDigests: []string{"image_digest_1"}, | ||
RepoTags: []string{"k8s.gcr.io/image1:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_2", | ||
RepoDigests: []string{"image_digest_2"}, | ||
RepoTags: []string{"registry.k8s.io/image2:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_3", | ||
RepoDigests: []string{"image_digest_3"}, | ||
RepoTags: []string{"registry.k8s.io/image3:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
{ | ||
ID: "image_id_4", | ||
RepoDigests: []string{"image_digest_4"}, | ||
RepoTags: []string{"k8s.gcr.io/image4:v1.0.0"}, | ||
Size: "1", | ||
}, | ||
}, | ||
} | ||
for index, testCase := range testCases { | ||
actualResult := mergeImageLists(testCase) | ||
sort.Slice(actualResult, func(i, j int) bool { | ||
return actualResult[i].ID < actualResult[j].ID | ||
}) | ||
for _, img := range actualResult { | ||
sort.Slice(img.RepoTags, func(i, j int) bool { | ||
return img.RepoTags[i] < img.RepoTags[j] | ||
}) | ||
} | ||
if ok := reflect.DeepEqual(actualResult, testResult[index]); !ok { | ||
t.Errorf("Failed in testcase %d,\n actual %v,\n expected %v", index, actualResult, testResult[index]) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters