def test_list_products_in_product_set(self):
        # Setup Expected Response
        next_page_token = ""
        products_element = {}
        products = [products_element]
        expected_response = {
            "next_page_token": next_page_token,
            "products": products
        }
        expected_response = product_search_service_pb2.ListProductsInProductSetResponse(
            **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_v1p4beta1.ProductSearchClient()

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

        paged_list_response = client.list_products_in_product_set(name)
        resources = list(paged_list_response)
        assert len(resources) == 1

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

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.ListProductsInProductSetRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_update_product(self):
        # Setup Expected Response
        name = "name3373707"
        display_name = "displayName1615086568"
        description = "description-1724546052"
        product_category = "productCategory-1607451058"
        expected_response = {
            "name": name,
            "display_name": display_name,
            "description": description,
            "product_category": product_category,
        }
        expected_response = product_search_service_pb2.Product(
            **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_v1p4beta1.ProductSearchClient()

        # Setup Request
        product = {}
        update_mask = {}

        response = client.update_product(product, update_mask)
        assert expected_response == response

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.UpdateProductRequest(
            product=product, update_mask=update_mask)
        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_v1p4beta1.ProductSearchClient()

        # Setup Request
        parent = client.location_path("[PROJECT]", "[LOCATION]")
        product_set = {}
        product_set_id = "productSetId4216680"

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

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.CreateProductSetRequest(
            parent=parent,
            product_set=product_set,
            product_set_id=product_set_id)
        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_v1p4beta1.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
    def test_get_product(self):
        # Setup Expected Response
        name_2 = "name2-1052831874"
        display_name = "displayName1615086568"
        description = "description-1724546052"
        product_category = "productCategory-1607451058"
        expected_response = {
            "name": name_2,
            "display_name": display_name,
            "description": description,
            "product_category": product_category,
        }
        expected_response = product_search_service_pb2.Product(
            **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_v1p4beta1.ProductSearchClient()

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

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

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.GetProductRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_import_product_sets(self):
        # Setup Expected Response
        expected_response = {}
        expected_response = product_search_service_pb2.ImportProductSetsResponse(
            **expected_response)
        operation = operations_pb2.Operation(
            name="operations/test_import_product_sets", done=True)
        operation.response.Pack(expected_response)

        # Mock the API response
        channel = ChannelStub(responses=[operation])
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = vision_v1p4beta1.ProductSearchClient()

        # Setup Request
        parent = client.location_path("[PROJECT]", "[LOCATION]")
        input_config = {}

        response = client.import_product_sets(parent, input_config)
        result = response.result()
        assert expected_response == result

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.ImportProductSetsRequest(
            parent=parent, input_config=input_config)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    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_v1p4beta1.ProductSearchClient()

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

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

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.CreateReferenceImageRequest(
            parent=parent,
            reference_image=reference_image,
            reference_image_id=reference_image_id,
        )
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_list_reference_images(self):
        # Setup Expected Response
        page_size = 883849137
        next_page_token = ""
        reference_images_element = {}
        reference_images = [reference_images_element]
        expected_response = {
            "page_size": page_size,
            "next_page_token": next_page_token,
            "reference_images": reference_images,
        }
        expected_response = product_search_service_pb2.ListReferenceImagesResponse(
            **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_v1p4beta1.ProductSearchClient()

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

        paged_list_response = client.list_reference_images(parent)
        resources = list(paged_list_response)
        assert len(resources) == 1

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

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.ListReferenceImagesRequest(
            parent=parent)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
def sample_delete_product_set():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.DeleteProductSetRequest(name="name_value", )

    # Make the request
    client.delete_product_set(request=request)
    def test_purge_products_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 = vision_v1p4beta1.ProductSearchClient()

        with pytest.raises(CustomException):
            client.purge_products()
def sample_delete_reference_image():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.DeleteReferenceImageRequest(
        name="name_value",
    )

    # Make the request
    client.delete_reference_image(request=request)
def sample_remove_product_from_product_set():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.RemoveProductFromProductSetRequest(
        name="name_value",
        product="product_value",
    )

    # Make the request
    client.remove_product_from_product_set(request=request)
Exemple #13
0
def sample_update_product_set():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.UpdateProductSetRequest()

    # Make the request
    response = client.update_product_set(request=request)

    # Handle the response
    print(response)
Exemple #14
0
def sample_get_product_set():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.GetProductSetRequest(name="name_value", )

    # Make the request
    response = client.get_product_set(request=request)

    # Handle the response
    print(response)
Exemple #15
0
def sample_add_product_to_product_set():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.AddProductToProductSetRequest(
        name="name_value",
        product="product_value",
    )

    # Make the request
    client.add_product_to_product_set(request=request)
    def test_list_reference_images_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 = vision_v1p4beta1.ProductSearchClient()

        # Setup request
        parent = client.product_path("[PROJECT]", "[LOCATION]", "[PRODUCT]")

        paged_list_response = client.list_reference_images(parent)
        with pytest.raises(CustomException):
            list(paged_list_response)
    def test_delete_product_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 = vision_v1p4beta1.ProductSearchClient()

        # Setup request
        name = client.product_path("[PROJECT]", "[LOCATION]", "[PRODUCT]")

        with pytest.raises(CustomException):
            client.delete_product(name)
def sample_list_reference_images():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.ListReferenceImagesRequest(
        parent="parent_value", )

    # Make the request
    page_result = client.list_reference_images(request=request)

    # Handle the response
    for response in page_result:
        print(response)
    def test_update_product_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 = vision_v1p4beta1.ProductSearchClient()

        # Setup request
        product = {}
        update_mask = {}

        with pytest.raises(CustomException):
            client.update_product(product, update_mask)
Exemple #20
0
def sample_list_products_in_product_set():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.ListProductsInProductSetRequest(
        name="name_value",
    )

    # Make the request
    page_result = client.list_products_in_product_set(request=request)

    # Handle the response
    for response in page_result:
        print(response)
    def test_create_product_set_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 = vision_v1p4beta1.ProductSearchClient()

        # Setup request
        parent = client.location_path("[PROJECT]", "[LOCATION]")
        product_set = {}
        product_set_id = "productSetId4216680"

        with pytest.raises(CustomException):
            client.create_product_set(parent, product_set, product_set_id)
def sample_purge_products():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    request = vision_v1p4beta1.PurgeProductsRequest(parent="parent_value", )

    # Make the request
    operation = client.purge_products(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
    def test_create_reference_image_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 = vision_v1p4beta1.ProductSearchClient()

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

        with pytest.raises(CustomException):
            client.create_reference_image(parent, reference_image,
                                          reference_image_id)
    def test_delete_product(self):
        channel = ChannelStub()
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = vision_v1p4beta1.ProductSearchClient()

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

        client.delete_product(name)

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.DeleteProductRequest(
            name=name)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
Exemple #25
0
def sample_create_reference_image():
    # Create a client
    client = vision_v1p4beta1.ProductSearchClient()

    # Initialize request argument(s)
    reference_image = vision_v1p4beta1.ReferenceImage()
    reference_image.uri = "uri_value"

    request = vision_v1p4beta1.CreateReferenceImageRequest(
        parent="parent_value",
        reference_image=reference_image,
    )

    # Make the request
    response = client.create_reference_image(request=request)

    # Handle the response
    print(response)
    def test_remove_product_from_product_set(self):
        channel = ChannelStub()
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = vision_v1p4beta1.ProductSearchClient()

        # Setup Request
        name = client.product_set_path("[PROJECT]", "[LOCATION]",
                                       "[PRODUCT_SET]")
        product = "product-309474065"

        client.remove_product_from_product_set(name, product)

        assert len(channel.requests) == 1
        expected_request = product_search_service_pb2.RemoveProductFromProductSetRequest(
            name=name, product=product)
        actual_request = channel.requests[0][1]
        assert expected_request == actual_request
    def test_purge_products_exception(self):
        # Setup Response
        error = status_pb2.Status()
        operation = operations_pb2.Operation(
            name="operations/test_purge_products_exception", done=True)
        operation.error.CopyFrom(error)

        # Mock the API response
        channel = ChannelStub(responses=[operation])
        patch = mock.patch("google.api_core.grpc_helpers.create_channel")
        with patch as create_channel:
            create_channel.return_value = channel
            client = vision_v1p4beta1.ProductSearchClient()

        # Setup Request
        parent = client.location_path("[PROJECT]", "[LOCATION]")

        response = client.purge_products(parent)
        exception = response.exception()
        assert exception.errors[0] == error
    def test_purge_products(self):
        # Setup Expected Response
        name = "name3373707"
        done = True
        expected_response = {"name": name, "done": done}
        expected_response = operations_pb2.Operation(**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_v1p4beta1.ProductSearchClient()

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

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