Search in sources :

Example 21 with Note

use of io.grafeas.v1beta1.Note in project java-containeranalysis by googleapis.

the class GrafeasV1Beta1ClientTest method getOccurrenceNoteTest.

@Test
@SuppressWarnings("all")
public void getOccurrenceNoteTest() {
    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);
    OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
    Note actualResponse = client.getOccurrenceNote(name);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockGrafeasV1Beta1.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    GetOccurrenceNoteRequest actualRequest = (GetOccurrenceNoteRequest) actualRequests.get(0);
    Assert.assertEquals(name, OccurrenceName.parse(actualRequest.getName()));
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) GetOccurrenceNoteRequest(io.grafeas.v1beta1.GetOccurrenceNoteRequest) Note(io.grafeas.v1beta1.Note) OccurrenceName(com.google.containeranalysis.v1beta1.OccurrenceName) Test(org.junit.Test)

Example 22 with Note

use of io.grafeas.v1beta1.Note in project java-containeranalysis by googleapis.

the class GrafeasV1Beta1ClientTest method updateNoteExceptionTest.

@Test
@SuppressWarnings("all")
public void updateNoteExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(Status.INVALID_ARGUMENT);
    mockGrafeasV1Beta1.addException(exception);
    try {
        NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
        Note note = Note.newBuilder().build();
        FieldMask updateMask = FieldMask.newBuilder().build();
        client.updateNote(name, note, updateMask);
        Assert.fail("No exception raised");
    } catch (InvalidArgumentException e) {
    // Expected exception
    }
}
Also used : InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) Note(io.grafeas.v1beta1.Note) StatusRuntimeException(io.grpc.StatusRuntimeException) NoteName(com.google.containeranalysis.v1beta1.NoteName) FieldMask(com.google.protobuf.FieldMask) Test(org.junit.Test)

Example 23 with Note

use of io.grafeas.v1beta1.Note in project java-containeranalysis by googleapis.

the class GrafeasV1Beta1ClientTest method listNoteOccurrencesTest.

@Test
@SuppressWarnings("all")
public void listNoteOccurrencesTest() {
    String nextPageToken = "";
    Occurrence occurrencesElement = Occurrence.newBuilder().build();
    List<Occurrence> occurrences = Arrays.asList(occurrencesElement);
    ListNoteOccurrencesResponse expectedResponse = ListNoteOccurrencesResponse.newBuilder().setNextPageToken(nextPageToken).addAllOccurrences(occurrences).build();
    mockGrafeasV1Beta1.addResponse(expectedResponse);
    NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
    String filter = "filter-1274492040";
    ListNoteOccurrencesPagedResponse pagedListResponse = client.listNoteOccurrences(name, filter);
    List<Occurrence> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getOccurrencesList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockGrafeasV1Beta1.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ListNoteOccurrencesRequest actualRequest = (ListNoteOccurrencesRequest) actualRequests.get(0);
    Assert.assertEquals(name, NoteName.parse(actualRequest.getName()));
    Assert.assertEquals(filter, actualRequest.getFilter());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : ListNoteOccurrencesResponse(io.grafeas.v1beta1.ListNoteOccurrencesResponse) AbstractMessage(com.google.protobuf.AbstractMessage) NoteName(com.google.containeranalysis.v1beta1.NoteName) ListNoteOccurrencesPagedResponse(com.google.cloud.devtools.containeranalysis.v1beta1.GrafeasV1Beta1Client.ListNoteOccurrencesPagedResponse) Occurrence(io.grafeas.v1beta1.Occurrence) ListNoteOccurrencesRequest(io.grafeas.v1beta1.ListNoteOccurrencesRequest) Test(org.junit.Test)

Example 24 with Note

use of io.grafeas.v1beta1.Note 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)

Example 25 with Note

use of io.grafeas.v1beta1.Note in project java-containeranalysis by googleapis.

the class GrafeasV1Beta1Client method deleteNote.

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
 * Deletes the specified note.
 *
 * <p>Sample code:
 *
 * <pre><code>
 * try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
 *   NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
 *   grafeasV1Beta1Client.deleteNote(name.toString());
 * }
 * </code></pre>
 *
 * @param name The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
 * @throws com.google.api.gax.rpc.ApiException if the remote call fails
 */
public final void deleteNote(String name) {
    DeleteNoteRequest request = DeleteNoteRequest.newBuilder().setName(name).build();
    deleteNote(request);
}
Also used : DeleteNoteRequest(io.grafeas.v1beta1.DeleteNoteRequest)

Aggregations

Test (org.junit.Test)16 Note (io.grafeas.v1beta1.Note)9 AbstractMessage (com.google.protobuf.AbstractMessage)8 ProjectName (com.google.containeranalysis.v1beta1.ProjectName)5 Note (io.grafeas.v1.Note)5 NoteName (com.google.containeranalysis.v1beta1.NoteName)4 IOException (java.io.IOException)4 BookID (biblemulticonverter.data.BookID)3 FormattingInstructionKind (biblemulticonverter.data.FormattedText.FormattingInstructionKind)3 Visitor (biblemulticonverter.data.FormattedText.Visitor)3 BR (biblemulticonverter.schema.zef2005.BR)3 DIV (biblemulticonverter.schema.zef2005.DIV)3 Note (com.google.containeranalysis.v1alpha1.Note)3 VulnerabilityNote (io.grafeas.v1.VulnerabilityNote)3 Note (biblemulticonverter.schema.usx3.Note)2 Verse (biblemulticonverter.schema.usx3.Verse)2 GRAM (biblemulticonverter.schema.zef2005.GRAM)2 NOTE (biblemulticonverter.schema.zef2005.NOTE)2 STYLE (biblemulticonverter.schema.zef2005.STYLE)2 XREF (biblemulticonverter.schema.zef2005.XREF)2