Search in sources :

Example 6 with ListProductsInProductSetPagedResponse

use of com.google.cloud.vision.v1p4beta1.ProductSearchClient.ListProductsInProductSetPagedResponse in project java-vision by googleapis.

the class ProductSearchClientTest method listProductsInProductSetTest2.

@Test
public void listProductsInProductSetTest2() throws Exception {
    Product responsesElement = Product.newBuilder().build();
    ListProductsInProductSetResponse expectedResponse = ListProductsInProductSetResponse.newBuilder().setNextPageToken("").addAllProducts(Arrays.asList(responsesElement)).build();
    mockProductSearch.addResponse(expectedResponse);
    String name = "name3373707";
    ListProductsInProductSetPagedResponse pagedListResponse = client.listProductsInProductSet(name);
    List<Product> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getProductsList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockProductSearch.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ListProductsInProductSetRequest actualRequest = ((ListProductsInProductSetRequest) actualRequests.get(0));
    Assert.assertEquals(name, actualRequest.getName());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) ListProductsInProductSetPagedResponse(com.google.cloud.vision.v1.ProductSearchClient.ListProductsInProductSetPagedResponse) Test(org.junit.Test)

Aggregations

AbstractMessage (com.google.protobuf.AbstractMessage)6 Test (org.junit.Test)6 ListProductsInProductSetPagedResponse (com.google.cloud.vision.v1.ProductSearchClient.ListProductsInProductSetPagedResponse)2 ListProductsInProductSetPagedResponse (com.google.cloud.vision.v1p3beta1.ProductSearchClient.ListProductsInProductSetPagedResponse)2 ListProductsInProductSetPagedResponse (com.google.cloud.vision.v1p4beta1.ProductSearchClient.ListProductsInProductSetPagedResponse)2