我在云运行中有一个函数,并尝试在 Python 中使用模拟进行测试。如何使用 blob 模拟存储桶并将其附加到存储客户端?断言失败,它以这种格式显示输出
Display File content: <MagicMock name='mock.get_bucket().get_blob().download_as_string().decode()' id='140590658508168'>
# test
def test_read_sql(self):
storage_client = mock.create_autospec(storage.Client)
mock_bucket = storage_client.get_bucket('test-bucket')
mock_blob = mock_bucket.blob('blob1')
mock_blob.upload_from_string("file_content")
read_content = main.read_sql(storage_client, mock_bucket, mock_blob)
print('File content: {}'.format(read_content))
assert read_content == 'file_content'
# actual method
def read_sql(gcs_client, bucket_id, file_name):
bucket = gcs_client.get_bucket(bucket_id)
blob = bucket.get_blob(file_name)
contents = blob.download_as_string()
return contents.decode('utf-8')```
holdtom
相关分类