use of com.google.logging.v2.ListExclusionsResponse in project java-logging by googleapis.
the class ConfigClientTest method listExclusionsTest.
@Test
public void listExclusionsTest() throws Exception {
LogExclusion responsesElement = LogExclusion.newBuilder().build();
ListExclusionsResponse expectedResponse = ListExclusionsResponse.newBuilder().setNextPageToken("").addAllExclusions(Arrays.asList(responsesElement)).build();
mockConfigServiceV2.addResponse(expectedResponse);
BillingAccountName parent = BillingAccountName.of("[BILLING_ACCOUNT]");
ListExclusionsPagedResponse pagedListResponse = client.listExclusions(parent);
List<LogExclusion> resources = Lists.newArrayList(pagedListResponse.iterateAll());
Assert.assertEquals(1, resources.size());
Assert.assertEquals(expectedResponse.getExclusionsList().get(0), resources.get(0));
List<AbstractMessage> actualRequests = mockConfigServiceV2.getRequests();
Assert.assertEquals(1, actualRequests.size());
ListExclusionsRequest actualRequest = ((ListExclusionsRequest) actualRequests.get(0));
Assert.assertEquals(parent.toString(), actualRequest.getParent());
Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
use of com.google.logging.v2.ListExclusionsResponse in project java-logging by googleapis.
the class LoggingImplTest method testListExclusionWithOptions.
@Test
public void testListExclusionWithOptions() {
EasyMock.replay(rpcFactoryMock);
logging = options.getService();
ListExclusionsRequest request = ListExclusionsRequest.newBuilder().setPageToken(CURSOR).setPageSize(42).setParent(PROJECT_PARENT).build();
List<Exclusion> exclusionList = ImmutableList.of(Exclusion.of(EXCLUSION_NAME, EXCLUSION_FILTER), Exclusion.of(EXCLUSION_NAME, EXCLUSION_FILTER));
ListExclusionsResponse response = ListExclusionsResponse.newBuilder().setNextPageToken(CURSOR).addAllExclusions(Lists.transform(exclusionList, Exclusion.TO_PROTOBUF_FUNCTION)).build();
ApiFuture<ListExclusionsResponse> futureResponse = ApiFutures.immediateFuture(response);
EasyMock.expect(loggingRpcMock.list(request)).andReturn(futureResponse);
EasyMock.replay(loggingRpcMock);
Page<Exclusion> page = logging.listExclusions(ListOption.pageSize(42), ListOption.pageToken(CURSOR));
assertEquals(CURSOR, page.getNextPageToken());
assertArrayEquals(exclusionList.toArray(), Iterables.toArray(page.getValues(), Exclusion.class));
}
use of com.google.logging.v2.ListExclusionsResponse in project java-logging by googleapis.
the class LoggingImplTest method testListExclusions.
@Test
public void testListExclusions() {
EasyMock.replay(rpcFactoryMock);
logging = options.getService();
ListExclusionsRequest request = ListExclusionsRequest.newBuilder().setParent(PROJECT_PARENT).build();
List<Exclusion> exclusionList = ImmutableList.of(Exclusion.of(EXCLUSION_NAME, EXCLUSION_FILTER), Exclusion.of(EXCLUSION_NAME, EXCLUSION_FILTER));
ListExclusionsResponse response = ListExclusionsResponse.newBuilder().setNextPageToken(CURSOR).addAllExclusions(Lists.transform(exclusionList, Exclusion.TO_PROTOBUF_FUNCTION)).build();
ApiFuture<ListExclusionsResponse> futureResponse = ApiFutures.immediateFuture(response);
EasyMock.expect(loggingRpcMock.list(request)).andReturn(futureResponse);
EasyMock.replay(loggingRpcMock);
Page<Exclusion> page = logging.listExclusions();
assertEquals(CURSOR, page.getNextPageToken());
assertArrayEquals(exclusionList.toArray(), Iterables.toArray(page.getValues(), Exclusion.class));
}
use of com.google.logging.v2.ListExclusionsResponse in project java-logging by googleapis.
the class LoggingImplTest method testListExclusionAsyncNextPage.
@Test
public void testListExclusionAsyncNextPage() throws ExecutionException, InterruptedException {
EasyMock.replay(rpcFactoryMock);
logging = options.getService();
ListExclusionsRequest request1 = ListExclusionsRequest.newBuilder().setParent(PROJECT_PARENT).build();
List<Exclusion> exclusionList1 = ImmutableList.of(Exclusion.of(EXCLUSION_NAME, EXCLUSION_FILTER));
ListExclusionsResponse response1 = ListExclusionsResponse.newBuilder().setNextPageToken(CURSOR).addAllExclusions(Lists.transform(exclusionList1, Exclusion.TO_PROTOBUF_FUNCTION)).build();
ListExclusionsRequest request2 = ListExclusionsRequest.newBuilder().setParent(PROJECT_PARENT).setPageToken(CURSOR).build();
List<Exclusion> exclusionList2 = ImmutableList.of(Exclusion.of(EXCLUSION_NAME, EXCLUSION_FILTER));
ListExclusionsResponse response2 = ListExclusionsResponse.newBuilder().setNextPageToken(NEXT_CURSOR).addAllExclusions(Lists.transform(exclusionList2, Exclusion.TO_PROTOBUF_FUNCTION)).build();
ApiFuture<ListExclusionsResponse> futureResponse1 = ApiFutures.immediateFuture(response1);
ApiFuture<ListExclusionsResponse> futureResponse2 = ApiFutures.immediateFuture(response2);
EasyMock.expect(loggingRpcMock.list(request1)).andReturn(futureResponse1);
EasyMock.expect(loggingRpcMock.list(request2)).andReturn(futureResponse2);
EasyMock.replay(loggingRpcMock);
AsyncPage<Exclusion> page = logging.listExclusionsAsync().get();
assertEquals(CURSOR, page.getNextPageToken());
assertArrayEquals(exclusionList1.toArray(), Iterables.toArray(page.getValues(), Exclusion.class));
page = page.getNextPageAsync().get();
assertEquals(NEXT_CURSOR, page.getNextPageToken());
assertArrayEquals(exclusionList2.toArray(), Iterables.toArray(page.getValues(), Exclusion.class));
}
Aggregations