def test_list_photos(self):
        # Setup Expected Response
        next_page_token = ''
        photos_element = {}
        photos = [photos_element]
        expected_response = {
            'next_page_token': next_page_token,
            'photos': photos
        }
        expected_response = rpcmessages_pb2.ListPhotosResponse(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        # Setup Request
        view = enums.PhotoView.BASIC
        filter_ = 'filter-1274492040'

        paged_list_response = client.list_photos(view, filter_)
        resources = list(paged_list_response)
        assert len(resources) == 1

        assert expected_response.photos[0] == resources[0]

        assert len(channel.requests) == 1
        expected_request = rpcmessages_pb2.ListPhotosRequest(view=view,
                                                             filter=filter_)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_create_photo(self):
        # Setup Expected Response
        download_url = 'downloadUrl1109408056'
        thumbnail_url = 'thumbnailUrl1825632156'
        share_link = 'shareLink-1788203942'
        view_count = 1534353675
        expected_response = {
            'download_url': download_url,
            'thumbnail_url': thumbnail_url,
            'share_link': share_link,
            'view_count': view_count
        }
        expected_response = resources_pb2.Photo(**expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        # Setup Request
        photo = {}

        response = client.create_photo(photo)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = rpcmessages_pb2.CreatePhotoRequest(photo=photo)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_batch_get_photos(self):
        # Setup Expected Response
        expected_response = {}
        expected_response = rpcmessages_pb2.BatchGetPhotosResponse(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        # Setup Request
        photo_ids = []
        view = enums.PhotoView.BASIC

        response = client.batch_get_photos(photo_ids, view)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = rpcmessages_pb2.BatchGetPhotosRequest(
            photo_ids=photo_ids, view=view)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_start_upload_exception(self):
        # Mock the API response
        channel = ChannelStub(responses=[CustomException()])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        with pytest.raises(CustomException):
            client.start_upload()
    def test_batch_delete_photos_exception(self):
        # Mock the API response
        channel = ChannelStub(responses=[CustomException()])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        # Setup request
        photo_ids = []

        with pytest.raises(CustomException):
            client.batch_delete_photos(photo_ids)
    def test_list_photos_exception(self):
        channel = ChannelStub(responses=[CustomException()])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        # Setup request
        view = enums.PhotoView.BASIC
        filter_ = 'filter-1274492040'

        paged_list_response = client.list_photos(view, filter_)
        with pytest.raises(CustomException):
            list(paged_list_response)
    def test_get_photo_exception(self):
        # Mock the API response
        channel = ChannelStub(responses=[CustomException()])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        # Setup request
        photo_id = 'photoId-1274270136'
        view = enums.PhotoView.BASIC

        with pytest.raises(CustomException):
            client.get_photo(photo_id, view)
    def test_delete_photo(self):
        channel = ChannelStub()
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        # Setup Request
        photo_id = 'photoId-1274270136'

        client.delete_photo(photo_id)

        assert len(channel.requests) == 1
        expected_request = rpcmessages_pb2.DeletePhotoRequest(
            photo_id=photo_id)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_start_upload(self):
        # Setup Expected Response
        upload_url = 'uploadUrl-242738639'
        expected_response = {'upload_url': upload_url}
        expected_response = resources_pb2.UploadRef(**expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        patch = mock.patch('google.api_core.grpc_helpers.create_channel')
        with patch as create_channel:
            create_channel.return_value = channel
            client = publish_v1.StreetViewPublishServiceClient()

        response = client.start_upload()
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = empty_pb2.Empty()
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
Exemplo n.º 10
0
    def test_create_photo(self):
        with pytest.raises(InvalidArgument):

            client = publish_v1.StreetViewPublishServiceClient()
            photo = {}
            response = client.create_photo(photo)