From a21ea94931a4eed4418a41c56cbe2206494b44f0 Mon Sep 17 00:00:00 2001 From: williamlardier Date: Thu, 12 Dec 2024 12:16:27 +0100 Subject: [PATCH] Disable ceph tests using AWS as the bucket does not exist anymore - To be re-enabled if we want to keep these tests - We also have a LocationNotFound error from AWS client, although properly configured in the location config file... Issue: CLDSRV-591 --- tests/multipleBackend/routes/routeBackbeat.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/multipleBackend/routes/routeBackbeat.js b/tests/multipleBackend/routes/routeBackbeat.js index 59ac74d48f..06251ba77a 100644 --- a/tests/multipleBackend/routes/routeBackbeat.js +++ b/tests/multipleBackend/routes/routeBackbeat.js @@ -1632,7 +1632,7 @@ describe('backbeat routes', () => { }); }); - it('should PUT tags for a non-versioned bucket', function test(done) { + itSkipCeph('should PUT tags for a non-versioned bucket', function test(done) { this.timeout(10000); const bucket = NONVERSIONED_BUCKET; const awsBucket = @@ -2441,7 +2441,8 @@ describe('backbeat routes', () => { }), ], done); }); - it('should batch delete a versioned AWS location', done => { + + itSkipCeph('should batch delete a versioned AWS location', done => { let versionId; const awsKey = `${TEST_BUCKET}/batch-delete-test-key-${makeid(8)}`; @@ -2581,7 +2582,7 @@ describe('backbeat routes', () => { ], done); }); - it('should not put tags if the source is not Azure and ' + + itSkipCeph('should not put tags if the source is not Azure and ' + 'if-unmodified-since condition is not met', done => { const awsKey = uuidv4(); async.series([ @@ -2630,7 +2631,7 @@ describe('backbeat routes', () => { ], done); }); - it('should put tags if the source is not Azure and ' + + itSkipCeph('should put tags if the source is not Azure and ' + 'if-unmodified-since condition is met', done => { const awsKey = uuidv4(); let lastModified;