Skip to content

Commit 4fe211c

Browse files
CLDSRV-717: Unskip some replication tests for S3C
The skip will be removed completely by CLDSRV-632
1 parent c08a4d4 commit 4fe211c

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

tests/multipleBackend/routes/routeBackbeatForReplication.js

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,9 @@ describe('backbeat routes for replication', () => {
913913
});
914914
});
915915

916-
it.skip('should replicate/put metadata to a destination that has a null version', done => {
916+
// TODO fix and unskip by CLDSRV-632
917+
const itSkipNotS3C = process.env.S3_END_TO_END ? it : it.skip;
918+
itSkipNotS3C('should replicate/put metadata to a destination that has a null version', done => {
917919
let objMD;
918920
let versionId;
919921

@@ -987,7 +989,7 @@ describe('backbeat routes for replication', () => {
987989
});
988990
});
989991

990-
it.skip('should replicate/put metadata to a destination that has a suspended null version', done => {
992+
itSkipNotS3C('should replicate/put metadata to a destination that has a suspended null version', done => {
991993
let objMD;
992994
let versionId;
993995

@@ -1062,7 +1064,7 @@ describe('backbeat routes for replication', () => {
10621064
});
10631065
});
10641066

1065-
it.skip('should replicate/put metadata to a destination that has a previously updated null version', done => {
1067+
itSkipNotS3C('should replicate/put metadata to a destination that has a previously updated null version', done => {
10661068
let objMD;
10671069
let objMDNull;
10681070
let versionId;
@@ -1163,7 +1165,8 @@ describe('backbeat routes for replication', () => {
11631165
});
11641166
});
11651167

1166-
it.skip('should replicate/put metadata to a destination that has a suspended null version with internal version',
1168+
itSkipNotS3C(
1169+
'should replicate/put metadata to a destination that has a suspended null version with internal version',
11671170
done => {
11681171
const tagSet = [
11691172
{
@@ -1252,7 +1255,7 @@ describe('backbeat routes for replication', () => {
12521255
});
12531256
});
12541257

1255-
it.skip('should mimic null version replication by crrExistingObjects, then replicate version', done => {
1258+
itSkipNotS3C('should mimic null version replication by crrExistingObjects, then replicate version', done => {
12561259
let objMDNull;
12571260
let objMDNullReplicated;
12581261
let objMDVersion;

0 commit comments

Comments
 (0)