Search in sources :

Example 1 with FieldName

use of com.google.firestore.admin.v1.FieldName in project java-firestore by googleapis.

the class FirestoreAdminClientTest method getFieldTest.

@Test
public void getFieldTest() throws Exception {
    Field expectedResponse = Field.newBuilder().setName(FieldName.of("[PROJECT]", "[DATABASE]", "[COLLECTION]", "[FIELD]").toString()).setIndexConfig(Field.IndexConfig.newBuilder().build()).build();
    mockFirestoreAdmin.addResponse(expectedResponse);
    FieldName name = FieldName.of("[PROJECT]", "[DATABASE]", "[COLLECTION]", "[FIELD]");
    Field actualResponse = client.getField(name);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockFirestoreAdmin.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    GetFieldRequest actualRequest = ((GetFieldRequest) actualRequests.get(0));
    Assert.assertEquals(name.toString(), actualRequest.getName());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : Field(com.google.firestore.admin.v1.Field) AbstractMessage(com.google.protobuf.AbstractMessage) GetFieldRequest(com.google.firestore.admin.v1.GetFieldRequest) FieldName(com.google.firestore.admin.v1.FieldName) Test(org.junit.Test)

Example 2 with FieldName

use of com.google.firestore.admin.v1.FieldName in project java-firestore by googleapis.

the class FirestoreAdminClientTest method getFieldExceptionTest.

@Test
public void getFieldExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
    mockFirestoreAdmin.addException(exception);
    try {
        FieldName name = FieldName.of("[PROJECT]", "[DATABASE]", "[COLLECTION]", "[FIELD]");
        client.getField(name);
        Assert.fail("No exception raised");
    } catch (InvalidArgumentException e) {
    // Expected exception.
    }
}
Also used : InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) StatusRuntimeException(io.grpc.StatusRuntimeException) FieldName(com.google.firestore.admin.v1.FieldName) Test(org.junit.Test)

Aggregations

FieldName (com.google.firestore.admin.v1.FieldName)2 Test (org.junit.Test)2 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)1 Field (com.google.firestore.admin.v1.Field)1 GetFieldRequest (com.google.firestore.admin.v1.GetFieldRequest)1 AbstractMessage (com.google.protobuf.AbstractMessage)1 StatusRuntimeException (io.grpc.StatusRuntimeException)1