minio/mint/run/core/s3select
Harshavardhana 6128304f6e fix: regression introduced in aws-sdk-go tests
regression was introduced by cce5d7152a
which incorrectly implemented the tests and fixed a wrong requirement,
CompleteMultipart should never succeed in the tests.
2020-12-18 21:14:27 -08:00
..
csv.py fix: regression introduced in aws-sdk-go tests 2020-12-18 21:14:27 -08:00
README.md Support configurable quote character parameter in Select (#8955) 2020-03-13 22:09:34 -07:00
run.sh migrate mint tests to latest versions (#9424) 2020-04-22 16:06:58 -07:00
sql_ops.py fix: regression introduced in aws-sdk-go tests 2020-12-18 21:14:27 -08:00
tests.py fix: s3select tests with new minio-py SDK (#10995) 2020-11-29 13:05:37 -08:00
utils.py feat: time to bring back http2.0 support (#10230) 2020-08-10 09:02:29 -07:00

s3select tests

This directory serves as the location for Mint tests for s3select features. Top level mint.sh calls run.sh to execute tests.

Adding new tests

New tests are added into s3select/tests.py as new functions.

Running tests manually

  • Set environment variables MINT_DATA_DIR, MINT_MODE, SERVER_ENDPOINT, ACCESS_KEY, SECRET_KEY, SERVER_REGION and ENABLE_HTTPS
  • Call run.sh with output log file and error log file. for example
export MINT_DATA_DIR=~/my-mint-dir
export MINT_MODE=core
export SERVER_ENDPOINT="play.min.io"
export ACCESS_KEY="Q3AM3UQ867SPQQA43P2F"
export SECRET_KEY="zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG"
export ENABLE_HTTPS=1
export SERVER_REGION=us-east-1
./run.sh /tmp/output.log /tmp/error.log