use of com.google.cloud.redis.v1.Instance in project java-compute by googleapis.
the class ITSmokeInstancesTest method testDefaultResource.
@Test
public void testDefaultResource() throws InterruptedException {
Instance instanceResource = Instance.newBuilder().build();
try {
instancesClient.insertAsync(DEFAULT_PROJECT, DEFAULT_ZONE, instanceResource).get();
fail("Did not catch the exception");
} catch (ExecutionException ex) {
String message = "com.google.api.gax.rpc.InvalidArgumentException: Bad Request";
Assert.assertEquals(message, ex.getMessage());
}
}
use of com.google.cloud.redis.v1.Instance in project java-compute by googleapis.
the class ITSmokeInstancesTest method testPatch.
@Test
public void testPatch() throws ExecutionException, InterruptedException {
Instance resultInstance = insertInstance();
Assert.assertFalse(resultInstance.getShieldedInstanceConfig().getEnableSecureBoot());
instancesClient.stopAsync(DEFAULT_PROJECT, DEFAULT_ZONE, INSTANCE).get();
ShieldedInstanceConfig shieldedInstanceConfigResource = ShieldedInstanceConfig.newBuilder().setEnableSecureBoot(true).build();
instancesClient.updateShieldedInstanceConfigAsync(DEFAULT_PROJECT, DEFAULT_ZONE, INSTANCE, shieldedInstanceConfigResource).get();
Instance updInstance = getInstance();
Assert.assertTrue(updInstance.getShieldedInstanceConfig().getEnableSecureBoot());
}
use of com.google.cloud.redis.v1.Instance in project java-compute by googleapis.
the class ITSmokeInstancesTest method testResizeGroupToZero.
@Test
public void testResizeGroupToZero() throws IOException, ExecutionException, InterruptedException {
// We test here: 1)set body field to zero
// 2)set query param to zero
List<String> instanceGroupManagersToClean = new ArrayList<>();
List<String> instanceTemplatesToClean = new ArrayList<>();
InstanceTemplatesClient instanceTemplatesClient = InstanceTemplatesClient.create();
InstanceGroupManagersClient instanceGroupManagersClient = InstanceGroupManagersClient.create();
String templateName = generateRandomName("template");
String instanceGroupManagerName = generateRandomName("igm");
Instance instance = insertInstance();
InstanceTemplate instanceTemplate = InstanceTemplate.newBuilder().setSourceInstance(instance.getSelfLink()).setName(templateName).build();
Operation insertOperation = instanceTemplatesClient.insertAsync(DEFAULT_PROJECT, instanceTemplate).get();
instanceTemplatesToClean.add(templateName);
try {
InstanceGroupManager instanceGroupManager = InstanceGroupManager.newBuilder().setName(instanceGroupManagerName).setBaseInstanceName("java-gapic").setInstanceTemplate(insertOperation.getTargetLink()).setTargetSize(0).build();
instanceGroupManagersClient.insertAsync(DEFAULT_PROJECT, DEFAULT_ZONE, instanceGroupManager).get();
instanceGroupManagersToClean.add(instanceGroupManagerName);
InstanceGroupManager fetched = instanceGroupManagersClient.get(DEFAULT_PROJECT, DEFAULT_ZONE, instanceGroupManagerName);
Assert.assertEquals(0, fetched.getTargetSize());
instanceGroupManagersClient.resizeAsync(DEFAULT_PROJECT, DEFAULT_ZONE, instanceGroupManagerName, 1).get();
InstanceGroupManager resizedIGM = instanceGroupManagersClient.get(DEFAULT_PROJECT, DEFAULT_ZONE, instanceGroupManagerName);
Assert.assertEquals(1, resizedIGM.getTargetSize());
instanceGroupManagersClient.resizeAsync(DEFAULT_PROJECT, DEFAULT_ZONE, instanceGroupManagerName, 0).get();
InstanceGroupManager instanceGroupManagerResized = instanceGroupManagersClient.get(DEFAULT_PROJECT, DEFAULT_ZONE, instanceGroupManagerName);
Assert.assertEquals(0, instanceGroupManagerResized.getTargetSize());
} finally {
for (String name : instanceGroupManagersToClean) {
instanceGroupManagersClient.deleteAsync(DEFAULT_PROJECT, DEFAULT_ZONE, name).get();
}
for (String name : instanceTemplatesToClean) {
instanceTemplatesClient.deleteAsync(DEFAULT_PROJECT, name).get();
}
}
}
use of com.google.cloud.redis.v1.Instance in project java-compute by googleapis.
the class ITSmokeInstancesTest method testAggregatedList.
@Test
public void testAggregatedList() throws ExecutionException, InterruptedException {
insertInstance();
boolean presented = false;
InstancesClient.AggregatedListPagedResponse response = instancesClient.aggregatedList(DEFAULT_PROJECT);
for (Map.Entry<String, InstancesScopedList> entry : response.iterateAll()) {
if (entry.getKey().equals("zones/" + DEFAULT_ZONE)) {
for (Instance instance : entry.getValue().getInstancesList()) {
if (instance.getName().equals(INSTANCE)) {
presented = true;
assertInstanceDetails(instance);
}
}
}
}
Assert.assertTrue(presented);
}
use of com.google.cloud.redis.v1.Instance in project java-compute by googleapis.
the class ITSmokeInstancesTest method testUpdateInstanceDescToEmpty.
@Test
public void testUpdateInstanceDescToEmpty() throws ExecutionException, InterruptedException {
// We test here: 1)set body field to an empty string
// 2)unset body field
Instance resultInstance = insertInstance();
Assert.assertEquals("test", resultInstance.getDescription());
Assert.assertEquals(0, resultInstance.getScheduling().getMinNodeCpus());
Instance descInstance = resultInstance.toBuilder().setDescription("").build();
instancesClient.updateAsync(DEFAULT_PROJECT, DEFAULT_ZONE, INSTANCE, descInstance).get();
Instance updated = getInstance();
assertInstanceDetails(updated);
Assert.assertEquals("", updated.getDescription());
Assert.assertEquals(0, resultInstance.getScheduling().getMinNodeCpus());
}
Aggregations