Skip to content

Commit

Permalink
ci(spanner): Fix nightly job issues (#3522)
Browse files Browse the repository at this point in the history
* ci(spanner): Fix nightly job permission issue

* update scope for surefire-junit4
  • Loading branch information
sakthivelmanii authored Dec 10, 2024
1 parent 10912a6 commit 3f4873d
Show file tree
Hide file tree
Showing 19 changed files with 56 additions and 33 deletions.
9 changes: 8 additions & 1 deletion google-cloud-spanner-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,13 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit4</artifactId>
<version>3.5.2</version>
<scope>test</scope>
</dependency>

</dependencies>
<build>
<plugins>
Expand Down Expand Up @@ -259,7 +266,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<ignoredDependencies> com.google.api:gax</ignoredDependencies>
<ignoredDependencies> com.google.api:gax,org.apache.maven.surefire:surefire-junit4 </ignoredDependencies>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ private void testPagination() {
Page<Backup> page = dbAdminClient.listBackups(instanceId, Options.pageSize(1));
assertEquals(1, Iterables.size(page.getValues()));
numBackups++;
assertTrue(page.hasNextPage());
assertFalse(page.hasNextPage());
Set<String> seenPageTokens = new HashSet<>();
seenPageTokens.add("");
while (page.hasNextPage()) {
Expand Down
6 changes: 3 additions & 3 deletions samples/install-without-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@
<version>3.5.2</version>
<configuration>
<systemPropertyVariables>
<spanner.test.instance>java-client-integration-tests</spanner.test.instance>
<spanner.test.instance>java-sample-integration-tests</spanner.test.instance>
<spanner.test.instance.mr>java-client-mr-integration-tests</spanner.test.instance.mr>
<spanner.test.instance.config>nam11</spanner.test.instance.config>
<spanner.test.key.location>us-east1</spanner.test.key.location>
<spanner.test.key.ring>java-client-integration-test-cmek-ring</spanner.test.key.ring>
<spanner.test.key.name>java-client-integration-test-cmek-key</spanner.test.key.name>
<spanner.test.key.ring>cmek-test-key-ring</spanner.test.key.ring>
<spanner.test.key.name>cmek-test-key</spanner.test.key.name>
<spanner.sample.database>mysample</spanner.sample.database>
<spanner.quickstart.database>quick-db</spanner.quickstart.database>
</systemPropertyVariables>
Expand Down
6 changes: 3 additions & 3 deletions samples/snapshot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,12 @@
<version>3.5.2</version>
<configuration>
<systemPropertyVariables>
<spanner.test.instance>java-client-integration-tests</spanner.test.instance>
<spanner.test.instance>java-sample-integration-tests</spanner.test.instance>
<spanner.test.instance.mr>java-client-mr-integration-tests</spanner.test.instance.mr>
<spanner.test.instance.config>nam11</spanner.test.instance.config>
<spanner.test.key.location>us-east1</spanner.test.key.location>
<spanner.test.key.ring>java-client-integration-test-cmek-ring</spanner.test.key.ring>
<spanner.test.key.name>java-client-integration-test-cmek-key</spanner.test.key.name>
<spanner.test.key.ring>cmek-test-key-ring</spanner.test.key.ring>
<spanner.test.key.name>cmek-test-key</spanner.test.key.name>
<spanner.sample.database>mysample</spanner.sample.database>
<spanner.sample.instance>mysample-instance</spanner.sample.instance>
<spanner.quickstart.database>quick-db</spanner.quickstart.database>
Expand Down
6 changes: 3 additions & 3 deletions samples/snippets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@
<version>3.5.2</version>
<configuration>
<systemPropertyVariables>
<spanner.test.instance>java-client-integration-tests</spanner.test.instance>
<spanner.test.instance>java-sample-integration-tests</spanner.test.instance>
<spanner.test.instance.mr>java-client-mr-integration-tests</spanner.test.instance.mr>
<spanner.test.instance.config>nam11</spanner.test.instance.config>
<spanner.test.key.location>us-east1</spanner.test.key.location>
<spanner.test.key.ring>java-client-integration-test-cmek-ring</spanner.test.key.ring>
<spanner.test.key.name>java-client-integration-test-cmek-key</spanner.test.key.name>
<spanner.test.key.ring>cmek-test-key-ring</spanner.test.key.ring>
<spanner.test.key.name>cmek-test-key</spanner.test.key.name>
<spanner.sample.database>mysample</spanner.sample.database>
<spanner.quickstart.database>quick-db</spanner.quickstart.database>
</systemPropertyVariables>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
import com.google.cloud.spanner.admin.database.v1.DatabaseAdminClient;
import com.google.common.collect.ImmutableList;
import com.google.spanner.admin.database.v1.DatabaseName;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
Expand All @@ -36,26 +38,28 @@ static void addAndDropDatabaseRole() {
String databaseId = "my-database";
String parentRole = "parent_role";
String childRole = "child_role";
addAndDropDatabaseRole(projectId, instanceId, databaseId, parentRole, childRole);
addAndDropDatabaseRole(projectId, instanceId, databaseId, parentRole, childRole, "Albums");
}

static void addAndDropDatabaseRole(
String projectId, String instanceId, String databaseId,
String parentRole, String childRole) {
String parentRole, String childRole, String... tables) {
try (Spanner spanner =
SpannerOptions.newBuilder()
.setProjectId(projectId)
.build()
.getService();
DatabaseAdminClient databaseAdminClient = spanner.createDatabaseAdminClient()) {
System.out.println("Waiting for role create operation to complete...");
List<String> roleStatements = new ArrayList<>(ImmutableList.of(
String.format("CREATE ROLE %s", parentRole),
String.format("CREATE ROLE %s", childRole),
String.format("GRANT ROLE %s TO ROLE %s", parentRole, childRole)));
for (String table : tables) {
roleStatements.add(String.format("GRANT SELECT ON TABLE %s TO ROLE %s", table, parentRole));
}
databaseAdminClient.updateDatabaseDdlAsync(
DatabaseName.of(projectId, instanceId, databaseId),
ImmutableList.of(
String.format("CREATE ROLE %s", parentRole),
String.format("GRANT SELECT ON TABLE Albums TO ROLE %s", parentRole),
String.format("CREATE ROLE %s", childRole),
String.format("GRANT ROLE %s TO ROLE %s", parentRole, childRole)))
DatabaseName.of(projectId, instanceId, databaseId), roleStatements)
.get(5, TimeUnit.MINUTES);
System.out.printf(
"Created roles %s and %s and granted privileges%n", parentRole, childRole);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ static void writeWithTransactionUsingDml(DatabaseClient dbClient) {
Statement updateStatement =
Statement.newBuilder(
"UPDATE Albums "
+ "SET MarketingBudget = $1"
+ "SET MarketingBudget = $1 "
+ "WHERE SingerId = 1 and AlbumId = 1")
.bind("p1")
.to(album1Budget)
Expand All @@ -640,7 +640,7 @@ static void writeWithTransactionUsingDml(DatabaseClient dbClient) {
Statement updateStatement2 =
Statement.newBuilder(
"UPDATE Albums "
+ "SET MarketingBudget = $1"
+ "SET MarketingBudget = $1 "
+ "WHERE SingerId = 2 and AlbumId = 2")
.bind("p1")
.to(album2Budget)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ static void addAndDropDatabaseRole(
databaseId,
ImmutableList.of(
"CREATE ROLE " + parentRole,
"GRANT SELECT ON TABLE Singers TO ROLE " + parentRole,
"GRANT SELECT ON TABLE Albums TO ROLE " + parentRole,
"CREATE ROLE " + childRole,
"GRANT ROLE " + parentRole + " TO ROLE " + childRole),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static void createSequence(String projectId, String instanceId, String databaseI
.get(5, TimeUnit.MINUTES);

System.out.println(
"Created Seq sequence and Customers table, where the key column CustomerId "
"Created Seq sequence and Customers table, where its key column CustomerId "
+ "uses the sequence as a default value");

final DatabaseClient dbClient =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ static void createPostgreSqlDatabase(DatabaseAdminClient dbAdminClient, Database
// Initiate the request which returns an OperationFuture.
Database db = op.get();
System.out.println("Created database [" + db.getId() + "]");
createTableUsingDdl(dbAdminClient, id);
} catch (ExecutionException e) {
// If the operation failed during execution, expose the cause.
throw (SpannerException) e.getCause();
Expand Down Expand Up @@ -633,7 +632,7 @@ static void writeWithTransactionUsingDml(DatabaseClient dbClient) {
Statement updateStatement =
Statement.newBuilder(
"UPDATE Albums "
+ "SET MarketingBudget = $1"
+ "SET MarketingBudget = $1 "
+ "WHERE SingerId = 1 and AlbumId = 1")
.bind("p1")
.to(album1Budget)
Expand All @@ -642,7 +641,7 @@ static void writeWithTransactionUsingDml(DatabaseClient dbClient) {
Statement updateStatement2 =
Statement.newBuilder(
"UPDATE Albums "
+ "SET MarketingBudget = $1"
+ "SET MarketingBudget = $1 "
+ "WHERE SingerId = 2 and AlbumId = 2")
.bind("p1")
.to(album2Budget)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ public class CreateIncrementalBackupScheduleSampleIT extends SampleTestBaseV2 {
public void testCreateIncrementalBackupScheduleSample() throws Exception {
String backupScheduleId = String.format("schedule-%s", UUID.randomUUID());
BackupScheduleName backupScheduleName =
BackupScheduleName.of(projectId, instanceId, databaseId, backupScheduleId);
BackupScheduleName.of(projectId, multiRegionalInstanceId, databaseId, backupScheduleId);
String out =
SampleRunner.runSample(
() -> {
try {
CreateIncrementalBackupScheduleSample.createIncrementalBackupSchedule(
projectId, instanceId, databaseId, backupScheduleId);
projectId, multiRegionalInstanceId, databaseId, backupScheduleId);
} finally {
DeleteBackupScheduleSample.deleteBackupSchedule(
projectId, instanceId, databaseId, backupScheduleId);
projectId, multiRegionalInstanceId, databaseId, backupScheduleId);
}
});
assertThat(out)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import com.google.cloud.spanner.InstanceConfigId;
import com.google.cloud.spanner.InstanceId;
import com.google.cloud.spanner.InstanceInfo;
import com.google.spanner.admin.instance.v1.Instance.Edition;
import com.google.spanner.admin.instance.v1.InstancePartitionName;
import org.junit.Test;

Expand All @@ -34,6 +35,7 @@ public void testCreateInstancePartition() throws Exception {
instanceAdminClient
.createInstance(
InstanceInfo.newBuilder(InstanceId.of(projectId, instanceId))
.setEdition(Edition.ENTERPRISE_PLUS)
.setDisplayName("Geo-partitioning test instance")
.setInstanceConfigId(InstanceConfigId.of(projectId, "regional-us-central1"))
.setNodeCount(1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ public void testAddAndDropDatabaseRole() throws Exception {
SampleRunner.runSample(
() ->
AddAndDropDatabaseRole.addAndDropDatabaseRole(
projectId, instanceId, databaseId.getDatabase(), "new_parent", "new_child"));
projectId, instanceId, databaseId.getDatabase(), "new_parent", "new_child",
"Singers", "Albums"));
assertTrue(out.contains("Created roles new_parent and new_child and granted privileges"));
assertTrue(out.contains("Revoked privileges and dropped role new_child"));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ public static void afterClass() throws InterruptedException {
}
}

spanner.close();
databaseAdminClient.close();
instanceAdminClient.close();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class SpannerGraphSampleIT extends SampleTestBaseV2 {

private static final int DBID_LENGTH = 20;
// The instance needs to exist for tests to pass.
private static final String instanceId = System.getProperty("spanner.test.instance");
private static final String instanceId = System.getProperty("spanner.test.instance.mr");
private static final String baseDbId = System.getProperty("spanner.sample.database");
static Spanner spanner;
static DatabaseAdminClient databaseAdminClient;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ public void testEncryptedDatabaseAndBackupSamples() throws Exception {
.setNodeCount(1)
.build())
.get();
System.out.println("Creating database ...");
try {
String out =
SampleRunner.runSample(
Expand All @@ -538,6 +539,7 @@ public void testEncryptedDatabaseAndBackupSamples() throws Exception {
String.format(
"Created database [%s]", DatabaseName.of(projectId, instanceId, databaseId)));

System.out.println("Creating backup with encryption key ...");
out =
SampleRunner.runSampleWithRetry(
() ->
Expand All @@ -556,6 +558,7 @@ public void testEncryptedDatabaseAndBackupSamples() throws Exception {
+ "was created at (.*) using encryption key %s",
projectId, instanceId, encryptedBackupId, key));

System.out.println("Restoring backup with encryption key ...");
out =
SampleRunner.runSampleWithRetry(
() ->
Expand Down Expand Up @@ -587,6 +590,7 @@ public void testEncryptedDatabaseAndBackupSamples() throws Exception {
} finally {
// Delete the backups from the test instance first, as the instance can only be deleted once
// all backups have been deleted.
System.out.println("Deleting backups ...");
deleteAllBackups(instanceId);
instanceAdminClient.deleteInstance(instanceId);
}
Expand Down Expand Up @@ -633,6 +637,7 @@ private static void deleteAllBackups(String instanceId) throws InterruptedExcept
InstanceName instanceName = InstanceName.of(projectId, instanceId);
for (Backup backup : databaseAdminClient.listBackups(instanceName.toString()).iterateAll()) {
int attempts = 0;
System.out.printf("Deleting backup ... %s%n", backup.getName());
while (attempts < 30) {
try {
attempts++;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void testCustomInstanceConfigOperations() throws Exception {
SampleRunner.runSample(
() ->
ListInstanceConfigOperationsSample.listInstanceConfigOperations(projectId));
assertTrue(out2.contains("List instance config operation"));
assertTrue(out2.contains("Create instance config operation"));

// Update display name to a randomly generated instance config id.
final String out3 =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,15 @@
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import org.junit.runners.MethodSorters;

/** Integration tests for FGAC samples for GoogleStandardSql dialect. */
@RunWith(JUnit4.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class DatabaseRolesIT extends SampleTestBase {

private static DatabaseId databaseId;
Expand Down Expand Up @@ -105,7 +108,7 @@ public void testAddAndDropDatabaseRole() throws Exception {
SampleRunner.runSample(
() ->
AddAndDropDatabaseRole.addAndDropDatabaseRole(
projectId, instanceId, databaseId.getDatabase(), "new-parent", "new-child"));
projectId, instanceId, databaseId.getDatabase(), "new_parent", "new_child"));
assertTrue(out.contains("Created roles new_parent and new_child and granted privileges"));
assertTrue(out.contains("Revoked privileges and dropped role new_child"));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void testSample() throws Exception {
assertThat(databaseId).isNotNull();

System.out.println("Create Database ...");
String out = runSample("createpgdatabase");
String out = runSample("createdatabase");
assertThat(out).contains("Created database");
assertThat(out).contains(dbId.getName());

Expand Down

0 comments on commit 3f4873d

Please sign in to comment.