-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #379 from davideaquaro/task/MIG-85
MIG-85: implemented changes for partial migrations and fixed broken tests
- Loading branch information
Showing
7 changed files
with
588 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
265 changes: 265 additions & 0 deletions
265
packages/mdctl-axon-tools/__tests__/MIG-85/MIG-85.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,265 @@ | ||
/* eslint-disable import/order */ | ||
|
||
jest.mock('@medable/mdctl-api-driver', () => ({ Driver: class {} }), { virtual: true }) | ||
jest.mock('@medable/mdctl-api-driver/lib/cortex.object', () => ({ Object: class {}, Org: class {} }), { virtual: true }) | ||
jest.mock('../../lib/mappings') | ||
|
||
const fs = require('fs'), | ||
StudyManifestTools = require('../../lib/StudyManifestTools'), | ||
study = require('../../../mdctl-cli/tasks/study') | ||
|
||
describe('MIG-85 - Test partial migrations in StudyManifestTools', () => { | ||
|
||
let manifestTools | ||
const mockGetExportedObjects = jest.fn(() => []), | ||
entities = [{ | ||
_id: '615bcd016631cc0100d2766c', | ||
object: 'c_study', | ||
c_key: 'key-001' | ||
}, | ||
{ | ||
_id: '615b60d1bf2e4301008f4d68', | ||
object: 'c_dummy_object', | ||
c_key: 'key-002' | ||
}, | ||
{ | ||
_id: '619aaaafe44c6e01003f7313', | ||
object: 'c_task', | ||
c_key: 'key-003' | ||
}, | ||
{ | ||
_id: '61981246ca9563010037bfa8', | ||
object: 'c_task', | ||
c_key: 'key-004' | ||
}, | ||
{ | ||
_id: '61981246ca95714c14e61a8c', | ||
object: 'c_step', | ||
c_key: 'key-005' | ||
}, | ||
{ | ||
_id: '61981246ca966caef6108f28', | ||
object: 'c_step', | ||
c_key: 'key-006' | ||
}, | ||
{ | ||
_id: '61981246ca9592ee0e41a3dd', | ||
object: 'ec__document_template', | ||
c_key: 'key-007' | ||
}, | ||
{ | ||
_id: '61980eb292466ea32e087378', | ||
object: 'ec__document_template', | ||
c_key: 'key-008' | ||
}, | ||
{ | ||
_id: '6d525cf2e328e7300d97c399', | ||
object: 'ec__default_document_css', | ||
c_key: 'key-009' | ||
}, | ||
{ | ||
_id: '6d525cfe328e64ac0833baef', | ||
object: 'ec__knowledge_check', | ||
c_key: 'key-010' | ||
}, | ||
{ | ||
_id: '6d525f2e328e7f1e48262523', | ||
object: 'ec__knowledge_check', | ||
c_key: 'key-011' | ||
}, | ||
{ | ||
_id: '6d525gbed28e7f1e4826bb76', | ||
object: 'c_visit_schedule', | ||
c_key: 'key-012' | ||
}, | ||
{ | ||
_id: '6d525gc1408e7f1e4826bb11', | ||
object: 'c_visit', | ||
c_key: 'key-013' | ||
}, | ||
{ | ||
_id: '6d525gbe28e7fc4ff43c310', | ||
object: 'c_group', | ||
c_key: 'key-014' | ||
}, | ||
{ | ||
_id: '67725gbe28e7f98ee3c8667', | ||
object: 'c_group_task', | ||
c_key: 'key-015' | ||
}], | ||
dummyReferences = [ | ||
{ | ||
name: 'c_study', | ||
array: false, | ||
object: 'c_study', | ||
type: 'Reference', | ||
required: false | ||
} | ||
], | ||
org = { | ||
objects: { | ||
c_task: { | ||
find: () => ({ | ||
limit: () => ({ | ||
toArray: () => entities.filter(e => e.object === 'c_task') | ||
}) | ||
}) | ||
} | ||
} | ||
} | ||
|
||
beforeAll(async() => { | ||
manifestTools = new StudyManifestTools({}) | ||
manifestTools.getExportObjects = mockGetExportedObjects | ||
}) | ||
|
||
afterEach(() => { | ||
jest.clearAllMocks() | ||
}) | ||
|
||
it('Test visit schedules manifest creation', async() => { | ||
const manifest = { | ||
object: 'manifest', | ||
dependencies: false, | ||
exportOwner: false, | ||
importOwner: false, | ||
c_visit_schedule: { | ||
includes: [ | ||
'key-012' | ||
] | ||
}, | ||
c_visit: { | ||
includes: [ | ||
'key-013' | ||
] | ||
} | ||
} | ||
|
||
jest.spyOn(StudyManifestTools.prototype, 'getOrgObjectInfo').mockImplementation(() => dummyReferences) | ||
jest.spyOn(StudyManifestTools.prototype, 'validateReferences').mockImplementation(() => entities) | ||
jest.spyOn(StudyManifestTools.prototype, 'createManifest').mockImplementation(() => manifest) | ||
|
||
// eslint-disable-next-line one-var | ||
const manifestAndDeps = await manifestTools.buildVisitManifestAndDependencies(['6d525gbev28e7f1e4826bb76', '6d525g12328e7f1e4826bb11']) | ||
|
||
expect(manifestAndDeps.manifest) | ||
.toStrictEqual(manifest) | ||
expect(manifestAndDeps.removedEntities) | ||
.toBeUndefined() | ||
}) | ||
|
||
it('Test groups manifest creation', async() => { | ||
const manifest = { | ||
object: 'manifest', | ||
dependencies: false, | ||
exportOwner: false, | ||
importOwner: false, | ||
c_group: { | ||
includes: [ | ||
'key-014' | ||
] | ||
}, | ||
c_group_task: { | ||
includes: [ | ||
'key-015' | ||
] | ||
} | ||
} | ||
jest.spyOn(StudyManifestTools.prototype, 'getOrgObjectInfo').mockImplementation(() => dummyReferences) | ||
jest.spyOn(StudyManifestTools.prototype, 'validateReferences').mockImplementation(() => entities) | ||
jest.spyOn(StudyManifestTools.prototype, 'createManifest').mockImplementation(() => manifest) | ||
|
||
// eslint-disable-next-line one-var | ||
const manifestAndDeps = await manifestTools.buildGroupManifestAndDependencies(['6d525gbe28e7fc4ff43c310', '67725gbe28e7f98ee3c8667']) | ||
|
||
expect(manifestAndDeps.manifest) | ||
.toStrictEqual(manifest) | ||
expect(manifestAndDeps.removedEntities) | ||
.toBeUndefined() | ||
}) | ||
|
||
it('Test validateManifest function - Invalid manifest', async() => { | ||
const manifest = `{ | ||
"object": "something", | ||
"c_group": { | ||
"includes": [ | ||
"key-014" | ||
] | ||
}, | ||
"c_group_task": { | ||
"includes": [ | ||
"key-015" | ||
] | ||
} | ||
}` | ||
|
||
let res | ||
try { | ||
res = manifestTools.validateAndCleanManifest(manifest) | ||
} catch (err) { | ||
res = err | ||
} | ||
|
||
expect(res.errCode) | ||
.toBe('mdctl.invalidArgument.unspecified') | ||
expect(res.code) | ||
.toBe('kInvalidArgument') | ||
expect(res.reason) | ||
.toBe('The argument is not a valid manifest') | ||
}) | ||
|
||
it('Test study manifest creation from manifest', async() => { | ||
const manifest = { | ||
object: 'manifest', | ||
c_task: { | ||
includes: [ | ||
'key-003', | ||
'key-004' | ||
] | ||
}, | ||
c_step: { | ||
includes: [ | ||
'key-005', | ||
'key-006' | ||
] | ||
} | ||
}, | ||
ingestTransform = fs.readFileSync(`${__dirname}/../../packageScripts/ingestTransform.js`).toString() | ||
|
||
jest.spyOn(StudyManifestTools.prototype, 'getOrgObjectInfo').mockImplementation(() => dummyReferences) | ||
jest.spyOn(StudyManifestTools.prototype, 'validateReferences').mockImplementation(() => entities) | ||
jest.spyOn(StudyManifestTools.prototype, 'createManifest').mockImplementation(() => manifest) | ||
jest.spyOn(StudyManifestTools.prototype, 'getObjectIDsArray').mockImplementation(() => entities.filter(o => o.object === 'c_task')) | ||
jest.spyOn(StudyManifestTools.prototype, 'mapObjectNameToPlural').mockImplementation(() => 'c_tasks') | ||
// eslint-disable-next-line one-var | ||
const manifestAndDeps = await manifestTools.buildManifestAndDependencies(manifest) | ||
|
||
expect(manifestAndDeps.manifest) | ||
.toStrictEqual(manifest) | ||
expect(manifestAndDeps.removedEntities) | ||
.toBeUndefined() | ||
expect(manifestAndDeps.mappingScript) | ||
.toBeUndefined() | ||
expect(manifestAndDeps.ingestTransform) | ||
.toStrictEqual(ingestTransform) | ||
}) | ||
|
||
it('Test getObjectIDsArray function', async() => { | ||
const filteredEntities = entities.filter(e => e.object === 'c_task'), | ||
res = await manifestTools.getObjectIDsArray(org, 'c_task', 'c_key', ['key-003', 'key-004']) | ||
|
||
expect(res) | ||
.toStrictEqual(filteredEntities) | ||
}) | ||
|
||
it('Test getAvailableObjectNames', () => { | ||
const availableObjects = manifestTools.getAvailableObjectNames(), | ||
expectedObjects = ['c_study', 'c_task', 'c_visit_schedule', 'ec__document_template', 'c_group', | ||
'c_anchor_date_template', 'c_fault', 'c_dmweb_report', 'c_site', 'c_task_assignment', 'c_participant_schedule', | ||
'c_patient_flag', 'c_looker_integration_record', 'int__vendor_integration_record', 'int__model_mapping', | ||
'int__pipeline', 'orac__studies', 'orac__sites', 'orac__forms', 'orac__form_questions', 'orac__events'] | ||
|
||
expect(availableObjects) | ||
.toStrictEqual(expectedObjects) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.