Search in sources :

Example 16 with NoteName

use of com.google.containeranalysis.v1beta1.NoteName in project java-containeranalysis by googleapis.

the class GrafeasV1Beta1ClientTest method getNoteTest.

@Test
@SuppressWarnings("all")
public void getNoteTest() {
    String name2 = "name2-1052831874";
    String shortDescription = "shortDescription-235369287";
    String longDescription = "longDescription-1747792199";
    Note expectedResponse = Note.newBuilder().setName(name2).setShortDescription(shortDescription).setLongDescription(longDescription).build();
    mockGrafeasV1Beta1.addResponse(expectedResponse);
    NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
    Note actualResponse = client.getNote(name);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockGrafeasV1Beta1.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    GetNoteRequest actualRequest = (GetNoteRequest) actualRequests.get(0);
    Assert.assertEquals(name, NoteName.parse(actualRequest.getName()));
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) Note(io.grafeas.v1beta1.Note) NoteName(com.google.containeranalysis.v1beta1.NoteName) GetNoteRequest(io.grafeas.v1beta1.GetNoteRequest) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)12 NoteName (com.google.containeranalysis.v1beta1.NoteName)8 AbstractMessage (com.google.protobuf.AbstractMessage)7 GrafeasClient (io.grafeas.v1.GrafeasClient)5 NoteName (io.grafeas.v1.NoteName)5 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)4 Occurrence (io.grafeas.v1beta1.Occurrence)4 StatusRuntimeException (io.grpc.StatusRuntimeException)4 FieldMask (com.google.protobuf.FieldMask)3 Occurrence (io.grafeas.v1.Occurrence)3 Note (io.grafeas.v1beta1.Note)3 OccurrenceName (com.google.containeranalysis.v1beta1.OccurrenceName)2 Note (io.grafeas.v1.Note)2 VulnerabilityOccurrence (io.grafeas.v1.VulnerabilityOccurrence)2 ListNoteOccurrencesPagedResponse (com.google.cloud.devtools.containeranalysis.v1beta1.GrafeasV1Beta1Client.ListNoteOccurrencesPagedResponse)1 ProjectName (com.google.containeranalysis.v1beta1.ProjectName)1 Empty (com.google.protobuf.Empty)1 DiscoveryNote (io.grafeas.v1.DiscoveryNote)1 DiscoveryOccurrence (io.grafeas.v1.DiscoveryOccurrence)1 AnalysisStatus (io.grafeas.v1.DiscoveryOccurrence.AnalysisStatus)1