Search in sources :

Example 16 with ListBucketsResponse

use of com.google.storage.v2.ListBucketsResponse in project gapic-generator-java by googleapis.

the class StorageClientTest method listBucketsTest.

@Test
public void listBucketsTest() throws Exception {
    Bucket responsesElement = Bucket.newBuilder().build();
    ListBucketsResponse expectedResponse = ListBucketsResponse.newBuilder().setNextPageToken("").addAllBuckets(Arrays.asList(responsesElement)).build();
    mockStorage.addResponse(expectedResponse);
    ProjectName parent = ProjectName.of("[PROJECT]");
    ListBucketsPagedResponse pagedListResponse = client.listBuckets(parent);
    List<Bucket> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getBucketsList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockStorage.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ListBucketsRequest actualRequest = ((ListBucketsRequest) actualRequests.get(0));
    Assert.assertEquals(parent.toString(), actualRequest.getParent());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : ListBucketsPagedResponse(com.google.storage.v2.StorageClient.ListBucketsPagedResponse) AbstractMessage(com.google.protobuf.AbstractMessage) Test(org.junit.Test)

Aggregations

AbstractMessage (com.google.protobuf.AbstractMessage)14 Test (org.junit.Test)14 ListBucketsRequest (com.google.logging.v2.ListBucketsRequest)11 ListBucketsResponse (com.google.logging.v2.ListBucketsResponse)11 LogBucket (com.google.logging.v2.LogBucket)11 ListBucketsPagedResponse (com.google.cloud.logging.v2.ConfigClient.ListBucketsPagedResponse)10 BillingAccountLocationName (com.google.logging.v2.BillingAccountLocationName)4 FolderLocationName (com.google.logging.v2.FolderLocationName)4 OrganizationLocationName (com.google.logging.v2.OrganizationLocationName)4 ListBucketsPagedResponse (com.google.storage.v2.StorageClient.ListBucketsPagedResponse)4 LocationName (com.google.logging.v2.LocationName)2 ByteString (com.google.protobuf.ByteString)2 ConfigClient (com.google.cloud.logging.v2.ConfigClient)1 Bucket (com.google.storage.v2.Bucket)1 ListBucketsRequest (com.google.storage.v2.ListBucketsRequest)1 ListBucketsResponse (com.google.storage.v2.ListBucketsResponse)1 StorageClient (com.google.storage.v2.StorageClient)1