-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Add s3 presign command #2113
Merged
+243
−3
Merged
Add s3 presign command #2113
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0603322
Define last_kwargs in setUp
jamesls 00baa4e
Ensure config file contents don't influence tests
jamesls d34b89a
Add new s3 "presign" command
jamesls 65c4122
Remove nargs from expires-in, not needed
jamesls 3498d63
Add test for presign with addressing mode
jamesls 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"type": "feature", | ||
"category": "``s3``", | ||
"description": "Add a new ``aws s3 presign`` command, closes `#462 <https://github.com/aws/aws-cli/issues/462>`__" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,187 @@ | ||
# Copyright 2016 Amazon.com, Inc. or its affiliates. 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. A copy of | ||
# the License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "license" file accompanying this file. This file 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. | ||
import datetime | ||
|
||
from botocore.compat import urlsplit | ||
from awscli.testutils import BaseAWSCommandParamsTest, mock, temporary_file | ||
from awscli.testutils import create_clidriver | ||
|
||
|
||
# Values used to fix time.time() and datetime.datetime.utcnow() | ||
# so we know the exact values of the signatures generated. | ||
FROZEN_TIMESTAMP = 1471305652 | ||
DEFAULT_EXPIRES = 3600 | ||
FROZEN_TIME = mock.Mock(return_value=FROZEN_TIMESTAMP) | ||
FROZEN_DATETIME = mock.Mock( | ||
return_value=datetime.datetime(2016, 8, 18, 14, 33, 3, 0)) | ||
|
||
|
||
class TestPresignCommand(BaseAWSCommandParamsTest): | ||
|
||
prefix = 's3 presign ' | ||
|
||
def enable_addressing_mode_in_config(self, fileobj, mode): | ||
fileobj.write( | ||
"[default]\n" | ||
"s3 =\n" | ||
" addressing_style = %s\n" % mode | ||
) | ||
fileobj.flush() | ||
self.environ['AWS_CONFIG_FILE'] = fileobj.name | ||
self.driver = create_clidriver() | ||
|
||
def enable_sigv4_from_config_file(self, fileobj): | ||
fileobj.write( | ||
"[default]\n" | ||
"s3 =\n" | ||
" signature_version = s3v4\n" | ||
) | ||
fileobj.flush() | ||
self.environ['AWS_CONFIG_FILE'] = fileobj.name | ||
self.driver = create_clidriver() | ||
|
||
def assert_presigned_url_matches(self, actual_url, expected_match): | ||
"""Verify generated presigned URL matches expected dict. | ||
|
||
This method compares an actual URL against a dict of expected | ||
values. The reason that the "expected_match" is a dict instead | ||
of the expected presigned URL is because the query params | ||
are unordered so we can't guarantee an expected query param | ||
ordering. | ||
|
||
""" | ||
parts = urlsplit(actual_url) | ||
self.assertEqual(parts.netloc, expected_match['hostname']) | ||
self.assertEqual(parts.path, expected_match['path']) | ||
query_params = self.parse_query_string(parts.query) | ||
self.assertEqual(query_params, expected_match['query_params']) | ||
|
||
def parse_query_string(self, query_string): | ||
pairs = [] | ||
for part in query_string.split('&'): | ||
pairs.append(part.split('=', 1)) | ||
return dict(pairs) | ||
|
||
def get_presigned_url_for_cmd(self, cmdline): | ||
with mock.patch('time.time', FROZEN_TIME): | ||
with mock.patch('datetime.datetime') as d: | ||
d.utcnow = FROZEN_DATETIME | ||
stdout = self.assert_params_for_cmd(cmdline, None)[0].strip() | ||
return stdout | ||
|
||
def test_generates_a_url(self): | ||
stdout = self.get_presigned_url_for_cmd( | ||
self.prefix + 's3://bucket/key') | ||
|
||
self.assert_presigned_url_matches( | ||
stdout, { | ||
'hostname': 'bucket.s3.amazonaws.com', | ||
'path': '/key', | ||
'query_params': { | ||
'AWSAccessKeyId': 'access_key', | ||
'Expires': str(FROZEN_TIMESTAMP + DEFAULT_EXPIRES), | ||
'Signature': '2m9M0eLB%2BqI0nUpkyTskKmHd0Ig%3D', | ||
} | ||
} | ||
) | ||
|
||
def test_handles_non_dns_compatible_buckets(self): | ||
stdout = self.get_presigned_url_for_cmd( | ||
self.prefix + 's3://bucket.dots/key') | ||
|
||
self.assert_presigned_url_matches( | ||
stdout, { | ||
'hostname': 's3.amazonaws.com', | ||
'path': '/bucket.dots/key', | ||
'query_params': { | ||
'AWSAccessKeyId': 'access_key', | ||
'Expires': str(FROZEN_TIMESTAMP + DEFAULT_EXPIRES), | ||
'Signature': '0IiC2vxub438EVcKfEFEMHuoHRw%3D', | ||
} | ||
} | ||
) | ||
|
||
def test_handles_expires_in(self): | ||
expires_in = 1000 | ||
stdout = self.get_presigned_url_for_cmd( | ||
self.prefix + 's3://bucket/key --expires-in %s' % expires_in) | ||
|
||
self.assert_presigned_url_matches( | ||
stdout, { | ||
'hostname': 'bucket.s3.amazonaws.com', | ||
'path': '/key', | ||
'query_params': { | ||
'AWSAccessKeyId': 'access_key', | ||
'Expires': str(FROZEN_TIMESTAMP + expires_in), | ||
'Signature': 'WZEMcfBNlzfTZBq3bOvYef1cfoU%3D', | ||
} | ||
} | ||
) | ||
|
||
def test_handles_sigv4(self): | ||
with temporary_file('w') as f: | ||
self.enable_sigv4_from_config_file(f) | ||
stdout = self.get_presigned_url_for_cmd( | ||
self.prefix + 's3://bucket/key') | ||
|
||
expected = { | ||
'hostname': 's3.amazonaws.com', | ||
'path': '/bucket/key', | ||
'query_params': { | ||
'X-Amz-Algorithm': 'AWS4-HMAC-SHA256', | ||
'X-Amz-Credential': ( | ||
'access_key%2F20160818%2Fus-east-1' | ||
'%2Fs3%2Faws4_request'), | ||
'X-Amz-Date': '20160818T143303Z', | ||
'X-Amz-Expires': '3600', | ||
'X-Amz-Signature': ( | ||
'd20178280d7521b384730c678549f6344401ae040bec559ad0602' | ||
'0854c6c718f'), | ||
'X-Amz-SignedHeaders': 'host' | ||
} | ||
} | ||
self.assert_presigned_url_matches(stdout, expected) | ||
|
||
def test_s3_prefix_not_needed(self): | ||
# Consistent with the 'ls' command. | ||
stdout = self.get_presigned_url_for_cmd( | ||
self.prefix + 'bucket/key') | ||
|
||
self.assert_presigned_url_matches( | ||
stdout, { | ||
'hostname': 'bucket.s3.amazonaws.com', | ||
'path': '/key', | ||
'query_params': { | ||
'AWSAccessKeyId': 'access_key', | ||
'Expires': str(FROZEN_TIMESTAMP + DEFAULT_EXPIRES), | ||
'Signature': '2m9M0eLB%2BqI0nUpkyTskKmHd0Ig%3D', | ||
} | ||
} | ||
) | ||
|
||
def test_can_support_addressing_mode_config(self): | ||
with temporary_file('w') as f: | ||
self.enable_addressing_mode_in_config(f, 'path') | ||
stdout = self.get_presigned_url_for_cmd( | ||
self.prefix + 's3://bucket/key') | ||
self.assert_presigned_url_matches( | ||
stdout, { | ||
'hostname': 's3.amazonaws.com', | ||
'path': '/bucket/key', | ||
'query_params': { | ||
'AWSAccessKeyId': 'access_key', | ||
'Expires': str(FROZEN_TIMESTAMP + DEFAULT_EXPIRES), | ||
'Signature': '2m9M0eLB%2BqI0nUpkyTskKmHd0Ig%3D', | ||
} | ||
} | ||
) |
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
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.
Yeah at the very least we need to make sure sigv4 works but I wonder if we need to add tests for some of the other configuration options like addressing_style and s3 accelerate? My guess is that they should both work based off of the fact that you rely on a client generated somewhere else but probably would not hurt.
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.
S3 accelerate doesn't actually work because of boto/botocore#978. We don't emit the request-created event so we never switch out the hosts.
I can add tests for the addressing styles though.
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.
is S3 acceleration work with the pre-sign URL yet? We have the latest version of Boto and it seems like the issue is still there. The URL has regular host is embedded instead of the accelerated one.