Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
test: add system test for update redis instance
Browse files Browse the repository at this point in the history
Fixes #64
  • Loading branch information
athakor committed Feb 14, 2020
1 parent c21e230 commit 63d937e
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 96 deletions.

This file was deleted.

@@ -0,0 +1,109 @@
/*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.google.cloud.redis.v1beta1.it;

import static org.junit.Assert.assertEquals;

import com.google.cloud.ServiceOptions;
import com.google.cloud.redis.v1beta1.CloudRedisClient;
import com.google.cloud.redis.v1beta1.Instance;
import com.google.cloud.redis.v1beta1.InstanceName;
import com.google.cloud.redis.v1beta1.LocationName;
import com.google.cloud.redis.v1beta1.UpdateInstanceRequest;
import com.google.common.collect.Lists;
import com.google.protobuf.FieldMask;
import java.util.Arrays;
import java.util.List;
import java.util.UUID;
import java.util.concurrent.ExecutionException;
import java.util.logging.Logger;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

public class ITSystemTest {

private static CloudRedisClient client;

private static final Logger LOG = Logger.getLogger(ITSystemTest.class.getName());
private static final String PROJECT_ID = ServiceOptions.getDefaultProjectId();
private static final String NETWORK = System.getProperty("redis.network", "default");
private static final String INSTANCE =
"test-instance-" + UUID.randomUUID().toString().substring(0, 8);
private static final String LOCATION = "us-central1";
private static final String AUTHORIZED_NETWORK =
"projects/" + PROJECT_ID + "/global/networks/" + NETWORK;
private static final Instance.Tier TIER = Instance.Tier.BASIC;
private static final LocationName PARENT = LocationName.of(PROJECT_ID, LOCATION);
private static final InstanceName INSTANCE_NAME = InstanceName.of(PROJECT_ID, LOCATION, INSTANCE);

@BeforeClass
public static void setUp() throws Exception {
client = CloudRedisClient.create();
/* Creates a Redis instance based on the specified tier and memory size. */
Instance instance =
Instance.newBuilder()
.setTier(TIER)
.setMemorySizeGb(1)
.setAuthorizedNetwork(AUTHORIZED_NETWORK)
.build();
client.createInstanceAsync(PARENT, INSTANCE, instance).get();
LOG.info("redis instance created successfully.");
}

@AfterClass
public static void tearDown() {
/* Deletes a specific Redis instance. Instance stops serving and data is deleted. */
client.deleteInstanceAsync(INSTANCE_NAME);
LOG.info("redis instance deleted successfully.");
client.close();
}

@Test
public void testGetInstance() {
Instance response = client.getInstance(INSTANCE_NAME);
assertEquals(TIER, response.getTier());
assertEquals(INSTANCE_NAME.toString(), response.getName());
}

@Test
public void testListInstances() {
List<Instance> instances = Lists.newArrayList(client.listInstances(PARENT).iterateAll());
for (Instance instance : instances) {
if (INSTANCE_NAME.toString().equals(instance.getName())) {
assertEquals(TIER, instance.getTier());
assertEquals(INSTANCE_NAME.toString(), instance.getName());
}
}
}

@Test
public void testUpdateInstance() throws ExecutionException, InterruptedException {
int memorySizeGb = 4;
FieldMask updateMask =
FieldMask.newBuilder().addAllPaths(Arrays.asList("memory_size_gb")).build();
Instance instance =
Instance.newBuilder()
.setName(INSTANCE_NAME.toString())
.setMemorySizeGb(memorySizeGb)
.build();
UpdateInstanceRequest updateInstanceRequest =
UpdateInstanceRequest.newBuilder().setInstance(instance).setUpdateMask(updateMask).build();
Instance actualInstance = client.updateInstanceAsync(updateInstanceRequest).get();
assertEquals(memorySizeGb, actualInstance.getMemorySizeGb());
}
}

0 comments on commit 63d937e

Please sign in to comment.