The Google Cloud Shell has application default credentials from its compute instance which will allow you to run an integration test without having to obtain GOOGLE_APPLICATION_CREDENTIALS
. Go to BigQuery Client Readme to run each sample in the Cloud Shell.
First set up GOOGLE_APPLICATION_CREDENTIALS
and GOOGLE_CLOUD_PROJECT
environment variables before running any samples.
To run a sample:
cd samples/snippets
- all samples are located injava-bigquery/samples/snippets
directory.mvn compile exec:java -Dexec.mainClass=com.example.bigquery.SimpleQuery
- this runs the SimpleQuery sample which runs the BigQuery query method. You can update the developer'sTODO
section in the snippet if you wish to run a different query.
Note that some samples require environment variables to be set. For instance, in CreateDatasetIT.java
:
private static final String GOOGLE_CLOUD_PROJECT = System.getenv("GOOGLE_CLOUD_PROJECT");
- this sample integration test requires you to specific the Google Cloud Project you would like to run the test in.
Make sure to set environment variables, if necessary, before running the sample, or else you will get an error asking you to set it.
To run a samples integration tests:
cd samples/snippets
- all samples are located injava-bigquery/samples/snippets
directory.mvn -Dtest=GetTableIT test
- this runs the integration test ofGetTable.java
sample.