-
Notifications
You must be signed in to change notification settings - Fork 17
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
PR-3244 S3 credential fix #644
Merged
Merged
Changes from all commits
Commits
Show all changes
2 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
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
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
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 |
---|---|---|
|
@@ -1441,6 +1441,34 @@ def test_s3credentials_unauthenticated( | |
assert response.status_code == 301 | ||
|
||
|
||
@mock.patch(f"{MODULE}.get_yaml_file", autospec=True) | ||
@mock.patch(f"{MODULE}.JwtManager.get_profile_from_headers", autospec=True) | ||
@mock.patch(f"{MODULE}.b_map", None) | ||
def test_s3credentials_no_permissions( | ||
mock_get_profile, | ||
mock_get_yaml_file, | ||
mock_get_urs_creds, | ||
mock_make_html_response, | ||
user_profile, | ||
client | ||
): | ||
mock_get_yaml_file.return_value = {} | ||
mock_get_profile.return_value = user_profile | ||
|
||
client.http.get("/s3credentials") | ||
|
||
mock_make_html_response.assert_called_once_with( | ||
{ | ||
"contentstring": "You do not have permission to access any data.", | ||
"title": "Could not access data", | ||
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. Again, a little weird |
||
"requestid": app.app.lambda_context.aws_request_id | ||
}, | ||
{}, | ||
403, | ||
"error.html" | ||
) | ||
|
||
|
||
@mock.patch(f"{MODULE}.boto3") | ||
def test_get_s3_credentials(mock_boto3, monkeypatch): | ||
monkeypatch.setenv("EGRESS_APP_DOWNLOAD_ROLE_INREGION_ARN", "aws:role:arn") | ||
|
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.
I don't think this really matters but it seems weird to have
contentstring
beforetitle
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.
Yea, unfortunately this is the order it's in everywhere. I'd love to refactor this whole file and fix all sorts of stuff like this, but last time I tried to do that I got blocked because people didn't like that refactoring would cause additional commits to be created in the history...