-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Podman image trust
tests
#12060
Merged
openshift-merge-robot
merged 3 commits into
containers:main
from
mtrmac:podman-trust-show-f35
Nov 3, 2021
Merged
Fix Podman image trust
tests
#12060
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -14,7 +14,8 @@ import ( | |
|
||
var _ = Describe("Podman trust", func() { | ||
var ( | ||
tempdir string | ||
tempdir string | ||
|
||
err error | ||
podmanTest *PodmanTestIntegration | ||
) | ||
|
@@ -38,21 +39,17 @@ var _ = Describe("Podman trust", func() { | |
}) | ||
|
||
It("podman image trust show", func() { | ||
path, err := os.Getwd() | ||
if err != nil { | ||
os.Exit(1) | ||
} | ||
session := podmanTest.Podman([]string{"image", "trust", "show", "--registrypath", filepath.Dir(path), "--policypath", filepath.Join(filepath.Dir(path), "policy.json")}) | ||
session := podmanTest.Podman([]string{"image", "trust", "show", "--registrypath", filepath.Join(INTEGRATION_ROOT, "test"), "--policypath", filepath.Join(INTEGRATION_ROOT, "test/policy.json")}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session).Should(Exit(0)) | ||
outArray := session.OutputToStringArray() | ||
Expect(len(outArray)).To(Equal(3)) | ||
|
||
// image order is not guaranteed. All we can do is check that | ||
// these strings appear in output, we can't cross-check them. | ||
Expect(session.OutputToString()).To(ContainSubstring("accept")) | ||
Expect(session.OutputToString()).To(ContainSubstring("reject")) | ||
Expect(session.OutputToString()).To(ContainSubstring("signed")) | ||
// Repository order is not guaranteed. So, check that | ||
// all expected lines appear in output; we also check total number of lines, so that handles all of them. | ||
Expect(string(session.Out.Contents())).To(MatchRegexp(`(?m)^default\s+accept\s*$`)) | ||
Expect(string(session.Out.Contents())).To(MatchRegexp(`(?m)^docker.io/library/hello-world\s+reject\s*$`)) | ||
Expect(string(session.Out.Contents())).To(MatchRegexp(`(?m)^registry.access.redhat.com\s+signedBy\[email protected], [email protected]\s+https://access.redhat.com/webassets/docker/content/sigstore\s*$`)) | ||
}) | ||
|
||
It("podman image trust set", func() { | ||
|
@@ -76,24 +73,52 @@ var _ = Describe("Podman trust", func() { | |
}) | ||
|
||
It("podman image trust show --json", func() { | ||
session := podmanTest.Podman([]string{"image", "trust", "show", "--json"}) | ||
session := podmanTest.Podman([]string{"image", "trust", "show", "--registrypath", filepath.Join(INTEGRATION_ROOT, "test"), "--policypath", filepath.Join(INTEGRATION_ROOT, "test/policy.json"), "--json"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session).Should(Exit(0)) | ||
Expect(session.IsJSONOutputValid()).To(BeTrue()) | ||
var teststruct []map[string]string | ||
json.Unmarshal(session.Out.Contents(), &teststruct) | ||
Expect(teststruct[0]["name"]).To(Equal("* (default)")) | ||
Expect(teststruct[0]["repo_name"]).To(Equal("default")) | ||
Expect(teststruct[0]["type"]).To(Equal("accept")) | ||
Expect(teststruct[1]["type"]).To(Equal("insecureAcceptAnything")) | ||
Expect(len(teststruct)).To(Equal(3)) | ||
// To ease comparison, group the unordered array of repos by repo (and we expect only one entry by repo, so order within groups doesn’t matter) | ||
repoMap := map[string][]map[string]string{} | ||
for _, e := range teststruct { | ||
key := e["name"] | ||
repoMap[key] = append(repoMap[key], e) | ||
} | ||
Expect(repoMap).To(Equal(map[string][]map[string]string{ | ||
"* (default)": {{ | ||
"name": "* (default)", | ||
"repo_name": "default", | ||
"sigstore": "", | ||
"transport": "", | ||
"type": "accept", | ||
}}, | ||
"docker.io/library/hello-world": {{ | ||
"name": "docker.io/library/hello-world", | ||
"repo_name": "docker.io/library/hello-world", | ||
"sigstore": "", | ||
"transport": "", | ||
"type": "reject", | ||
}}, | ||
"registry.access.redhat.com": {{ | ||
"name": "registry.access.redhat.com", | ||
"repo_name": "registry.access.redhat.com", | ||
"sigstore": "https://access.redhat.com/webassets/docker/content/sigstore", | ||
"transport": "", | ||
"type": "signedBy", | ||
"gpg_id": "[email protected], [email protected]", | ||
}}, | ||
})) | ||
}) | ||
|
||
It("podman image trust show --raw", func() { | ||
session := podmanTest.Podman([]string{"image", "trust", "show", "--raw"}) | ||
session := podmanTest.Podman([]string{"image", "trust", "show", "--policypath", filepath.Join(INTEGRATION_ROOT, "test/policy.json"), "--raw"}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
session.WaitWithDefaultTimeout() | ||
Expect(session).Should(Exit(0)) | ||
contents, err := ioutil.ReadFile(filepath.Join(INTEGRATION_ROOT, "test/policy.json")) | ||
Expect(err).ShouldNot(HaveOccurred()) | ||
Expect(session.IsJSONOutputValid()).To(BeTrue()) | ||
Expect(session.OutputToString()).To(ContainSubstring("default")) | ||
Expect(session.OutputToString()).To(ContainSubstring("insecureAcceptAnything")) | ||
Expect(string(session.Out.Contents())).To(Equal(string(contents) + "\n")) | ||
}) | ||
}) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that
transport
is always empty.