Backup E2E test: Normalize paths because glob returns / on WIN

This commit is contained in:
Scott Nonnenberg 2018-04-20 17:29:55 -07:00
parent bd17c298a2
commit 6ec6bf08c8
No known key found for this signature in database
GPG Key ID: 5F82280C35134661
1 changed files with 5 additions and 3 deletions

View File

@ -266,11 +266,13 @@ describe('Backup', () => {
return _.omit(model, ['id']);
}
const slash = path.sep === '/' ? '\\/' : '\\\\';
const twoSlashes = new RegExp(`.*${slash}.*${slash}.*`);
// On windows, attachmentsPath has a normal windows path format (\ separators), but
// glob returns only /. We normalize to / separators for our manipulations.
const twoSlashes = /[^/]*\/[^/]*\/[^/]*/;
const normalizedBase = attachmentsPath.replace(/\\/g, '/');
function removeDirs(dirs) {
return _.filter(dirs, (fullDir) => {
const dir = fullDir.replace(attachmentsPath, '');
const dir = fullDir.replace(normalizedBase, '');
return twoSlashes.test(dir);
});
}