Search in sources :

Example 21 with UptimeCheckConfig

use of com.google.monitoring.v3.UptimeCheckConfig in project java-monitoring by googleapis.

the class UptimeCheckServiceClientTest method updateUptimeCheckConfigExceptionTest.

@Test
public void updateUptimeCheckConfigExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
    mockUptimeCheckService.addException(exception);
    try {
        UptimeCheckConfig uptimeCheckConfig = UptimeCheckConfig.newBuilder().build();
        client.updateUptimeCheckConfig(uptimeCheckConfig);
        Assert.fail("No exception raised");
    } catch (InvalidArgumentException e) {
    // Expected exception.
    }
}
Also used : InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) StatusRuntimeException(io.grpc.StatusRuntimeException) UptimeCheckConfig(com.google.monitoring.v3.UptimeCheckConfig) Test(org.junit.Test)

Example 22 with UptimeCheckConfig

use of com.google.monitoring.v3.UptimeCheckConfig in project java-monitoring by googleapis.

the class UptimeCheckServiceClientTest method listUptimeCheckConfigsTest4.

@Test
public void listUptimeCheckConfigsTest4() throws Exception {
    UptimeCheckConfig responsesElement = UptimeCheckConfig.newBuilder().build();
    ListUptimeCheckConfigsResponse expectedResponse = ListUptimeCheckConfigsResponse.newBuilder().setNextPageToken("").addAllUptimeCheckConfigs(Arrays.asList(responsesElement)).build();
    mockUptimeCheckService.addResponse(expectedResponse);
    String parent = "parent-995424086";
    ListUptimeCheckConfigsPagedResponse pagedListResponse = client.listUptimeCheckConfigs(parent);
    List<UptimeCheckConfig> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getUptimeCheckConfigsList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockUptimeCheckService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ListUptimeCheckConfigsRequest actualRequest = ((ListUptimeCheckConfigsRequest) actualRequests.get(0));
    Assert.assertEquals(parent, actualRequest.getParent());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : ListUptimeCheckConfigsRequest(com.google.monitoring.v3.ListUptimeCheckConfigsRequest) AbstractMessage(com.google.protobuf.AbstractMessage) ListUptimeCheckConfigsResponse(com.google.monitoring.v3.ListUptimeCheckConfigsResponse) ListUptimeCheckConfigsPagedResponse(com.google.cloud.monitoring.v3.UptimeCheckServiceClient.ListUptimeCheckConfigsPagedResponse) UptimeCheckConfig(com.google.monitoring.v3.UptimeCheckConfig) Test(org.junit.Test)

Aggregations

UptimeCheckConfig (com.google.monitoring.v3.UptimeCheckConfig)22 Test (org.junit.Test)16 AbstractMessage (com.google.protobuf.AbstractMessage)11 ArrayList (java.util.ArrayList)7 UptimeCheckServiceClient (com.google.cloud.monitoring.v3.UptimeCheckServiceClient)6 CreateUptimeCheckConfigRequest (com.google.monitoring.v3.CreateUptimeCheckConfigRequest)6 IOException (java.io.IOException)6 ParseException (org.apache.commons.cli.ParseException)6 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)5 StatusRuntimeException (io.grpc.StatusRuntimeException)5 ListUptimeCheckConfigsPagedResponse (com.google.cloud.monitoring.v3.UptimeCheckServiceClient.ListUptimeCheckConfigsPagedResponse)4 ListUptimeCheckConfigsRequest (com.google.monitoring.v3.ListUptimeCheckConfigsRequest)4 ListUptimeCheckConfigsResponse (com.google.monitoring.v3.ListUptimeCheckConfigsResponse)4 FolderName (com.google.monitoring.v3.FolderName)3 OrganizationName (com.google.monitoring.v3.OrganizationName)3 ProjectName (com.google.monitoring.v3.ProjectName)3 UpdateUptimeCheckConfigRequest (com.google.monitoring.v3.UpdateUptimeCheckConfigRequest)3 GetUptimeCheckConfigRequest (com.google.monitoring.v3.GetUptimeCheckConfigRequest)2 UptimeCheckServiceSettings (com.google.cloud.monitoring.v3.UptimeCheckServiceSettings)1 UptimeCheckConfigName (com.google.monitoring.v3.UptimeCheckConfigName)1