forked from apache/beam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Java] Disable soft delete policy when creating a default bucket for …
…a project. (apache#31324) * Disable soft delete policy when creating a default bucket for a project. Also, getBucket() and removeBucket() are added into GcsUtil. * Add random number to prefix to avoid collision on multiple test instances. * Remove default bucket before creating in the integration test. * Add one line in CHANGES.md to mention this change and fix a typo.
- Loading branch information
Showing
6 changed files
with
217 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletions
93
...-platform-core/src/test/java/org/apache/beam/sdk/extensions/gcp/options/GcpOptionsIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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 org.apache.beam.sdk.extensions.gcp.options; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertThrows; | ||
|
||
import com.google.api.services.cloudresourcemanager.CloudResourceManager; | ||
import com.google.api.services.storage.model.Bucket; | ||
import java.io.FileNotFoundException; | ||
import java.io.IOException; | ||
import java.util.Random; | ||
import org.apache.beam.sdk.extensions.gcp.util.GcsUtil; | ||
import org.apache.beam.sdk.extensions.gcp.util.gcsfs.GcsPath; | ||
import org.apache.beam.sdk.testing.TestPipeline; | ||
import org.apache.beam.sdk.testing.TestPipelineOptions; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.JUnit4; | ||
|
||
/** | ||
* Integration tests for {@link GcpOptions}. These tests are designed to run against production | ||
* Google Cloud Storage. | ||
* | ||
* <p>This is a runnerless integration test, even though the Beam IT framework assumes one. Thus, | ||
* this test should only be run against single runner (such as DirectRunner). | ||
*/ | ||
@RunWith(JUnit4.class) | ||
public class GcpOptionsIT { | ||
/** Tests the creation of a default bucket in a project. */ | ||
@Test | ||
public void testCreateDefaultBucket() throws IOException { | ||
TestPipelineOptions options = | ||
TestPipeline.testingPipelineOptions().as(TestPipelineOptions.class); | ||
|
||
CloudResourceManager crmClient = | ||
GcpOptions.GcpTempLocationFactory.newCloudResourceManagerClient( | ||
options.as(CloudResourceManagerOptions.class)) | ||
.build(); | ||
|
||
GcsOptions gcsOptions = options.as(GcsOptions.class); | ||
GcsUtil gcsUtil = gcsOptions.getGcsUtil(); | ||
|
||
Random rand = new Random(); | ||
// Add a random number to the prefix to avoid collision if multiple test instances | ||
// are run at the same time. To avoid too many dangling buckets if bucket removal fails, | ||
// we limit the max number of possible bucket names in this test to 1000. | ||
String bucketNamePrefix = "gcp-options-it-" + rand.nextInt(1000); | ||
|
||
String bucketName = | ||
String.join( | ||
"-", | ||
GcpOptions.GcpTempLocationFactory.getDefaultBucketNameStubs( | ||
options, crmClient, bucketNamePrefix)); | ||
|
||
// remove existing default bucket if any | ||
try { | ||
Bucket oldBucket = gcsUtil.getBucket(GcsPath.fromUri("gs://" + bucketName)); | ||
gcsUtil.removeBucket(oldBucket); | ||
} catch (FileNotFoundException e) { | ||
// the bucket to be created does not exist, which is good news | ||
} | ||
|
||
String tempLocation = | ||
GcpOptions.GcpTempLocationFactory.tryCreateDefaultBucketWithPrefix( | ||
options, crmClient, bucketNamePrefix); | ||
|
||
GcsPath gcsPath = GcsPath.fromUri(tempLocation); | ||
Bucket bucket = gcsUtil.getBucket(gcsPath); | ||
assertNotNull(bucket); | ||
// verify the soft delete policy is disabled | ||
assertEquals(bucket.getSoftDeletePolicy().getRetentionDurationSeconds(), Long.valueOf(0L)); | ||
|
||
gcsUtil.removeBucket(bucket); | ||
assertThrows(FileNotFoundException.class, () -> gcsUtil.getBucket(gcsPath)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters