diff --git a/tests/functional/raw-node/test/GCP/bucket/get.js b/tests/functional/raw-node/test/GCP/bucket/get.js index 89c9e68e57..f537d3c7df 100644 --- a/tests/functional/raw-node/test/GCP/bucket/get.js +++ b/tests/functional/raw-node/test/GCP/bucket/get.js @@ -16,7 +16,7 @@ const { getRealAwsConfig } = const { listingHardLimit } = require('../../../../../../constants'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-get-${genUniqID()}`; const smallSize = 20; const bigSize = listingHardLimit + 1; const config = getRealAwsConfig(credentialOne); diff --git a/tests/functional/raw-node/test/GCP/bucket/getVersioning.js b/tests/functional/raw-node/test/GCP/bucket/getVersioning.js index bcce1416a0..5c39c3a273 100644 --- a/tests/functional/raw-node/test/GCP/bucket/getVersioning.js +++ b/tests/functional/raw-node/test/GCP/bucket/getVersioning.js @@ -20,7 +20,7 @@ describe('GCP: GET Bucket Versioning', () => { const gcpClient = new GCP(config); beforeEach(async function beforeFn() { - this.currentTest.bucketName = `somebucket-${genUniqID()}`; + this.currentTest.bucketName = `cldsrvci-getversioning-${genUniqID()}`; await gcpRetry( gcpClient, new CreateBucketCommand({ diff --git a/tests/functional/raw-node/test/GCP/bucket/head.js b/tests/functional/raw-node/test/GCP/bucket/head.js index 91929efbd5..3056cbcbea 100644 --- a/tests/functional/raw-node/test/GCP/bucket/head.js +++ b/tests/functional/raw-node/test/GCP/bucket/head.js @@ -17,7 +17,7 @@ describe('GCP: HEAD Bucket', () => { describe('without existing bucket', () => { beforeEach(async function beforeFn() { - this.currentTest.bucketName = `somebucket-${genUniqID()}`; + this.currentTest.bucketName = `cldsrvci-head-${genUniqID()}`; }); it('should return 404', async function testFn() { @@ -37,7 +37,7 @@ describe('GCP: HEAD Bucket', () => { describe('with existing bucket', () => { beforeEach(async function beforeFn() { - this.currentTest.bucketName = `somebucket-${genUniqID()}`; + this.currentTest.bucketName = `cldsrvci-head-${genUniqID()}`; process.stdout .write(`Creating test bucket ${this.currentTest.bucketName}\n`); await gcpRetry( diff --git a/tests/functional/raw-node/test/GCP/bucket/putVersioning.js b/tests/functional/raw-node/test/GCP/bucket/putVersioning.js index 43549a0af2..6999dcd1b6 100644 --- a/tests/functional/raw-node/test/GCP/bucket/putVersioning.js +++ b/tests/functional/raw-node/test/GCP/bucket/putVersioning.js @@ -14,7 +14,7 @@ const { getRealAwsConfig } = const credentialOne = 'gcpbackend'; const verEnabledStatus = 'Enabled'; const verDisabledStatus = 'Suspended'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-putversioning-${genUniqID()}`; describe('GCP: PUT Bucket Versioning', () => { const config = getRealAwsConfig(credentialOne); diff --git a/tests/functional/raw-node/test/GCP/object/completeMpu.js b/tests/functional/raw-node/test/GCP/object/completeMpu.js index e4370b2b02..109c4a2ee8 100644 --- a/tests/functional/raw-node/test/GCP/object/completeMpu.js +++ b/tests/functional/raw-node/test/GCP/object/completeMpu.js @@ -20,11 +20,11 @@ const { const credentialOne = 'gcpbackend'; const bucketNames = { main: { - Name: `somebucket-${genUniqID()}`, + Name: `cldsrvci-completempu-${genUniqID()}`, Type: 'MULTI_REGIONAL', }, mpu: { - Name: `mpubucket-${genUniqID()}`, + Name: `cldsrvci-mpu-completempu-${genUniqID()}`, Type: 'MULTI_REGIONAL', }, }; diff --git a/tests/functional/raw-node/test/GCP/object/copy.js b/tests/functional/raw-node/test/GCP/object/copy.js index 1d563fce37..ac3a3a3859 100644 --- a/tests/functional/raw-node/test/GCP/object/copy.js +++ b/tests/functional/raw-node/test/GCP/object/copy.js @@ -12,7 +12,7 @@ const { } = require('@aws-sdk/client-s3'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-copy-${genUniqID()}`; describe('GCP: COPY Object', function testSuite() { this.timeout(180000); diff --git a/tests/functional/raw-node/test/GCP/object/delete.js b/tests/functional/raw-node/test/GCP/object/delete.js index 62a4ada5ae..477d8a57d1 100644 --- a/tests/functional/raw-node/test/GCP/object/delete.js +++ b/tests/functional/raw-node/test/GCP/object/delete.js @@ -13,7 +13,7 @@ const { } = require('@aws-sdk/client-s3'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-deleteobj-${genUniqID()}`; const objectKey = `somekey-${genUniqID()}`; const badObjectKey = `nonexistingkey-${genUniqID()}`; diff --git a/tests/functional/raw-node/test/GCP/object/deleteMpu.js b/tests/functional/raw-node/test/GCP/object/deleteMpu.js index 239e87b9b4..6762faefde 100644 --- a/tests/functional/raw-node/test/GCP/object/deleteMpu.js +++ b/tests/functional/raw-node/test/GCP/object/deleteMpu.js @@ -15,10 +15,10 @@ const { const credentialOne = 'gcpbackend'; const bucketNames = { main: { - Name: `somebucket-${genUniqID()}`, + Name: `cldsrvci-deletempu-${genUniqID()}`, }, mpu: { - Name: `mpubucket-${genUniqID()}`, + Name: `cldsrvci-mpu-deletempu-${genUniqID()}`, }, }; const numParts = 10; diff --git a/tests/functional/raw-node/test/GCP/object/deleteTagging.js b/tests/functional/raw-node/test/GCP/object/deleteTagging.js index b8a3812278..7ad44da3c9 100644 --- a/tests/functional/raw-node/test/GCP/object/deleteTagging.js +++ b/tests/functional/raw-node/test/GCP/object/deleteTagging.js @@ -14,7 +14,7 @@ const { } = require('@aws-sdk/client-s3'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-deletetagging-${genUniqID()}`; let config; let gcpClient; diff --git a/tests/functional/raw-node/test/GCP/object/get.js b/tests/functional/raw-node/test/GCP/object/get.js index 34c9fac18e..5a5704513c 100644 --- a/tests/functional/raw-node/test/GCP/object/get.js +++ b/tests/functional/raw-node/test/GCP/object/get.js @@ -13,7 +13,7 @@ const { } = require('@aws-sdk/client-s3'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-get-${genUniqID()}`; describe('GCP: GET Object', function testSuite() { this.timeout(30000); diff --git a/tests/functional/raw-node/test/GCP/object/getTagging.js b/tests/functional/raw-node/test/GCP/object/getTagging.js index 14446f5528..59e2b2e908 100644 --- a/tests/functional/raw-node/test/GCP/object/getTagging.js +++ b/tests/functional/raw-node/test/GCP/object/getTagging.js @@ -13,7 +13,7 @@ const { } = require('@aws-sdk/client-s3'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-gettagging-${genUniqID()}`; const tagSize = 10; describe('GCP: GET Object Tagging', () => { diff --git a/tests/functional/raw-node/test/GCP/object/head.js b/tests/functional/raw-node/test/GCP/object/head.js index d0fa1748c4..ae46c52723 100644 --- a/tests/functional/raw-node/test/GCP/object/head.js +++ b/tests/functional/raw-node/test/GCP/object/head.js @@ -12,7 +12,7 @@ const { } = require('@aws-sdk/client-s3'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-head-${genUniqID()}`; describe('GCP: HEAD Object', function testSuite() { this.timeout(30000); diff --git a/tests/functional/raw-node/test/GCP/object/initiateMpu.js b/tests/functional/raw-node/test/GCP/object/initiateMpu.js index 4e86777d44..1f752f60df 100644 --- a/tests/functional/raw-node/test/GCP/object/initiateMpu.js +++ b/tests/functional/raw-node/test/GCP/object/initiateMpu.js @@ -18,10 +18,10 @@ const { const credentialOne = 'gcpbackend'; const bucketNames = { main: { - Name: `somebucket-${genUniqID()}`, + Name: `cldsrvci-initiatempu-${genUniqID()}`, }, mpu: { - Name: `mpubucket-${genUniqID()}`, + Name: `cldsrvci-mpu-initiatempu-${genUniqID()}`, }, }; diff --git a/tests/functional/raw-node/test/GCP/object/put.js b/tests/functional/raw-node/test/GCP/object/put.js index c39baa7704..a4d1ee0c73 100644 --- a/tests/functional/raw-node/test/GCP/object/put.js +++ b/tests/functional/raw-node/test/GCP/object/put.js @@ -11,7 +11,7 @@ const { } = require('@aws-sdk/client-s3'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-put-${genUniqID()}`; describe('GCP: PUT Object', function testSuite() { this.timeout(30000); diff --git a/tests/functional/raw-node/test/GCP/object/putTagging.js b/tests/functional/raw-node/test/GCP/object/putTagging.js index c17ce0cbde..b588d91389 100644 --- a/tests/functional/raw-node/test/GCP/object/putTagging.js +++ b/tests/functional/raw-node/test/GCP/object/putTagging.js @@ -14,7 +14,7 @@ const { } = require('@aws-sdk/client-s3'); const credentialOne = 'gcpbackend'; -const bucketName = `somebucket-${genUniqID()}`; +const bucketName = `cldsrvci-puttagging-${genUniqID()}`; describe('GCP: PUT Object Tagging', () => { let config; diff --git a/tests/functional/raw-node/test/GCP/object/upload.js b/tests/functional/raw-node/test/GCP/object/upload.js index cb318cfc51..40253c31e9 100644 --- a/tests/functional/raw-node/test/GCP/object/upload.js +++ b/tests/functional/raw-node/test/GCP/object/upload.js @@ -15,10 +15,10 @@ const { const credentialOne = 'gcpbackend'; const bucketNames = { main: { - Name: `somebucket-${genUniqID()}`, + Name: `cldsrvci-upload-${genUniqID()}`, }, mpu: { - Name: `mpubucket-${genUniqID()}`, + Name: `cldsrvci-mpu-upload-${genUniqID()}`, }, };