| 105 | ::testing::AddGlobalTestEnvironment(new MinioTestEnvironment(/*enable_tls=*/true)); |
| 106 | |
| 107 | MinioTestEnvironment* GetMinioEnv(bool enable_tls) { |
| 108 | if (enable_tls) { |
| 109 | return ::arrow::internal::checked_cast<MinioTestEnvironment*>(minio_env_https); |
| 110 | } else { |
| 111 | return ::arrow::internal::checked_cast<MinioTestEnvironment*>(minio_env); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | class ShortRetryStrategy : public S3RetryStrategy { |
| 116 | public: |