|
| 1 | +# Copyright 1999-2021 Alibaba Group Holding Ltd. |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | +import os |
| 15 | + |
| 16 | +import pytest |
| 17 | + |
| 18 | +from ....dataframe import read_csv |
| 19 | +from ..core import register_filesystem |
| 20 | +from ..s3 import S3FileSystem |
| 21 | + |
| 22 | + |
| 23 | +class KwArgsException(Exception): |
| 24 | + def __init__(self, kwargs): |
| 25 | + self.kwargs = kwargs |
| 26 | + |
| 27 | + |
| 28 | +if S3FileSystem is not None: |
| 29 | + |
| 30 | + class TestS3FileSystem(S3FileSystem): |
| 31 | + def __init__(self, **kwargs): |
| 32 | + super().__init__(**kwargs) |
| 33 | + raise KwArgsException(kwargs) |
| 34 | + |
| 35 | +else: |
| 36 | + TestS3FileSystem = None |
| 37 | + |
| 38 | + |
| 39 | +@pytest.mark.skipif(S3FileSystem is None, reason="S3 is not supported") |
| 40 | +def test_client_kwargs(): |
| 41 | + register_filesystem("s3", TestS3FileSystem) |
| 42 | + |
| 43 | + test_kwargs = { |
| 44 | + "endpoint_url": "http://192.168.1.12:9000", |
| 45 | + "aws_access_key_id": "test_id", |
| 46 | + "aws_secret_access_key": "test_key", |
| 47 | + "aws_session_token": "test_session_token", |
| 48 | + } |
| 49 | + |
| 50 | + def _assert_true(): |
| 51 | + # Pass endpoint_url / aws_access_key_id / aws_secret_access_key / aws_session_token to read_csv. |
| 52 | + with pytest.raises(KwArgsException) as e: |
| 53 | + read_csv( |
| 54 | + "s3://bucket/example.csv", |
| 55 | + index_col=0, |
| 56 | + storage_options={"client_kwargs": test_kwargs}, |
| 57 | + ) |
| 58 | + assert e.value.kwargs == { |
| 59 | + "client_kwargs": { |
| 60 | + "endpoint_url": "http://192.168.1.12:9000", |
| 61 | + "aws_access_key_id": "test_id", |
| 62 | + "aws_secret_access_key": "test_key", |
| 63 | + "aws_session_token": "test_session_token", |
| 64 | + } |
| 65 | + } |
| 66 | + |
| 67 | + _assert_true() |
| 68 | + |
| 69 | + test_env = { |
| 70 | + "AWS_ENDPOINT_URL": "a", |
| 71 | + "AWS_ACCESS_KEY_ID": "b", |
| 72 | + "AWS_SECRET_ACCESS_KEY": "c", |
| 73 | + "AWS_SESSION_TOKEN": "d", |
| 74 | + } |
| 75 | + for k, v in test_env.items(): |
| 76 | + os.environ[k] = v |
| 77 | + |
| 78 | + try: |
| 79 | + _assert_true() |
| 80 | + |
| 81 | + for k, v in test_kwargs.items(): |
| 82 | + with pytest.raises(KwArgsException) as e: |
| 83 | + read_csv( |
| 84 | + "s3://bucket/example.csv", |
| 85 | + index_col=0, |
| 86 | + storage_options={"client_kwargs": {k: v}}, |
| 87 | + ) |
| 88 | + expect = { |
| 89 | + "endpoint_url": "a", |
| 90 | + "aws_access_key_id": "b", |
| 91 | + "aws_secret_access_key": "c", |
| 92 | + "aws_session_token": "d", |
| 93 | + } |
| 94 | + expect[k] = v |
| 95 | + assert e.value.kwargs == {"client_kwargs": expect} |
| 96 | + finally: |
| 97 | + for k, v in test_env.items(): |
| 98 | + os.environ.pop(k, None) |
0 commit comments