aboutsummaryrefslogtreecommitdiff
path: root/script/test-smoke.sh
Commit message (Collapse)AuthorAgeFilesLines
* [fix-signed-headers] aws signatures v4: don't actually check Content-Type is ↵Alex Auvolat2024-03-011-3/+1
| | | | | | | | | | | | | | | | signed This page of the AWS docs indicate that Content-Type should be part of the CanonicalHeaders (and therefore SignedHeaders) strings in signature calculation: https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-header-based-auth.html However, testing with Minio Client revealed that it did not sign the Content-Type header, and therefore we broke CI by expecting it to be signed. With this commit, we don't mandate Content-Type to be signed anymore, for better compatibility with the ecosystem. Testing against the official behavior of S3 on AWS has not been done.
* smoke test: add multipart upload test with part re-uploadAlex Auvolat2023-06-091-12/+12
|
* Add multipart upload using aws s3apiAlex Auvolat2023-06-091-1/+35
|
* Some things are now in result-binAlex Auvolat2022-10-181-1/+1
|
* Functional tests for admin commandstests/port-integrationQuentin Dufour2022-03-071-15/+0
|
* Functional tests for website endpointsQuentin Dufour2022-03-071-35/+0
|
* Functional test for multipart endpointsQuentin Dufour2022-03-071-103/+0
|
* Functional test for ListMultipartUploadsQuentin Dufour2022-03-071-46/+0
|
* Move ListObjects tests to RustQuentin Dufour2022-03-071-88/+0
|
* Test WinSCPtest/winscpQuentin Dufour2022-03-031-0/+25
|
* Probably fix test-smokev0.6.0Alex Auvolat2022-02-021-4/+4
|
* Improve testing conf + test CORStest/cors-and-localhostQuentin Dufour2022-02-011-3/+23
|
* Add restriction on part ordering in CompleteMultipartUploadv0.6.0-rc1get-head-part-numberAlex Auvolat2022-01-251-7/+7
|
* Test ListParts endpoint with awsclifeatures/list-partsQuentin Dufour2022-01-211-1/+52
|
* Fix extreme value to be less extreme so that integration test works on 32bitsAlex Auvolat2022-01-171-1/+1
|
* Testing for UploadPartCopies and bugfixes in AWS signaturesAlex Auvolat2022-01-131-15/+67
|
* Implement ListMultipartUploads (#171)Quentin2022-01-121-1/+139
| | | | | | | | | | | | | | | | | | | | | | | Implement ListMultipartUploads, also refactor ListObjects and ListObjectsV2. It took me some times as I wanted to propose the following things: - Using an iterator instead of the loop+goto pattern. I find it easier to read and it should enable some optimizations. For example, when consuming keys of a common prefix, we do many [redundant checks](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/main/src/api/s3_list.rs#L125-L156) while the only thing to do is to [check if the following key is still part of the common prefix](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/feature/s3-multipart-compat/src/api/s3_list.rs#L476). - Try to name things (see ExtractionResult and RangeBegin enums) and to separate concerns (see ListQuery and Accumulator) - An IO closure to make unit tests possibles. - Unit tests, to track regressions and document how to interact with the code - Integration tests with `s3api`. In the future, I would like to move them in Rust with the aws rust SDK. Merging of the logic of ListMultipartUploads and ListObjects was not a goal but a consequence of the previous modifications. Some points that we might want to discuss: - ListObjectsV1, when using pagination and delimiters, has a weird behavior (it lists multiple times the same prefix) with `aws s3api` due to the fact that it can not use our optimization to skip the whole prefix. It is independant from my refactor and can be tested with the commented `s3api` tests in `test-smoke.sh`. It probably has the same weird behavior on the official AWS S3 implementation. - Considering ListMultipartUploads, I had to "abuse" upload id marker to support prefix skipping. I send an `upload-id-marker` with the hardcoded value `include` to emulate your "including" token. - Some ways to test ListMultipartUploads with existing software (my tests are limited to s3api for now). Co-authored-by: Quentin Dufour <quentin@deuxfleurs.fr> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/171 Co-authored-by: Quentin <quentin@dufour.io> Co-committed-by: Quentin <quentin@dufour.io>
* Add compression using zstd (#173)trinity-1686a2021-12-151-17/+22
| | | | | | | | | fix #27 Co-authored-by: Trinity Pointard <trinity.pointard@gmail.com> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/173 Co-authored-by: trinity-1686a <trinity.pointard@gmail.com> Co-committed-by: trinity-1686a <trinity.pointard@gmail.com>
* In ListBuckets, hide entry if no permsfeature/hide-buckets-without-permQuentin Dufour2021-11-221-0/+15
|
* Improve how node roles are assigned in Garagev0.5-beta1Alex Auvolat2021-11-161-3/+3
| | | | | | | | | | | | | | | | | - change the terminology: the network configuration becomes the role table, the configuration of a nodes becomes a node's role - the modification of the role table takes place in two steps: first, changes are staged in a CRDT data structure. Then, once the user is happy with the changes, they can commit them all at once (or revert them). - update documentation - fix tests - implement smarter partition assignation algorithm This patch breaks the format of the network configuration: when migrating, the cluster will be in a state where no roles are assigned. All roles must be re-assigned and commited at once. This migration should not pose an issue.
* Improve CLI, adapt tests, update documentationAlex Auvolat2021-10-251-8/+9
|
* Build Garage with Nixfeature/staticQuentin Dufour2021-10-191-2/+2
|
* Add preliminary support for Duckfeature/duckQuentin Dufour2021-05-151-0/+19
|
* S3 API: support ListBucketsQuentin Dufour2021-05-031-0/+4
|
* Add minio & rclone to our functional teststest/more-clientsQuentin Dufour2021-05-021-52/+81
| | | | | | It is now possible to configure which clients you do not want to test with the env variable SKIP_XXX=1, XXX being the client name. eg. SKIP_S3CMD=1 ./script/test-smoke.sh
* Introduce test case that demonstrates #59 (the & problem)Quentin Dufour2021-04-271-17/+23
|
* Update testing scriptQuentin Dufour2020-12-171-0/+14
|
* Reduce garage.1.rnd size to store it inlinefeature/smoke-scriptQuentin2020-12-061-1/+1
|
* Indentation & commentsQuentin2020-12-061-9/+19
|
* Test awscli/s3cmd interactionsQuentin2020-12-061-5/+21
|
* Test garage list & delete commandsQuentin2020-12-061-0/+9
|
* Improve README, add more testsQuentin2020-12-061-5/+9
|
* wip smoke testQuentin2020-12-051-2/+3
|
* Add a smoke test scriptQuentin2020-11-291-0/+22