如何模拟谷歌云存储桶并将其链接到客户端对象?

时间:2019-09-25 16:25:36

标签: python mocking google-cloud-storage

我在云运行中有一个功能,并尝试在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')```

1 个答案:

答案 0 :(得分:1)

    def test_read_sql(self):
        storage_client = mock.create_autospec(storage.Client)
        mock_bucket = mock.create_autospec(storage.Bucket)
        mock_blob = mock.create_autospec(storage.Blob)
        mock_bucket.return_value = mock_blob
        storage_client.get_bucket.return_value = mock_bucket
        mock_bucket.get_blob.return_value = mock_blob
        mock_blob.download_as_string.return_value.decode.return_value = "file_content"
        read_content = main.read_sql(storage_client, 'test_bucket', 'test_blob')
        assert read_content == 'file_content'
相关问题