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

docs(samples): add create and delete connection #151

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,71 @@
/*
* Copyright 2020 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.example.bigqueryconnection;

// [START bigqueryconnection_create_connection]
import com.google.cloud.bigquery.connection.v1.CloudSqlCredential;
import com.google.cloud.bigquery.connection.v1.CloudSqlProperties;
import com.google.cloud.bigquery.connection.v1.Connection;
import com.google.cloud.bigquery.connection.v1.CreateConnectionRequest;
import com.google.cloud.bigquery.connection.v1.LocationName;
import com.google.cloud.bigqueryconnection.v1.ConnectionServiceClient;
import java.io.IOException;

// Sample to create a connection with cloud MySql database
public class CreateConnection {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String projectId = "MY_PROJECT_ID";
String location = "MY_LOCATION";
String connectionId = "MY_CONNECTION_ID";
String database = "MY_DATABASE";
String instance = "MY_INSTANCE";
String instanceLocation = "MY_INSTANCE_LOCATION";
String username = "MY_USERNAME";
String password = "MY_PASSWORD";
String instanceId = String.format("%s:%s:%s", projectId, instanceLocation, instance);
CloudSqlCredential cloudSqlCredential =
CloudSqlCredential.newBuilder().setUsername(username).setPassword(password).build();
CloudSqlProperties cloudSqlProperties =
CloudSqlProperties.newBuilder()
.setType(CloudSqlProperties.DatabaseType.MYSQL)
.setDatabase(database)
.setInstanceId(instanceId)
.setCredential(cloudSqlCredential)
.build();
Connection connection = Connection.newBuilder().setCloudSql(cloudSqlProperties).build();
createConnection(projectId, location, connectionId, connection);
}

public static void createConnection(
String projectId, String location, String connectionId, Connection connection)
throws IOException {
try (ConnectionServiceClient client = ConnectionServiceClient.create()) {
LocationName parent = LocationName.of(projectId, location);
CreateConnectionRequest request =
CreateConnectionRequest.newBuilder()
.setParent(parent.toString())
.setConnection(connection)
.setConnectionId(connectionId)
.build();
Connection response = client.createConnection(request);
System.out.println("Connection created successfully :" + response.getName());
}
}
}
// [END bigqueryconnection_create_connection]
@@ -0,0 +1,47 @@
/*
* Copyright 2020 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.example.bigqueryconnection;

// [START bigqueryconnection_delete_connection]
import com.google.cloud.bigquery.connection.v1.ConnectionName;
import com.google.cloud.bigquery.connection.v1.DeleteConnectionRequest;
import com.google.cloud.bigqueryconnection.v1.ConnectionServiceClient;
import java.io.IOException;

// Sample to delete a connection
public class DeleteConnection {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String projectId = "MY_PROJECT_ID";
String location = "MY_LOCATION";
String connectionName = "MY_CONNECTION_NAME";
deleteConnection(projectId, location, connectionName);
}

public static void deleteConnection(String projectId, String location, String connectionName)
throws IOException {
try (ConnectionServiceClient client = ConnectionServiceClient.create()) {
ConnectionName name = ConnectionName.of(projectId, location, connectionName);
DeleteConnectionRequest request =
DeleteConnectionRequest.newBuilder().setName(name.toString()).build();
client.deleteConnection(request);
System.out.println("Connection deleted successfully");
}
}
}
// [END bigqueryconnection_delete_connection]
@@ -0,0 +1,108 @@
/*
* Copyright 2020 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.example.bigqueryconnection;

import static com.google.common.truth.Truth.assertThat;
import static junit.framework.TestCase.assertNotNull;

import com.google.cloud.bigquery.connection.v1.CloudSqlCredential;
import com.google.cloud.bigquery.connection.v1.CloudSqlProperties;
import com.google.cloud.bigquery.connection.v1.Connection;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import java.util.UUID;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;

public class CreateConnectionIT {

private static final Logger LOG = Logger.getLogger(CreateConnectionIT.class.getName());
private static final String LOCATION = "US";
private static final String REGION = "us-central1";
private static final String PROJECT_ID = requireEnvVar("GOOGLE_CLOUD_PROJECT");
private static final String MY_SQL_DATABASE = requireEnvVar("MY_SQL_DATABASE");
private static final String MY_SQL_INSTANCE = requireEnvVar("MY_SQL_INSTANCE");
private static final String DB_USER = requireEnvVar("DB_USER");
private static final String DB_PWD = requireEnvVar("DB_PWD");

private String connectionId;
private ByteArrayOutputStream bout;
private PrintStream out;
private PrintStream originalPrintStream;

private static String requireEnvVar(String varName) {
String value = System.getenv(varName);
assertNotNull(
"Environment variable " + varName + " is required to perform these tests.",
System.getenv(varName));
return value;
}

@BeforeClass
public static void checkRequirements() {
requireEnvVar("GOOGLE_CLOUD_PROJECT");
requireEnvVar("MY_SQL_DATABASE");
requireEnvVar("MY_SQL_INSTANCE");
requireEnvVar("DB_USER");
requireEnvVar("DB_PWD");
}

@Before
public void setUp() {
connectionId = "MY_CONNECTION_TEST_" + UUID.randomUUID().toString().substring(0, 8);
bout = new ByteArrayOutputStream();
out = new PrintStream(bout);
originalPrintStream = System.out;
System.setOut(out);
}

@After
public void tearDown() throws IOException {
// Clean up
DeleteConnection.deleteConnection(PROJECT_ID, LOCATION, connectionId);
// restores print statements in the original method
System.out.flush();
System.setOut(originalPrintStream);
LOG.log(Level.INFO, bout.toString());
}

@Test
public void testCreateConnection() throws IOException {
String instanceId = String.format("%s:%s:%s", PROJECT_ID, REGION, MY_SQL_INSTANCE);
CloudSqlCredential cloudSqlCredential =
CloudSqlCredential.newBuilder().setUsername(DB_USER).setPassword(DB_PWD).build();
CloudSqlProperties cloudSqlProperties =
CloudSqlProperties.newBuilder()
.setType(CloudSqlProperties.DatabaseType.MYSQL)
.setDatabase(MY_SQL_DATABASE)
.setInstanceId(instanceId)
.setCredential(cloudSqlCredential)
.build();
Connection connection =
Connection.newBuilder()
.setFriendlyName(connectionId)
.setCloudSql(cloudSqlProperties)
.build();
CreateConnection.createConnection(PROJECT_ID, LOCATION, connectionId, connection);
assertThat(bout.toString()).contains("Connection created successfully :");
}
}
@@ -0,0 +1,104 @@
/*
* Copyright 2020 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.example.bigqueryconnection;

import static com.google.common.truth.Truth.assertThat;
import static junit.framework.TestCase.assertNotNull;

import com.google.cloud.bigquery.connection.v1.CloudSqlCredential;
import com.google.cloud.bigquery.connection.v1.CloudSqlProperties;
import com.google.cloud.bigquery.connection.v1.Connection;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import java.util.UUID;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;

public class DeleteConnectionIT {

private static final Logger LOG = Logger.getLogger(DeleteConnectionIT.class.getName());
private static final String LOCATION = "US";
private static final String REGION = "us-central1";
private static final String PROJECT_ID = requireEnvVar("GOOGLE_CLOUD_PROJECT");
private static final String MY_SQL_DATABASE = requireEnvVar("MY_SQL_DATABASE");
private static final String MY_SQL_INSTANCE = requireEnvVar("MY_SQL_INSTANCE");
private static final String DB_USER = requireEnvVar("DB_USER");
private static final String DB_PWD = requireEnvVar("DB_PWD");

private String connectionId;
private ByteArrayOutputStream bout;
private PrintStream out;
private PrintStream originalPrintStream;

private static String requireEnvVar(String varName) {
String value = System.getenv(varName);
assertNotNull(
"Environment variable " + varName + " is required to perform these tests.",
System.getenv(varName));
return value;
}

@BeforeClass
public static void checkRequirements() {
requireEnvVar("GOOGLE_CLOUD_PROJECT");
requireEnvVar("MY_SQL_DATABASE");
requireEnvVar("MY_SQL_INSTANCE");
requireEnvVar("DB_USER");
requireEnvVar("DB_PWD");
}

@Before
public void setUp() throws IOException {
bout = new ByteArrayOutputStream();
out = new PrintStream(bout);
originalPrintStream = System.out;
System.setOut(out);
// create a temporary connection
connectionId = "MY_CONNECTION_TEST_" + UUID.randomUUID().toString().substring(0, 8);
String instanceId = String.format("%s:%s:%s", PROJECT_ID, REGION, MY_SQL_INSTANCE);
CloudSqlCredential cloudSqlCredential =
CloudSqlCredential.newBuilder().setUsername(DB_USER).setPassword(DB_PWD).build();
CloudSqlProperties cloudSqlProperties =
CloudSqlProperties.newBuilder()
.setType(CloudSqlProperties.DatabaseType.MYSQL)
.setDatabase(MY_SQL_DATABASE)
.setInstanceId(instanceId)
.setCredential(cloudSqlCredential)
.build();
Connection connection = Connection.newBuilder().setCloudSql(cloudSqlProperties).build();
CreateConnection.createConnection(PROJECT_ID, LOCATION, connectionId, connection);
}

@After
public void tearDown() {
// restores print statements in the original method
System.out.flush();
System.setOut(originalPrintStream);
LOG.log(Level.INFO, bout.toString());
}

@Test
public void testDeleteConnection() throws IOException {
DeleteConnection.deleteConnection(PROJECT_ID, LOCATION, connectionId);
assertThat(bout.toString()).contains("Connection deleted successfully");
}
}