Skip to content

Commit ccd6116

Browse files
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
1 parent 24d3c00 commit ccd6116

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/multipleBackend/routes/routeBackbeat.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1632,7 +1632,7 @@ describe('backbeat routes', () => {
16321632
});
16331633
});
16341634

1635-
it('should PUT tags for a non-versioned bucket', function test(done) {
1635+
itSkipCeph('should PUT tags for a non-versioned bucket', function test(done) {
16361636
this.timeout(10000);
16371637
const bucket = NONVERSIONED_BUCKET;
16381638
const awsBucket =
@@ -2441,7 +2441,8 @@ describe('backbeat routes', () => {
24412441
}),
24422442
], done);
24432443
});
2444-
it('should batch delete a versioned AWS location', done => {
2444+
2445+
itSkipCeph('should batch delete a versioned AWS location', done => {
24452446
let versionId;
24462447
const awsKey = `${TEST_BUCKET}/batch-delete-test-key-${makeid(8)}`;
24472448

@@ -2581,7 +2582,7 @@ describe('backbeat routes', () => {
25812582
], done);
25822583
});
25832584

2584-
it('should not put tags if the source is not Azure and ' +
2585+
itSkipCeph('should not put tags if the source is not Azure and ' +
25852586
'if-unmodified-since condition is not met', done => {
25862587
const awsKey = uuidv4();
25872588
async.series([
@@ -2630,7 +2631,7 @@ describe('backbeat routes', () => {
26302631
], done);
26312632
});
26322633

2633-
it('should put tags if the source is not Azure and ' +
2634+
itSkipCeph('should put tags if the source is not Azure and ' +
26342635
'if-unmodified-since condition is met', done => {
26352636
const awsKey = uuidv4();
26362637
let lastModified;

0 commit comments

Comments
 (0)