Search in sources :

Example 16 with ProjectName

use of com.google.devtools.clouderrorreporting.v1beta1.ProjectName in project google-cloud-java by GoogleCloudPlatform.

the class ErrorStatsServiceClientTest method deleteEventsTest.

@Test
@SuppressWarnings("all")
public void deleteEventsTest() {
    DeleteEventsResponse expectedResponse = DeleteEventsResponse.newBuilder().build();
    mockErrorStatsService.addResponse(expectedResponse);
    ProjectName projectName = ProjectName.create("[PROJECT]");
    DeleteEventsResponse actualResponse = client.deleteEvents(projectName);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<GeneratedMessageV3> actualRequests = mockErrorStatsService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    DeleteEventsRequest actualRequest = (DeleteEventsRequest) actualRequests.get(0);
    Assert.assertEquals(projectName, actualRequest.getProjectNameAsProjectName());
}
Also used : ProjectName(com.google.devtools.clouderrorreporting.v1beta1.ProjectName) DeleteEventsResponse(com.google.devtools.clouderrorreporting.v1beta1.DeleteEventsResponse) DeleteEventsRequest(com.google.devtools.clouderrorreporting.v1beta1.DeleteEventsRequest) GeneratedMessageV3(com.google.protobuf.GeneratedMessageV3) Test(org.junit.Test)

Example 17 with ProjectName

use of com.google.devtools.clouderrorreporting.v1beta1.ProjectName in project google-cloud-java by GoogleCloudPlatform.

the class ErrorStatsServiceClientTest method listEventsExceptionTest.

@Test
@SuppressWarnings("all")
public void listEventsExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
    mockErrorStatsService.addException(exception);
    try {
        ProjectName projectName = ProjectName.create("[PROJECT]");
        String groupId = "groupId506361563";
        client.listEvents(projectName, groupId);
        Assert.fail("No exception raised");
    } catch (ApiException e) {
        Assert.assertEquals(Status.INVALID_ARGUMENT.getCode(), e.getStatusCode());
    }
}
Also used : ProjectName(com.google.devtools.clouderrorreporting.v1beta1.ProjectName) StatusRuntimeException(io.grpc.StatusRuntimeException) ApiException(com.google.api.gax.grpc.ApiException) Test(org.junit.Test)

Example 18 with ProjectName

use of com.google.devtools.clouderrorreporting.v1beta1.ProjectName in project google-cloud-java by GoogleCloudPlatform.

the class ErrorStatsServiceClientTest method listGroupStatsExceptionTest.

@Test
@SuppressWarnings("all")
public void listGroupStatsExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
    mockErrorStatsService.addException(exception);
    try {
        ProjectName projectName = ProjectName.create("[PROJECT]");
        QueryTimeRange timeRange = QueryTimeRange.newBuilder().build();
        client.listGroupStats(projectName, timeRange);
        Assert.fail("No exception raised");
    } catch (ApiException e) {
        Assert.assertEquals(Status.INVALID_ARGUMENT.getCode(), e.getStatusCode());
    }
}
Also used : ProjectName(com.google.devtools.clouderrorreporting.v1beta1.ProjectName) StatusRuntimeException(io.grpc.StatusRuntimeException) QueryTimeRange(com.google.devtools.clouderrorreporting.v1beta1.QueryTimeRange) ApiException(com.google.api.gax.grpc.ApiException) Test(org.junit.Test)

Example 19 with ProjectName

use of com.google.devtools.clouderrorreporting.v1beta1.ProjectName in project google-cloud-java by GoogleCloudPlatform.

the class ErrorStatsServiceClientTest method listEventsTest.

@Test
@SuppressWarnings("all")
public void listEventsTest() {
    String nextPageToken = "";
    ErrorEvent errorEventsElement = ErrorEvent.newBuilder().build();
    List<ErrorEvent> errorEvents = Arrays.asList(errorEventsElement);
    ListEventsResponse expectedResponse = ListEventsResponse.newBuilder().setNextPageToken(nextPageToken).addAllErrorEvents(errorEvents).build();
    mockErrorStatsService.addResponse(expectedResponse);
    ProjectName projectName = ProjectName.create("[PROJECT]");
    String groupId = "groupId506361563";
    ListEventsPagedResponse pagedListResponse = client.listEvents(projectName, groupId);
    List<ErrorEvent> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getErrorEventsList().get(0), resources.get(0));
    List<GeneratedMessageV3> actualRequests = mockErrorStatsService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ListEventsRequest actualRequest = (ListEventsRequest) actualRequests.get(0);
    Assert.assertEquals(projectName, actualRequest.getProjectNameAsProjectName());
    Assert.assertEquals(groupId, actualRequest.getGroupId());
}
Also used : ListEventsResponse(com.google.devtools.clouderrorreporting.v1beta1.ListEventsResponse) ProjectName(com.google.devtools.clouderrorreporting.v1beta1.ProjectName) ListEventsRequest(com.google.devtools.clouderrorreporting.v1beta1.ListEventsRequest) ErrorEvent(com.google.devtools.clouderrorreporting.v1beta1.ErrorEvent) ListEventsPagedResponse(com.google.cloud.errorreporting.spi.v1beta1.PagedResponseWrappers.ListEventsPagedResponse) GeneratedMessageV3(com.google.protobuf.GeneratedMessageV3) Test(org.junit.Test)

Example 20 with ProjectName

use of com.google.devtools.clouderrorreporting.v1beta1.ProjectName in project google-cloud-java by GoogleCloudPlatform.

the class SubscriptionAdminClientTest method listSnapshotsExceptionTest.

@Test
@SuppressWarnings("all")
public void listSnapshotsExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
    mockSubscriber.addException(exception);
    try {
        ProjectName project = ProjectName.create("[PROJECT]");
        client.listSnapshots(project);
        Assert.fail("No exception raised");
    } catch (ApiException e) {
        Assert.assertEquals(Status.INVALID_ARGUMENT.getCode(), e.getStatusCode());
    }
}
Also used : ProjectName(com.google.pubsub.v1.ProjectName) StatusRuntimeException(io.grpc.StatusRuntimeException) ApiException(com.google.api.gax.grpc.ApiException) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)26 ApiException (com.google.api.gax.grpc.ApiException)13 GeneratedMessageV3 (com.google.protobuf.GeneratedMessageV3)13 StatusRuntimeException (io.grpc.StatusRuntimeException)13 ProjectName (com.google.monitoring.v3.ProjectName)12 ProjectName (com.google.devtools.clouderrorreporting.v1beta1.ProjectName)8 ProjectName (com.google.pubsub.v1.ProjectName)6 MetricDescriptor (com.google.api.MetricDescriptor)3 TimeSeries (com.google.monitoring.v3.TimeSeries)3 ByteString (com.google.protobuf.ByteString)3 QueryTimeRange (com.google.devtools.clouderrorreporting.v1beta1.QueryTimeRange)2 ReportedErrorEvent (com.google.devtools.clouderrorreporting.v1beta1.ReportedErrorEvent)2 Group (com.google.monitoring.v3.Group)2 ListTimeSeriesRequest (com.google.monitoring.v3.ListTimeSeriesRequest)2 TimeSeriesView (com.google.monitoring.v3.ListTimeSeriesRequest.TimeSeriesView)2 TimeInterval (com.google.monitoring.v3.TimeInterval)2 ArrayList (java.util.ArrayList)2 MonitoredResourceDescriptor (com.google.api.MonitoredResourceDescriptor)1 ListEventsPagedResponse (com.google.cloud.errorreporting.spi.v1beta1.PagedResponseWrappers.ListEventsPagedResponse)1 ListGroupStatsPagedResponse (com.google.cloud.errorreporting.spi.v1beta1.PagedResponseWrappers.ListGroupStatsPagedResponse)1