Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | import HangingProtocolService from './HangingProtocolService'; const testProtocol = { id: 'test', name: 'Default', protocolMatchingRules: [ { attribute: 'StudyDescription', constraint: { contains: 'PETCT', }, }, ], displaySetSelectors: { displaySetSelector: { seriesMatchingRules: [ { weight: 1, attribute: 'Modality', constraint: { equals: 'CT', }, required: true, }, { weight: 1, attribute: 'numImageFrames', constraint: { greaterThan: 10, }, }, ], studyMatchingRules: [], }, }, stages: [ { name: 'default', viewportStructure: { layoutType: 'grid', properties: { rows: 1, columns: 1, }, }, viewports: [ { viewportOptions: { viewportId: 'ctAXIAL', viewportType: 'volume', orientation: 'axial', toolGroupId: 'ctToolGroup', customViewportOptions: { initialScale: 2.5, }, initialImageOptions: { // index: 5, preset: 'first', // 'first', 'last', 'middle' }, syncGroups: [ { type: 'cameraPosition', id: 'axialSync', source: true, target: true, }, ], }, displaySets: [ { id: 'displaySetSelector', }, ], }, ], }, ], numberOfPriorsReferenced: -1, }; function testProtocolGenerator({ servicesManager }) { servicesManager.services.TestService.toCall(); return { protocol: testProtocol, }; } const studyMatch = { StudyInstanceUID: 'studyMatch', StudyDescription: 'A PETCT study type', }; const displaySet1 = { ...studyMatch, SeriesInstanceUID: 'ds1', displaySetInstanceUID: 'displaySet1', numImageFrames: 11, Modality: 'CT', }; const displaySet2 = { ...displaySet1, SeriesInstanceUID: 'ds2', displaySetInstanceUID: 'displaySet2', Modality: 'PT', }; const displaySet3 = { ...displaySet1, numImageFrames: 3, displaySetInstanceUID: 'displaySet3', }; const studyMatchDisplaySets = [displaySet3, displaySet2, displaySet1]; function checkHpsBestMatch(hps) { hps.run({ studies: [studyMatch], displaySets: studyMatchDisplaySets }); const { viewportMatchDetails } = hps.getMatchDetails(); expect(viewportMatchDetails.size).toBe(1); expect(viewportMatchDetails.get('ctAXIAL')).toMatchObject({ viewportOptions: { viewportId: 'ctAXIAL', viewportType: 'volume', orientation: 'axial', toolGroupId: 'ctToolGroup', }, // Matches ds1 because it matches 2 rules, a required and an optional // ds2 fails to match required and ds3 fails to match an optional. displaySetsInfo: [ { displaySetInstanceUID: 'displaySet1', displaySetOptions: { id: 'displaySetSelector', options: {}, }, }, ], }); } describe('HangingProtocolService', () => { const mockedFunction = jest.fn(); const commandsManager = { run: mockedFunction, }; const servicesManager = { services: { TestService: { toCall: mockedFunction, }, }, }; const hangingProtocolService = new HangingProtocolService(commandsManager, servicesManager); let initialScaling; afterEach(() => { mockedFunction.mockClear(); }); describe('with a static protocol', () => { beforeAll(() => { hangingProtocolService.addProtocol(testProtocol.id, testProtocol); }); it('has one protocol', () => { expect(hangingProtocolService.getProtocols().length).toBe(1); }); describe('run', () => { it('matches best image match', () => { checkHpsBestMatch(hangingProtocolService); }); }); }); describe('with protocol generator', () => { beforeAll(() => { hangingProtocolService.addProtocol(testProtocol.id, testProtocolGenerator); }); it('has one protocol', () => { expect(hangingProtocolService.getProtocols().length).toBe(1); }); describe('run', () => { it('matches best image match', () => { checkHpsBestMatch(hangingProtocolService); }); }); }); }); |