-
Notifications
You must be signed in to change notification settings - Fork 33
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
test: REST multipart upload testing, cleanup #898
Conversation
3803cc0
to
8f54b93
Compare
|
||
# Step 3: generate signature | ||
|
||
date_key=$(echo -n "$year_month_day" | openssl dgst -sha256 -mac HMAC -macopt key:"AWS4${aws_secret_access_key}" | awk '{print $2}') |
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.
This should get wrapped in a function somewhere since the same code is used in another test file.
6334d2a
to
c4825b3
Compare
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.
Just a couple of final nits.
tests/test_common_acl.sh
Outdated
test_put_bucket_acl_s3cmd() { | ||
if [[ $DIRECT != "true" ]]; then | ||
# https://github.com/versity/versitygw/issues/695 | ||
skip |
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.
Can you add a skip message here to appear in the logs please.
tests/test_common_acl.sh
Outdated
test_common_put_bucket_acl() { | ||
if [[ $RECREATE_BUCKETS == "false" ]]; then | ||
# https://github.com/versity/versitygw/issues/716 | ||
skip |
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.
Could use a message here as well.
c4825b3
to
e291f6a
Compare
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.
looking good
No description provided.