def test_create_reference_image(self):
        # Setup Expected Response
        name = "name3373707"
        uri = "uri116076"
        expected_response = {"name": name, "uri": uri}
        expected_response = product_search_service_pb2.ReferenceImage(
            **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 = vision_v1.ProductSearchClient()

        # Setup Request
        parent = client.product_path("[PROJECT]", "[LOCATION]", "[PRODUCT]")
        reference_image = {}

        response = client.create_reference_image(parent, reference_image)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.CreateReferenceImageRequest(
            parent=parent, reference_image=reference_image)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_get_reference_image(self):
        # Setup Expected Response
        name_2 = "name2-1052831874"
        uri = "uri116076"
        expected_response = {"name": name_2, "uri": uri}
        expected_response = product_search_service_pb2.ReferenceImage(
            **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 = vision_v1.ProductSearchClient()

        # Setup Request
        name = client.reference_image_path("[PROJECT]", "[LOCATION]",
                                           "[PRODUCT]", "[REFERENCE_IMAGE]")

        response = client.get_reference_image(name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.GetReferenceImageRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
Ejemplo n.º 3
0
    def test_create_reference_image(self):
        # Setup Expected Response
        name = 'name3373707'
        uri = 'uri116076'
        expected_response = {'name': name, 'uri': uri}
        expected_response = product_search_service_pb2.ReferenceImage(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        client = vision_v1.ProductSearchClient(channel=channel)

        # Setup Request
        parent = client.product_path('[PROJECT]', '[LOCATION]', '[PRODUCT]')
        reference_image = {}

        response = client.create_reference_image(parent, reference_image)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.CreateReferenceImageRequest(
            parent=parent, reference_image=reference_image)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
Ejemplo n.º 4
0
    def test_get_reference_image(self):
        # Setup Expected Response
        name_2 = 'name2-1052831874'
        uri = 'uri116076'
        expected_response = {'name': name_2, 'uri': uri}
        expected_response = product_search_service_pb2.ReferenceImage(
            **expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[expected_response])
        client = vision_v1.ProductSearchClient(channel=channel)

        # Setup Request
        name = client.image_path('[PROJECT]', '[LOCATION]', '[PRODUCT]',
                                 '[IMAGE]')

        response = client.get_reference_image(name)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.GetReferenceImageRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request