Search in sources :

Example 1 with Book

use of sqlite.feature.custombean.case2.Book in project gapic-generator-java by googleapis.

the class SyncUpdateBook method syncUpdateBook.

public static void syncUpdateBook() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        UpdateBookRequest request = UpdateBookRequest.newBuilder().setBook(Book.newBuilder().build()).setUpdateMask(FieldMask.newBuilder().build()).build();
        Book response = libraryServiceClient.updateBook(request);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) UpdateBookRequest(com.google.example.library.v1.UpdateBookRequest) Book(com.google.example.library.v1.Book)

Example 2 with Book

use of sqlite.feature.custombean.case2.Book 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 3 with Book

use of sqlite.feature.custombean.case2.Book in project gapic-generator-java by googleapis.

the class LibraryServiceClientTest method listBooksTest2.

@Test
public void listBooksTest2() throws Exception {
    Book responsesElement = Book.newBuilder().build();
    ListBooksResponse expectedResponse = ListBooksResponse.newBuilder().setNextPageToken("").addAllBooks(Arrays.asList(responsesElement)).build();
    mockLibraryService.addResponse(expectedResponse);
    String parent = "parent-995424086";
    ListBooksPagedResponse pagedListResponse = client.listBooks(parent);
    List<Book> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getBooksList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockLibraryService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ListBooksRequest actualRequest = ((ListBooksRequest) actualRequests.get(0));
    Assert.assertEquals(parent, actualRequest.getParent());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) Book(com.google.example.library.v1.Book) ListBooksResponse(com.google.example.library.v1.ListBooksResponse) ListBooksPagedResponse(com.google.cloud.example.library.v1.LibraryServiceClient.ListBooksPagedResponse) ListBooksRequest(com.google.example.library.v1.ListBooksRequest) Test(org.junit.Test)

Example 4 with Book

use of sqlite.feature.custombean.case2.Book 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)

Example 5 with Book

use of sqlite.feature.custombean.case2.Book in project gapic-generator-java by googleapis.

the class LibraryServiceClientTest method moveBookTest2.

@Test
public void moveBookTest2() 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]");
    String otherShelfName = "otherShelfName-1942963547";
    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, 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) Test(org.junit.Test)

Aggregations

Book (com.google.example.library.v1.Book)33 Test (org.junit.Test)20 LibraryServiceClient (com.google.cloud.example.library.v1.LibraryServiceClient)19 Book (student_arturs_melnikovs.lesson_10.level_02.Book)16 AbstractMessage (com.google.protobuf.AbstractMessage)11 ShelfName (com.google.example.library.v1.ShelfName)8 BookName (com.google.example.library.v1.BookName)6 MoveBookRequest (com.google.example.library.v1.MoveBookRequest)6 Scanner (java.util.Scanner)5 CreateBookRequest (com.google.example.library.v1.CreateBookRequest)4 GetBookRequest (com.google.example.library.v1.GetBookRequest)4 Page (org.apache.wicket.Page)4 Book (org.apache.wicket.core.util.tester.apps_1.Book)4 WebPage (org.apache.wicket.markup.html.WebPage)4 AccessDeniedPage (org.apache.wicket.markup.html.pages.AccessDeniedPage)4 DummyPage (org.apache.wicket.resource.DummyPage)4 Book (org.apache.wicket.util.tester.apps_1.Book)4 BaseAndroidTest (base.BaseAndroidTest)3 TransactionResult (com.abubusoft.kripton.android.sqlite.TransactionResult)3 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)3