Search in sources :

Example 1 with ListManagedInstancesPagedResponse

use of com.google.cloud.compute.v1.InstanceGroupManagersClient.ListManagedInstancesPagedResponse in project java-compute by googleapis.

the class InstanceGroupManagersClientTest method listManagedInstancesTest.

@Test
public void listManagedInstancesTest() throws Exception {
    ManagedInstance responsesElement = ManagedInstance.newBuilder().build();
    InstanceGroupManagersListManagedInstancesResponse expectedResponse = InstanceGroupManagersListManagedInstancesResponse.newBuilder().setNextPageToken("").addAllManagedInstances(Arrays.asList(responsesElement)).build();
    mockService.addResponse(expectedResponse);
    String project = "project-6911";
    String zone = "zone-5246";
    String instanceGroupManager = "instanceGroupManager-7543";
    ListManagedInstancesPagedResponse pagedListResponse = client.listManagedInstances(project, zone, instanceGroupManager);
    List<ManagedInstance> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getManagedInstancesList().get(0), resources.get(0));
    List<String> actualRequests = mockService.getRequestPaths();
    Assert.assertEquals(1, actualRequests.size());
    String apiClientHeaderKey = mockService.getRequestHeaders().get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()).iterator().next();
    Assert.assertTrue(GaxHttpJsonProperties.getDefaultApiClientHeaderPattern().matcher(apiClientHeaderKey).matches());
}
Also used : ListManagedInstancesPagedResponse(com.google.cloud.compute.v1.InstanceGroupManagersClient.ListManagedInstancesPagedResponse) Test(org.junit.Test)

Example 2 with ListManagedInstancesPagedResponse

use of com.google.cloud.compute.v1.InstanceGroupManagersClient.ListManagedInstancesPagedResponse in project java-compute by googleapis.

the class RegionInstanceGroupManagersClientTest method listManagedInstancesTest.

@Test
public void listManagedInstancesTest() throws Exception {
    ManagedInstance responsesElement = ManagedInstance.newBuilder().build();
    RegionInstanceGroupManagersListInstancesResponse expectedResponse = RegionInstanceGroupManagersListInstancesResponse.newBuilder().setNextPageToken("").addAllManagedInstances(Arrays.asList(responsesElement)).build();
    mockService.addResponse(expectedResponse);
    String project = "project-6911";
    String region = "region-9622";
    String instanceGroupManager = "instanceGroupManager-7543";
    ListManagedInstancesPagedResponse pagedListResponse = client.listManagedInstances(project, region, instanceGroupManager);
    List<ManagedInstance> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getManagedInstancesList().get(0), resources.get(0));
    List<String> actualRequests = mockService.getRequestPaths();
    Assert.assertEquals(1, actualRequests.size());
    String apiClientHeaderKey = mockService.getRequestHeaders().get(ApiClientHeaderProvider.getDefaultApiClientHeaderKey()).iterator().next();
    Assert.assertTrue(GaxHttpJsonProperties.getDefaultApiClientHeaderPattern().matcher(apiClientHeaderKey).matches());
}
Also used : ListManagedInstancesPagedResponse(com.google.cloud.compute.v1.RegionInstanceGroupManagersClient.ListManagedInstancesPagedResponse) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)2 ListManagedInstancesPagedResponse (com.google.cloud.compute.v1.InstanceGroupManagersClient.ListManagedInstancesPagedResponse)1 ListManagedInstancesPagedResponse (com.google.cloud.compute.v1.RegionInstanceGroupManagersClient.ListManagedInstancesPagedResponse)1