def test_update_product_set(self):
        # Setup Expected Response
        name = "name3373707"
        display_name = "displayName1615086568"
        expected_response = {"name": name, "display_name": display_name}
        expected_response = product_search_service_pb2.ProductSet(
            **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
        product_set = {}

        response = client.update_product_set(product_set)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.UpdateProductSetRequest(
            product_set=product_set)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_get_product_set(self):
        # Setup Expected Response
        name_2 = "name2-1052831874"
        display_name = "displayName1615086568"
        expected_response = {"name": name_2, "display_name": display_name}
        expected_response = product_search_service_pb2.ProductSet(
            **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.product_set_path("[PROJECT]", "[LOCATION]",
                                       "[PRODUCT_SET]")

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

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.GetProductSetRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_create_product_set(self):
        # Setup Expected Response
        name = 'name3373707'
        display_name = 'displayName1615086568'
        expected_response = {'name': name, 'display_name': display_name}
        expected_response = product_search_service_pb2.ProductSet(
            **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.location_path('[PROJECT]', '[LOCATION]')
        product_set = {}

        response = client.create_product_set(parent, product_set)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.CreateProductSetRequest(
            parent=parent, product_set=product_set)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
Beispiel #4
0
    def test_update_product_set(self):
        # Setup Expected Response
        name = 'name3373707'
        display_name = 'displayName1615086568'
        expected_response = {'name': name, 'display_name': display_name}
        expected_response = product_search_service_pb2.ProductSet(
            **expected_response)

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

        # Setup Request
        product_set = {}

        response = client.update_product_set(product_set)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.UpdateProductSetRequest(
            product_set=product_set)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
Beispiel #5
0
    def test_get_product_set(self):
        # Setup Expected Response
        name_2 = 'name2-1052831874'
        display_name = 'displayName1615086568'
        expected_response = {'name': name_2, 'display_name': display_name}
        expected_response = product_search_service_pb2.ProductSet(
            **expected_response)

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

        # Setup Request
        name = client.product_set_path('[PROJECT]', '[LOCATION]',
                                       '[PRODUCT_SET]')

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

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