Search in sources :

Example 6 with ClusterUpdate

use of com.google.container.v1.ClusterUpdate in project java-container by googleapis.

the class ClusterManagerClientTest method updateClusterExceptionTest.

@Test
public void updateClusterExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
    mockClusterManager.addException(exception);
    try {
        String name = "name3373707";
        ClusterUpdate update = ClusterUpdate.newBuilder().build();
        client.updateCluster(name, update);
        Assert.fail("No exception raised");
    } catch (InvalidArgumentException e) {
    // Expected exception.
    }
}
Also used : InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) ClusterUpdate(com.google.container.v1.ClusterUpdate) StatusRuntimeException(io.grpc.StatusRuntimeException) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)6 ClusterUpdate (com.google.container.v1.ClusterUpdate)4 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)3 AbstractMessage (com.google.protobuf.AbstractMessage)3 StatusRuntimeException (io.grpc.StatusRuntimeException)3 ArrayList (java.util.ArrayList)3 Operation (com.google.container.v1.Operation)2 StatusCondition (com.google.container.v1.StatusCondition)2 UpdateClusterRequest (com.google.container.v1.UpdateClusterRequest)2 ClusterUpdate (com.google.container.v1beta1.ClusterUpdate)2 Operation (com.google.container.v1beta1.Operation)1 StatusCondition (com.google.container.v1beta1.StatusCondition)1 UpdateClusterRequest (com.google.container.v1beta1.UpdateClusterRequest)1