我正在尝试编写一个测试来验证 register_extracts_by_location 是否能够从 s3 存储桶中读取并获取文件。在编写 moto 模拟测试时,我收到一条错误消息,指出存储桶不存在。
这是 register_extracts_by_location 方法:
class ProcessTracker:
# ... other methods and init here.
def register_extracts_by_location(self, location_path, location_name=None):
"""
For a given location, find all files and attempt to register them.
:param location_name: Name of the location
:param location_path: Path of the location
:return:
"""
location = LocationTracker(location_path=location_path, location_name=location_name)
if location.location_type.location_type_name == "s3":
s3 = boto3.resource("s3")
path = location.location_path
if path.startswith("s3://"):
path = path[len("s3://")]
bucket = s3.Bucket(path)
for file in bucket.objects.all():
ExtractTracker(process_run=self
, filename=file
, location=location
, status='ready')
else:
for file in os.listdir(location_path):
ExtractTracker(process_run=self
, filename=file
, location=location
, status='ready')
测试的相关部分在这里:
def test_register_extracts_by_location_s3(self):
"""
Testing that when the location is s3, all the extracts are registered and set to 'ready' status.
The process/extract relationship should also be set to 'ready' since that is the last status the process set
the extracts to.
:return:
"""
process_status = aliased(ExtractStatus)
extract_status = aliased(ExtractStatus)
expected_keys = 'test_local_dir_1.csv', 'test_local_dir_2.csv'
with moto.mock_s3():
conn = boto3.resource('s3', region_name='us-east-1')
conn.create_bucket(Bucket='test_bucket')
for file in expected_keys:
conn.Object('test_bucket', file)
self.process_tracker.register_extracts_by_location(location_path='s3://test_bucket')
看来 boto3 仍在外出和连接,但我现在不确定。收到的错误是:
botocore.errorfactory.NoSuchBucket: An error occurred (NoSuchBucket) when calling the ListObjects operation: The specified bucket does not exist