-
Notifications
You must be signed in to change notification settings - Fork 35
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 checksum crc64nvme #1096
Open
lrm25
wants to merge
2
commits into
main
Choose a base branch
from
test/rest_checksum_crc64nvme
base: main
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.
Open
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright 2024 Versity Software | ||
# This file is licensed under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http:#www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License 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. | ||
|
||
source ./tests/rest_scripts/rest.sh | ||
|
||
if [ -z "$TEST_FILE_FOLDER" ] || [ -z "$DATA_FILE" ]; then | ||
log_rest 2 "TEST_FILE_FOLDER and DATA_FILE params required for crc64nvme checksum (for python virtual env)" | ||
exit 1 | ||
fi | ||
if ! python3 -m venv "$TEST_FILE_FOLDER/env" 1>/dev/null; then | ||
log_rest 2 "error creating python virtual environment" | ||
exit 1 | ||
fi | ||
if ! source "$TEST_FILE_FOLDER/env/bin/activate" 1>/dev/null; then | ||
log_rest 2 "error activating virtual environment" | ||
exit 1 | ||
fi | ||
if ! python3 -m pip install awscrt 1>/dev/null 2>&1; then | ||
log_rest 2 "error installing awscrt" | ||
exit 1 | ||
fi | ||
if ! checksum_decimal=$(python3 -c " | ||
import sys | ||
from awscrt import checksums | ||
|
||
with open(sys.argv[1], 'rb') as f: | ||
print(checksums.crc64nvme(f.read()))" "$DATA_FILE" 2>&1); then | ||
log_rest 2 "error calculating checksum: $checksum_decimal" | ||
exit 1 | ||
fi | ||
log 5 "decimal checksum: $checksum_decimal" | ||
if ! deactivate 1>/dev/null; then | ||
log_rest 2 "error deactivating virtual environment" | ||
exit 1 | ||
fi | ||
checksum_hash=$(printf "%016x" "$checksum_decimal" | xxd -r -p | base64) | ||
echo "$checksum_hash" |
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,40 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright 2024 Versity Software | ||
# This file is licensed under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http:#www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License 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. | ||
|
||
# Fields | ||
|
||
source ./tests/rest_scripts/rest.sh | ||
|
||
# shellcheck disable=SC2153 | ||
bucket_name="$BUCKET_NAME" | ||
|
||
current_date_time=$(date -u +"%Y%m%dT%H%M%SZ") | ||
canonical_request_data=("GET" "/$bucket_name" "object-lock=" "host:$host") | ||
canonical_request_data+=("x-amz-content-sha256:UNSIGNED-PAYLOAD" "x-amz-date:$current_date_time") | ||
if ! build_canonical_request "${canonical_request_data[@]}"; then | ||
log_rest 2 "error building request" | ||
exit 1 | ||
fi | ||
|
||
# shellcheck disable=SC2119 | ||
create_canonical_hash_sts_and_signature | ||
|
||
# shellcheck disable=SC2154 | ||
curl_command+=(curl -ks -w "\"%{http_code}\"" "$AWS_ENDPOINT_URL/$bucket_name?object-lock") | ||
curl_command+=(-H "\"Authorization: AWS4-HMAC-SHA256 Credential=$AWS_ACCESS_KEY_ID/$year_month_day/$AWS_REGION/s3/aws4_request,SignedHeaders=$param_list,Signature=$signature\"") | ||
curl_command+=("${header_fields[@]}") | ||
curl_command+=(-o "$OUTPUT_FILE") | ||
eval "${curl_command[*]}" 2>&1 |
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
Oops, something went wrong.
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.
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 seems like something that could be built into the test vm itself, so that we don't have to keep installing it. Perhaps as a pre-built script that is installed and can then be executed as needed?