Skip to content

Commit

Permalink
BigQuery: Add explicit service account key auth sample.
Browse files Browse the repository at this point in the history
  • Loading branch information
tswast committed Jul 17, 2017
1 parent a77fee7 commit 00cc6d6
Show file tree
Hide file tree
Showing 3 changed files with 146 additions and 0 deletions.
1 change: 1 addition & 0 deletions bigquery/cloud-client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
service_account.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/*
Copyright 2017, Google, Inc.
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.bigquery;

import com.google.auth.oauth2.GoogleCredentials;
import com.google.auth.oauth2.ServiceAccountCredentials;
import com.google.cloud.bigquery.BigQuery;
import com.google.cloud.bigquery.BigQueryOptions;
import com.google.cloud.bigquery.Dataset;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;

/**
* Examples for authenticating to Google BigQuery.
*
* <p>See: https://cloud.google.com/bigquery/authentication
*/
public class AuthSnippets {

// [START explicit_service_account]
public static void explicit() throws IOException {
// Load credentials from JSON key file.
GoogleCredentials credentials;
File credentialsPath = new File("service_account.json"); // TODO: update to your key path.
try (FileInputStream serviceAccountStream = new FileInputStream(credentialsPath)) {
credentials = ServiceAccountCredentials.fromStream(serviceAccountStream);
}

// Instantiate a client.
BigQuery bigquery =
BigQueryOptions.newBuilder().setCredentials(credentials).build().getService();

// Use the client.
for (Dataset dataset : bigquery.listDatasets().iterateAll()) {
System.out.printf("%s%n", dataset.getDatasetId().getDataset());
}
}
// [END explicit_service_account]

// [START default_credentials]
public static void implicit() {
// Instantiates a client
BigQuery bigquery = BigQueryOptions.getDefaultInstance().getService();

// Use the client.
System.out.println("Datasets:");
for (Dataset dataset : bigquery.listDatasets().iterateAll()) {
System.out.printf("%s%n", dataset.getDatasetId().getDataset());
}
}
// [END default_credentials]

public static void main(String... args) throws IOException {
boolean validArgs = args.length == 1;
String sample = "explicit";
if (validArgs) {
sample = args[0];
if (!sample.equals("explicit") && !sample.equals("implicit")) {
validArgs = false;
}
}

if (!validArgs) {
System.err.println("Expected auth type argument: implict|explict");
System.exit(1);
}

if (sample.equals("implicit")) {
implicit();
} else {
explicit();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
Copyright 2017, Google, Inc.
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.bigquery;

import static com.google.common.truth.Truth.assertThat;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;

/** Tests for auth samples. */
@RunWith(JUnit4.class)
@SuppressWarnings("checkstyle:abbreviationaswordinname")
public class AuthSnippetsIT {
private ByteArrayOutputStream bout;
private PrintStream out;

@Before
public void setUp() {
bout = new ByteArrayOutputStream();
out = new PrintStream(bout);
System.setOut(out);
}

@After
public void tearDown() {
System.setOut(null);
}

@Test
public void testAuthSnippetsImplicit() throws Exception {
AuthSnippets.main(new String[]{"implicit"});
String got = bout.toString();
assertThat(got).contains("Datasets:");
}
}

0 comments on commit 00cc6d6

Please # to comment.