Skip to content
Navigation Menu
{{ message }}
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Allow downloading release assets without authentication #13723
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
Draft
BagToad
wants to merge
3
commits into
trunk
Choose a base branch
from
bagtoad/disable-auth-check-release-clone
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+145
−12
Draft
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 hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,70 @@ | ||
| package cmdutil | ||
|
|
||
| import ( | ||
| "testing" | ||
|
|
||
| "github.com/spf13/cobra" | ||
| "github.com/stretchr/testify/require" | ||
| ) | ||
|
|
||
| // Test_EnableRepoOverride_authCheckIntegration is an integration test for the | ||
| // coupling between repo override and the root auth gate, wired through cobra's | ||
| // persistent pre-run hooks. EnableRepoOverride replaces a command's | ||
| // PersistentPreRunE, so cobra no longer reaches the root auth gate on its own; | ||
| // the override hook re-runs the ancestor hooks itself. That re-run must evaluate | ||
| // the command the user actually invoked, the same way cobra hands the target | ||
| // command to parent hooks: | ||
| // https://github.com/spf13/cobra/blob/v1.10.2/command.go#L984-L986 | ||
| // This pins that a leaf's DisableAuthCheck is honored under a repo-override | ||
| // parent. | ||
| func Test_EnableRepoOverride_authCheckIntegration(t *testing.T) { | ||
| tests := []struct { | ||
| name string | ||
| disableAuthLeaf bool | ||
| wantAuthChecked bool | ||
| }{ | ||
| { | ||
| name: "leaf opts out, honored under repo-override parent", | ||
| disableAuthLeaf: true, | ||
| wantAuthChecked: false, | ||
| }, | ||
| { | ||
| name: "leaf does not opt out, auth still checked", | ||
| disableAuthLeaf: false, | ||
| wantAuthChecked: true, | ||
| }, | ||
| } | ||
|
|
||
| for _, tt := range tests { | ||
| t.Run(tt.name, func(t *testing.T) { | ||
| var gotAuthChecked, ranLeaf bool | ||
|
|
||
| // Stand in for the real root auth gate: it judges whatever command | ||
| // it is handed, so it must receive the invoked leaf command. | ||
| root := &cobra.Command{Use: "root"} | ||
| root.PersistentPreRunE = func(cmd *cobra.Command, args []string) error { | ||
| gotAuthChecked = IsAuthCheckEnabled(cmd) | ||
| return nil | ||
| } | ||
|
|
||
| parent := &cobra.Command{Use: "parent"} | ||
| EnableRepoOverride(parent, &Factory{}) | ||
| root.AddCommand(parent) | ||
|
|
||
| leaf := &cobra.Command{ | ||
| Use: "leaf", | ||
| RunE: func(cmd *cobra.Command, args []string) error { ranLeaf = true; return nil }, | ||
| } | ||
| if tt.disableAuthLeaf { | ||
| DisableAuthCheck(leaf) | ||
| } | ||
| parent.AddCommand(leaf) | ||
|
|
||
| root.SetArgs([]string{"parent", "leaf"}) | ||
| require.NoError(t, root.Execute()) | ||
|
|
||
| require.True(t, ranLeaf, "leaf command should have executed") | ||
| require.Equal(t, tt.wantAuthChecked, gotAuthChecked) | ||
| }) | ||
| } | ||
| } |
Oops, something went wrong.
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.
You can’t perform that action at this time.

Uh oh!
There was an error while loading. Please reload this page.