Skip to content

Commit

Permalink
Disable ceph tests using AWS as the bucket does not exist anymore
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
williamlardier committed Dec 12, 2024
1 parent 9020ff3 commit 6ee32c3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/multipleBackend/routes/routeBackbeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down Expand Up @@ -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)}`;

Expand Down Expand Up @@ -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([
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 6ee32c3

Please sign in to comment.