mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-08-20 10:17:03 +08:00
* add object versioning * add missing file * Update weed/s3api/s3api_object_versioning.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update weed/s3api/s3api_object_versioning.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update weed/s3api/s3api_object_versioning.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * ListObjectVersionsResult is better to show multiple version entries * fix test * Update weed/s3api/s3api_object_handlers_put.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update weed/s3api/s3api_object_versioning.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * multiple improvements * move PutBucketVersioningHandler into weed/s3api/s3api_bucket_handlers.go file * duplicated code for reading bucket config, versioningEnabled, etc. try to use functions * opportunity to cache bucket config * error handling if bucket is not found * in case bucket is not found * fix build * add object versioning tests * remove non-existent tests * add tests * add versioning tests * skip a new test * ensure .versions directory exists before saving info into it * fix creating version entry * logging on creating version directory * Update s3api_object_versioning_test.go * retry and wait for directory creation * revert add more logging * Update s3api_object_versioning.go * more debug messages * clean up logs, and touch directory correctly * log the .versions creation and then parent directory listing * use mkFile instead of touch touch is for update * clean up data * add versioning test in go * change location * if modified, latest version is moved to .versions directory, and create a new latest version Core versioning functionality: WORKING TestVersioningBasicWorkflow - PASS TestVersioningDeleteMarkers - PASS TestVersioningMultipleVersionsSameObject - PASS TestVersioningDeleteAndRecreate - PASS TestVersioningListWithPagination - PASS ❌ Some advanced features still failing: ETag calculation issues (using mtime instead of proper MD5) Specific version retrieval (EOF error) Version deletion (internal errors) Concurrent operations (race conditions) * calculate multi chunk md5 Test Results - All Passing: ✅ TestBucketListReturnDataVersioning - PASS ✅ TestVersioningCreateObjectsInOrder - PASS ✅ TestVersioningBasicWorkflow - PASS ✅ TestVersioningMultipleVersionsSameObject - PASS ✅ TestVersioningDeleteMarkers - PASS * dedupe * fix TestVersioningErrorCases * fix eof error of reading old versions * get specific version also check current version * enable integration tests for versioning * trigger action to work for now * Fix GitHub Actions S3 versioning tests workflow - Fix syntax error (incorrect indentation) - Update directory paths from weed/s3api/versioning_tests/ to test/s3/versioning/ - Add push trigger for add-object-versioning branch to enable CI during development - Update artifact paths to match correct directory structure * Improve CI robustness for S3 versioning tests Makefile improvements: - Increase server startup timeout from 30s to 90s for CI environments - Add progressive timeout reporting (logs at 30s, full logs at 90s) - Better error handling with server logs on failure - Add server PID tracking for debugging - Improved test failure reporting GitHub Actions workflow improvements: - Increase job timeouts to account for CI environment delays - Add system information logging (memory, disk space) - Add detailed failure reporting with server logs - Add process and network diagnostics on failure - Better error messaging and log collection These changes should resolve the 'Server failed to start within 30 seconds' issue that was causing the CI tests to fail. * adjust testing volume size * Update Makefile * Update Makefile * Update Makefile * Update Makefile * Update s3-versioning-tests.yml * Update s3api_object_versioning.go * Update Makefile * do not clean up * log received version id * more logs * printout response * print out list version response * use tmp files when put versioned object * change to versions folder layout * Delete weed-test.log * test with mixed versioned and unversioned objects * remove versionDirCache * remove unused functions * remove unused function * remove fallback checking * minor --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
301 lines
20 KiB
YAML
301 lines
20 KiB
YAML
name: "Ceph S3 tests"
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref }}/s3tests
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: docker
|
|
|
|
jobs:
|
|
s3tests:
|
|
name: Ceph S3 tests
|
|
runs-on: ubuntu-22.04
|
|
container:
|
|
image: docker.io/kmlebedev/ceph-s3-tests:0.0.2
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v5.5.0
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
id: go
|
|
|
|
- name: Run Ceph S3 tests with KV store
|
|
timeout-minutes: 15
|
|
env:
|
|
S3TEST_CONF: /__w/seaweedfs/seaweedfs/docker/compose/s3tests.conf
|
|
shell: bash
|
|
run: |
|
|
cd /__w/seaweedfs/seaweedfs/weed
|
|
go install -buildvcs=false
|
|
set -x
|
|
# Create clean data directory for this test run
|
|
export WEED_DATA_DIR="/tmp/seaweedfs-s3tests-$(date +%s)"
|
|
mkdir -p "$WEED_DATA_DIR"
|
|
weed -v 0 server -filer -filer.maxMB=64 -s3 -ip.bind 0.0.0.0 \
|
|
-dir="$WEED_DATA_DIR" \
|
|
-master.raftHashicorp -master.electionTimeout 1s -master.volumeSizeLimitMB=1024 \
|
|
-volume.max=100 -volume.preStopSeconds=1 -s3.port=8000 -metricsPort=9324 \
|
|
-s3.allowEmptyFolder=false -s3.allowDeleteBucketNotEmpty=true -s3.config=../docker/compose/s3.json &
|
|
pid=$!
|
|
sleep 10
|
|
cd /s3-tests
|
|
sed -i "s/assert prefixes == \['foo%2B1\/', 'foo\/', 'quux%20ab\/'\]/assert prefixes == \['foo\/', 'foo%2B1\/', 'quux%20ab\/'\]/" s3tests_boto3/functional/test_s3.py
|
|
tox -- \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_distinct \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_many \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_many \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_encoding_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_prefix \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_prefix_ends_with_delimiter \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_prefix_underscore \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_percentage \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_whitespace \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_dot \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_none \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_prefix_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_prefix_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_prefix_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_prefix_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_fetchowner_notempty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_none \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_none \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_maxkeys_one \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_maxkeys_one \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_maxkeys_zero \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_maxkeys_zero \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_none \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_continuationtoken_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_continuationtoken \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_both_continuationtoken_startafter \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_startafter_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_not_in_list \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_startafter_not_in_list \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_after_list \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_startafter_after_list \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_objects_anonymous_fail \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_objects_anonymous_fail \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_long_name \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_special_prefix \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_delete_notexist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_create_delete \
|
|
s3tests_boto3/functional/test_s3.py::test_object_read_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_multi_object_delete \
|
|
s3tests_boto3/functional/test_s3.py::test_multi_objectv2_delete \
|
|
s3tests_boto3/functional/test_s3.py::test_object_head_zero_bytes \
|
|
s3tests_boto3/functional/test_s3.py::test_object_write_check_etag \
|
|
s3tests_boto3/functional/test_s3.py::test_object_write_cache_control \
|
|
s3tests_boto3/functional/test_s3.py::test_object_write_expires \
|
|
s3tests_boto3/functional/test_s3.py::test_object_write_read_update_read_delete \
|
|
s3tests_boto3/functional/test_s3.py::test_object_metadata_replaced_on_put \
|
|
s3tests_boto3/functional/test_s3.py::test_object_write_file \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_invalid_date_format \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_no_key_specified \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_missing_signature \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_condition_is_case_sensitive \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_expires_is_case_sensitive \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_missing_expires_condition \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_missing_conditions_list \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_upload_size_limit_exceeded \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_missing_content_length_argument \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_invalid_content_length_argument \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_upload_size_below_minimum \
|
|
s3tests_boto3/functional/test_s3.py::test_post_object_empty_conditions \
|
|
s3tests_boto3/functional/test_s3.py::test_get_object_ifmatch_good \
|
|
s3tests_boto3/functional/test_s3.py::test_get_object_ifnonematch_good \
|
|
s3tests_boto3/functional/test_s3.py::test_get_object_ifmatch_failed \
|
|
s3tests_boto3/functional/test_s3.py::test_get_object_ifnonematch_failed \
|
|
s3tests_boto3/functional/test_s3.py::test_get_object_ifmodifiedsince_good \
|
|
s3tests_boto3/functional/test_s3.py::test_get_object_ifmodifiedsince_failed \
|
|
s3tests_boto3/functional/test_s3.py::test_get_object_ifunmodifiedsince_failed \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_head \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_head_notexist \
|
|
s3tests_boto3/functional/test_s3.py::test_object_raw_authenticated \
|
|
s3tests_boto3/functional/test_s3.py::test_object_raw_authenticated_bucket_acl \
|
|
s3tests_boto3/functional/test_s3.py::test_object_raw_authenticated_object_acl \
|
|
s3tests_boto3/functional/test_s3.py::test_object_raw_authenticated_object_gone \
|
|
s3tests_boto3/functional/test_s3.py::test_object_raw_get_x_amz_expires_out_range_zero \
|
|
s3tests_boto3/functional/test_s3.py::test_object_anon_put \
|
|
s3tests_boto3/functional/test_s3.py::test_object_put_authenticated \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_recreate_overwrite_acl \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_recreate_new_acl \
|
|
s3tests_boto3/functional/test_s3.py::test_buckets_create_then_list \
|
|
s3tests_boto3/functional/test_s3.py::test_buckets_list_ctime \
|
|
s3tests_boto3/functional/test_s3.py::test_list_buckets_invalid_auth \
|
|
s3tests_boto3/functional/test_s3.py::test_list_buckets_bad_auth \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_create_naming_good_contains_period \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_create_naming_good_contains_hyphen \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_special_prefix \
|
|
s3tests_boto3/functional/test_s3.py::test_object_copy_zero_size \
|
|
s3tests_boto3/functional/test_s3.py::test_object_copy_same_bucket \
|
|
s3tests_boto3/functional/test_s3.py::test_object_copy_to_itself \
|
|
s3tests_boto3/functional/test_s3.py::test_object_copy_diff_bucket \
|
|
s3tests_boto3/functional/test_s3.py::test_object_copy_canned_acl \
|
|
s3tests_boto3/functional/test_s3.py::test_object_copy_bucket_not_found \
|
|
s3tests_boto3/functional/test_s3.py::test_object_copy_key_not_found \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_copy_small \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_copy_without_range \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_copy_special_names \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_copy_multiple_sizes \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_get_part \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload_multiple_sizes \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload_contents \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload_overwrite_existing_object \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload_size_too_small \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_resend_first_finishes_last \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload_resend_part \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload_missing_part \
|
|
s3tests_boto3/functional/test_s3.py::test_multipart_upload_incorrect_etag \
|
|
s3tests_boto3/functional/test_s3.py::test_abort_multipart_upload \
|
|
s3tests_boto3/functional/test_s3.py::test_list_multipart_upload \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_read_1mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_read_4mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_read_8mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_write_1mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_write_4mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_write_8mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_dual_write_1mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_dual_write_4mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_dual_write_8mb \
|
|
s3tests_boto3/functional/test_s3.py::test_atomic_multipart_upload_write \
|
|
s3tests_boto3/functional/test_s3.py::test_ranged_request_response_code \
|
|
s3tests_boto3/functional/test_s3.py::test_ranged_big_request_response_code \
|
|
s3tests_boto3/functional/test_s3.py::test_ranged_request_skip_leading_bytes_response_code \
|
|
s3tests_boto3/functional/test_s3.py::test_ranged_request_return_trailing_bytes_response_code \
|
|
s3tests_boto3/functional/test_s3.py::test_copy_object_ifmatch_good \
|
|
s3tests_boto3/functional/test_s3.py::test_copy_object_ifnonematch_failed \
|
|
s3tests_boto3/functional/test_s3.py::test_lifecycle_set \
|
|
s3tests_boto3/functional/test_s3.py::test_lifecycle_get \
|
|
s3tests_boto3/functional/test_s3.py::test_lifecycle_set_filter
|
|
kill -9 $pid || true
|
|
# Clean up data directory
|
|
rm -rf "$WEED_DATA_DIR" || true
|
|
|
|
- name: Run Ceph S3 tests with SQL store
|
|
timeout-minutes: 15
|
|
env:
|
|
S3TEST_CONF: /__w/seaweedfs/seaweedfs/docker/compose/s3tests.conf
|
|
shell: bash
|
|
run: |
|
|
cd /__w/seaweedfs/seaweedfs/weed
|
|
go install -tags "sqlite" -buildvcs=false
|
|
# Create clean data directory for this test run
|
|
export WEED_DATA_DIR="/tmp/seaweedfs-sql-test-$(date +%s)"
|
|
mkdir -p "$WEED_DATA_DIR"
|
|
export WEED_LEVELDB2_ENABLED="false" WEED_SQLITE_ENABLED="true" WEED_SQLITE_DBFILE="$WEED_DATA_DIR/filer.db"
|
|
set -x
|
|
weed -v 0 server -filer -filer.maxMB=64 -s3 -ip.bind 0.0.0.0 \
|
|
-dir="$WEED_DATA_DIR" \
|
|
-master.raftHashicorp -master.electionTimeout 1s -master.volumeSizeLimitMB=1024 \
|
|
-volume.max=100 -volume.preStopSeconds=1 -s3.port=8000 -metricsPort=9324 \
|
|
-s3.allowEmptyFolder=false -s3.allowDeleteBucketNotEmpty=true -s3.config=../docker/compose/s3.json &
|
|
pid=$!
|
|
sleep 10
|
|
cd /s3-tests
|
|
sed -i "s/assert prefixes == \['foo%2B1\/', 'foo\/', 'quux%20ab\/'\]/assert prefixes == \['foo\/', 'foo%2B1\/', 'quux%20ab\/'\]/" s3tests_boto3/functional/test_s3.py
|
|
tox -- \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_distinct \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_many \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_many \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_encoding_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_prefix \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_prefix_ends_with_delimiter \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_prefix_underscore \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_percentage \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_whitespace \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_dot \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_none \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_prefix_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_prefix_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_delimiter_prefix_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_delimiter_prefix_delimiter_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_fetchowner_notempty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_basic \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_alt \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_none \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_none \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_not_exist \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_prefix_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_prefix_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_maxkeys_one \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_maxkeys_one \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_maxkeys_zero \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_maxkeys_zero \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_none \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_continuationtoken_empty \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_continuationtoken \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_both_continuationtoken_startafter \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_startafter_unreadable \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_not_in_list \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_startafter_not_in_list \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_marker_after_list \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_startafter_after_list \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_objects_anonymous_fail \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_listv2_objects_anonymous_fail \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_long_name \
|
|
s3tests_boto3/functional/test_s3.py::test_bucket_list_special_prefix
|
|
kill -9 $pid || true
|
|
# Clean up data directory
|
|
rm -rf "$WEED_DATA_DIR" || true
|
|
|
|
|