* feat: Context menu feat: Custom context menu Adding documentation PR updates * fix: Capture tool exception * PR updates * Add fully worked out examples in the basic test mode/extension * Fix the menu display * fix: Make the commands on clicks much more configurable * Wait for load before double clicking * docs * PR changes - nothing functional, just moving things endlessly * PR comments * PR changes - rename the default context menu * Renamed the cornerstoneContextMenu to measurementsContextMenu * Add chevron right to the sub-menus
61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
describe('OHIF Study Viewer Page', function() {
|
|
beforeEach(function() {
|
|
cy.checkStudyRouteInViewer(
|
|
'1.2.840.113619.2.5.1762583153.215519.978957063.78'
|
|
);
|
|
|
|
cy.expectMinimumThumbnails(3);
|
|
cy.initCommonElementsAliases();
|
|
cy.initCornerstoneToolsAliases();
|
|
cy.resetViewport().wait(50);
|
|
});
|
|
|
|
it('checks if series thumbnails are being displayed', function() {
|
|
cy.get('[data-cy="study-browser-thumbnail"]')
|
|
.its('length')
|
|
.should('be.gt', 1);
|
|
});
|
|
|
|
it('drags and drop a series thumbnail into viewport', function() {
|
|
// Can't use the native drag version as the element should be rerendered
|
|
// cy.get('[data-cy="study-browser-thumbnail"]:nth-child(2)') //element to be dragged
|
|
// .drag('.cornerstone-canvas'); //dropzone element
|
|
|
|
const dataTransfer = new DataTransfer();
|
|
|
|
cy.get('[data-cy="study-browser-thumbnail"]:nth-child(2)')
|
|
.first()
|
|
.trigger('mousedown', { which: 1, button: 0 })
|
|
.trigger('dragstart', { dataTransfer })
|
|
.trigger('drag', {});
|
|
cy.get('.cornerstone-canvas')
|
|
.trigger('mousemove', 'center')
|
|
.trigger('dragover', { dataTransfer, force: true })
|
|
.trigger('drop', { dataTransfer, force: true });
|
|
|
|
//const expectedText =
|
|
// 'Ser: 2Img: 1 1/13512 x 512Loc: -17.60 mm Thick: 3.00 mm';
|
|
//cy.get('@viewportInfoBottomLeft').should('contain.text', expectedText);
|
|
});
|
|
|
|
it('checks if Series left panel can be hidden/displayed', function() {
|
|
cy.get('@seriesPanel').should('exist');
|
|
cy.get('@seriesPanel').should('be.visible');
|
|
|
|
cy.get('@seriesBtn').click();
|
|
cy.get('@seriesPanel').should('not.exist');
|
|
|
|
cy.get('@seriesBtn').click();
|
|
cy.get('@seriesPanel').should('exist');
|
|
cy.get('@seriesPanel').should('be.visible');
|
|
});
|
|
|
|
it('performs double-click to load thumbnail in active viewport', () => {
|
|
// Have to finish rendering the image before this works
|
|
cy.wait(350);
|
|
cy.get('[data-cy="study-browser-thumbnail"]:nth-child(2)').dblclick();
|
|
|
|
//cy.get('@viewportInfoBottomLeft').should('contains.text', expectedText);
|
|
});
|
|
});
|