Search in sources :

Example 1 with Shelf

use of com.google.example.library.v1.Shelf in project gapic-generator-java by googleapis.

the class LibraryServiceClient method deleteShelf.

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
 * Deletes a shelf. Returns NOT_FOUND if the shelf does not exist.
 *
 * <p>Sample code:
 *
 * <pre>{@code
 * // This snippet has been automatically generated for illustrative purposes only.
 * // It may require modifications to work in your environment.
 * try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
 *   String name = ShelfName.of("[SHELF_ID]").toString();
 *   libraryServiceClient.deleteShelf(name);
 * }
 * }</pre>
 *
 * @param name The name of the shelf to delete.
 * @throws com.google.api.gax.rpc.ApiException if the remote call fails
 */
public final void deleteShelf(String name) {
    DeleteShelfRequest request = DeleteShelfRequest.newBuilder().setName(name).build();
    deleteShelf(request);
}
Also used : DeleteShelfRequest(com.google.example.library.v1.DeleteShelfRequest)

Example 2 with Shelf

use of com.google.example.library.v1.Shelf in project gapic-generator-java by googleapis.

the class LibraryServiceClient method deleteShelf.

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
 * Deletes a shelf. Returns NOT_FOUND if the shelf does not exist.
 *
 * <p>Sample code:
 *
 * <pre>{@code
 * // This snippet has been automatically generated for illustrative purposes only.
 * // It may require modifications to work in your environment.
 * try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
 *   ShelfName name = ShelfName.of("[SHELF_ID]");
 *   libraryServiceClient.deleteShelf(name);
 * }
 * }</pre>
 *
 * @param name The name of the shelf to delete.
 * @throws com.google.api.gax.rpc.ApiException if the remote call fails
 */
public final void deleteShelf(ShelfName name) {
    DeleteShelfRequest request = DeleteShelfRequest.newBuilder().setName(name == null ? null : name.toString()).build();
    deleteShelf(request);
}
Also used : DeleteShelfRequest(com.google.example.library.v1.DeleteShelfRequest)

Example 3 with Shelf

use of com.google.example.library.v1.Shelf in project gapic-generator-java by googleapis.

the class LibraryServiceClientTest method updateBookTest.

@Test
public void updateBookTest() throws Exception {
    Book expectedResponse = Book.newBuilder().setName(BookName.of("[SHELF]", "[BOOK]").toString()).setAuthor("author-1406328437").setTitle("title110371416").setRead(true).build();
    mockLibraryService.addResponse(expectedResponse);
    Book book = Book.newBuilder().build();
    FieldMask updateMask = FieldMask.newBuilder().build();
    Book actualResponse = client.updateBook(book, updateMask);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockLibraryService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    UpdateBookRequest actualRequest = ((UpdateBookRequest) actualRequests.get(0));
    Assert.assertEquals(book, actualRequest.getBook());
    Assert.assertEquals(updateMask, actualRequest.getUpdateMask());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) Book(com.google.example.library.v1.Book) UpdateBookRequest(com.google.example.library.v1.UpdateBookRequest) FieldMask(com.google.protobuf.FieldMask) Test(org.junit.Test)

Example 4 with Shelf

use of com.google.example.library.v1.Shelf in project gapic-generator-java by googleapis.

the class LibraryServiceClientTest method getShelfTest2.

@Test
public void getShelfTest2() throws Exception {
    Shelf expectedResponse = Shelf.newBuilder().setName(ShelfName.of("[SHELF_ID]").toString()).setTheme("theme110327241").build();
    mockLibraryService.addResponse(expectedResponse);
    String name = "name3373707";
    Shelf actualResponse = client.getShelf(name);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockLibraryService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    GetShelfRequest actualRequest = ((GetShelfRequest) actualRequests.get(0));
    Assert.assertEquals(name, actualRequest.getName());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) Shelf(com.google.example.library.v1.Shelf) GetShelfRequest(com.google.example.library.v1.GetShelfRequest) Test(org.junit.Test)

Example 5 with Shelf

use of com.google.example.library.v1.Shelf in project gapic-generator-java by googleapis.

the class LibraryServiceClientTest method moveBookTest.

@Test
public void moveBookTest() throws Exception {
    Book expectedResponse = Book.newBuilder().setName(BookName.of("[SHELF]", "[BOOK]").toString()).setAuthor("author-1406328437").setTitle("title110371416").setRead(true).build();
    mockLibraryService.addResponse(expectedResponse);
    BookName name = BookName.of("[SHELF]", "[BOOK]");
    ShelfName otherShelfName = ShelfName.of("[SHELF_ID]");
    Book actualResponse = client.moveBook(name, otherShelfName);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockLibraryService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    MoveBookRequest actualRequest = ((MoveBookRequest) actualRequests.get(0));
    Assert.assertEquals(name.toString(), actualRequest.getName());
    Assert.assertEquals(otherShelfName.toString(), actualRequest.getOtherShelfName());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : MoveBookRequest(com.google.example.library.v1.MoveBookRequest) AbstractMessage(com.google.protobuf.AbstractMessage) Book(com.google.example.library.v1.Book) BookName(com.google.example.library.v1.BookName) ShelfName(com.google.example.library.v1.ShelfName) Test(org.junit.Test)

Aggregations

LibraryServiceClient (com.google.cloud.example.library.v1.LibraryServiceClient)27 Shelf (com.google.example.library.v1.Shelf)23 Test (org.junit.Test)23 Book (com.google.example.library.v1.Book)19 AbstractMessage (com.google.protobuf.AbstractMessage)18 ShelfName (com.google.example.library.v1.ShelfName)14 BookName (com.google.example.library.v1.BookName)12 MergeShelvesRequest (com.google.example.library.v1.MergeShelvesRequest)6 MoveBookRequest (com.google.example.library.v1.MoveBookRequest)6 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)5 DeleteBookRequest (com.google.example.library.v1.DeleteBookRequest)5 StatusRuntimeException (io.grpc.StatusRuntimeException)5 GetBookRequest (com.google.example.library.v1.GetBookRequest)4 GetShelfRequest (com.google.example.library.v1.GetShelfRequest)4 ListShelvesRequest (com.google.example.library.v1.ListShelvesRequest)3 CreateBookRequest (com.google.example.library.v1.CreateBookRequest)2 CreateShelfRequest (com.google.example.library.v1.CreateShelfRequest)2 DeleteShelfRequest (com.google.example.library.v1.DeleteShelfRequest)2 ListShelvesResponse (com.google.example.library.v1.ListShelvesResponse)2 Empty (com.google.protobuf.Empty)2