use of com.google.spanner.admin.instance.v1.InstanceConfigName in project java-spanner by googleapis.
the class InstanceAdminGaxTest method createInstanceTest.
@Test
public void createInstanceTest() throws Exception {
boolean methodIsIdempotent = !spanner.getOptions().getInstanceAdminStubSettings().createInstanceOperationSettings().getInitialCallSettings().getRetryableCodes().isEmpty();
if (!methodIsIdempotent && exceptionType == ExceptionType.DELAYED) {
// Skip this test as the method is non-idempotent and won't retry anyways.
return;
}
Exception exception = setupException();
InstanceName name = InstanceName.of(PROJECT, "INSTANCE");
InstanceConfigName config = InstanceConfigName.of(PROJECT, "INSTANCE_CONFIG");
String displayName = "displayName1615086568";
int nodeCount = 1539922066;
com.google.spanner.admin.instance.v1.Instance expectedResponse = com.google.spanner.admin.instance.v1.Instance.newBuilder().setName(name.toString()).setConfig(config.toString()).setDisplayName(displayName).setNodeCount(nodeCount).build();
com.google.longrunning.Operation resultOperation = com.google.longrunning.Operation.newBuilder().setName("createInstanceTest").setDone(true).setResponse(Any.pack(expectedResponse)).build();
if (exceptionAtCall == 0) {
mockInstanceAdmin.addException(exception);
}
mockInstanceAdmin.addResponse(resultOperation);
if (exceptionAtCall == 1) {
mockInstanceAdmin.addException(exception);
}
mockInstanceAdmin.addResponse(resultOperation);
for (int i = 0; i < 2; i++) {
OperationFuture<Instance, CreateInstanceMetadata> actualResponse = client.createInstance(InstanceInfo.newBuilder(InstanceId.of(PROJECT, "INSTANCE")).setDisplayName(displayName).setNodeCount(nodeCount).build());
try {
Instance returnedInstance = actualResponse.get();
if (!methodIsIdempotent && i == exceptionAtCall) {
fail("missing expected exception");
}
Assert.assertEquals(displayName, returnedInstance.getDisplayName());
} catch (ExecutionException e) {
if (!exceptionType.isRetryable() || methodIsIdempotent || i != exceptionAtCall) {
Throwables.throwIfUnchecked(e.getCause());
throw e;
}
}
}
List<AbstractMessage> actualRequests = mockInstanceAdmin.getRequests();
if (methodIsIdempotent) {
Assert.assertEquals(2, actualRequests.size());
} else {
Assert.assertEquals(1, actualRequests.size());
}
}
use of com.google.spanner.admin.instance.v1.InstanceConfigName in project java-spanner by googleapis.
the class SpannerThreadsTest method mockGetInstanceResponse.
private void mockGetInstanceResponse() {
InstanceName name2 = InstanceName.of("[PROJECT]", "[INSTANCE]");
InstanceConfigName config = InstanceConfigName.of("[PROJECT]", "[INSTANCE_CONFIG]");
String displayName = "displayName1615086568";
int nodeCount = 1539922066;
Instance expectedResponse = Instance.newBuilder().setName(name2.toString()).setConfig(config.toString()).setDisplayName(displayName).setNodeCount(nodeCount).build();
mockInstanceAdmin.addResponse(expectedResponse);
}
use of com.google.spanner.admin.instance.v1.InstanceConfigName in project java-spanner by googleapis.
the class InstanceAdminClientTest method getInstanceConfigExceptionTest.
@Test
public void getInstanceConfigExceptionTest() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
mockInstanceAdmin.addException(exception);
try {
InstanceConfigName name = InstanceConfigName.of("[PROJECT]", "[INSTANCE_CONFIG]");
client.getInstanceConfig(name);
Assert.fail("No exception raised");
} catch (InvalidArgumentException e) {
// Expected exception.
}
}
Aggregations