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_v1.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
Пример #2
0
    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])
        client = vision_v1.ProductSearchClient(channel=channel)

        # 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