diff --git a/tests/cypress/integration/actions_tasks_objects/case_10_polygon_shape_track_label_points.js b/tests/cypress/integration/actions_tasks_objects/case_10_polygon_shape_track_label_points.js index 424f8163..b582b67a 100644 --- a/tests/cypress/integration/actions_tasks_objects/case_10_polygon_shape_track_label_points.js +++ b/tests/cypress/integration/actions_tasks_objects/case_10_polygon_shape_track_label_points.js @@ -88,17 +88,11 @@ context('Actions on polygon', () => { before(() => { cy.openTask(taskName); + cy.addNewLabel(newLabelName); + cy.openJob(); }); describe(`Testing case "${caseId}"`, () => { - it('Add new label', () => { - cy.contains('button', 'Add label').click(); - cy.get('[placeholder="Label name"]').type(newLabelName); - cy.contains('button', 'Done').click(); - }); - it('Open a job', () => { - cy.openJob(); - }); it('Draw a polygon shape, track', () => { cy.createPolygon(createPolygonShape); cy.createPolygon(createPolygonTrack); diff --git a/tests/cypress/integration/actions_tasks_objects/case_11_polylines_shape_track_label_points.js b/tests/cypress/integration/actions_tasks_objects/case_11_polylines_shape_track_label_points.js index 5f812656..4039a98b 100644 --- a/tests/cypress/integration/actions_tasks_objects/case_11_polylines_shape_track_label_points.js +++ b/tests/cypress/integration/actions_tasks_objects/case_11_polylines_shape_track_label_points.js @@ -82,17 +82,11 @@ context('Actions on polylines', () => { before(() => { cy.openTask(taskName); + cy.addNewLabel(newLabelName); + cy.openJob(); }); describe(`Testing case "${caseId}"`, () => { - it('Add new label', () => { - cy.contains('button', 'Add label').click(); - cy.get('[placeholder="Label name"]').type(newLabelName); - cy.contains('button', 'Done').click(); - }); - it('Open a job', () => { - cy.openJob(); - }); it('Draw a polylines shape, track', () => { cy.createPolyline(createPolylinesShape); cy.createPolyline(createPolylinesTrack); diff --git a/tests/cypress/integration/actions_tasks_objects/case_12_points_shape_track_label.js b/tests/cypress/integration/actions_tasks_objects/case_12_points_shape_track_label.js index da6bd608..9ab345ab 100644 --- a/tests/cypress/integration/actions_tasks_objects/case_12_points_shape_track_label.js +++ b/tests/cypress/integration/actions_tasks_objects/case_12_points_shape_track_label.js @@ -82,17 +82,11 @@ context('Actions on points', () => { before(() => { cy.openTask(taskName); + cy.addNewLabel(newLabelName); + cy.openJob(); }); describe(`Testing case "${caseId}"`, () => { - it('Add new label', () => { - cy.contains('button', 'Add label').click(); - cy.get('[placeholder="Label name"]').type(newLabelName); - cy.contains('button', 'Done').click(); - }); - it('Open a job', () => { - cy.openJob(); - }); it('Draw a points shape, track', () => { cy.createPoint(createPointsShape); cy.createPoint(createPointsTrack); diff --git a/tests/cypress/integration/actions_tasks_objects/case_17_lock_hide_features.js b/tests/cypress/integration/actions_tasks_objects/case_17_lock_hide_features.js new file mode 100644 index 00000000..7814e820 --- /dev/null +++ b/tests/cypress/integration/actions_tasks_objects/case_17_lock_hide_features.js @@ -0,0 +1,250 @@ +// Copyright (C) 2020 Intel Corporation +// +// SPDX-License-Identifier: MIT + +/// + +import { labelName, taskName } from '../../support/const'; + +context('Lock/hide features.', () => { + const caseId = '17'; + const newLabelName1 = `First label case ${caseId}`; + const newLabelName2 = `Second label case ${caseId}`; + const newLabelName3 = `Third label case ${caseId}`; + const newLabelName4 = `Fourth label case ${caseId}`; + let cvatObjectsSidebarStateItem1 = ''; + const createPolygonShape = { + reDraw: false, + type: 'Shape', + switchLabel: false, + pointsMap: [ + { x: 200, y: 200 }, + { x: 250, y: 200 }, + { x: 250, y: 250 }, + ], + complete: true, + numberOfPoints: null, + }; + const createRectangleTrack2Points = { + points: 'By 2 Points', + type: 'Track', + switchLabel: false, + firstX: 260, + firstY: 200, + secondX: 360, + secondY: 250 + }; + const createCuboidShape4Points = { + points: 'By 4 Points', + type: 'Shape', + switchLabel: false, + firstX: 400, + firstY: 350, + secondX: 500, + secondY: 320, + thirdX: 500, + thirdY: 450, + fourthX: 400, + fourthY: 450, + }; + const createPolylinesShapeSwitchLabel = { + type: 'Shape', + switchLabel: true, + labelName: newLabelName1, + pointsMap: [ + { x: 600, y: 200 }, + { x: 650, y: 200 }, + { x: 650, y: 250 }, + ], + complete: true, + numberOfPoints: null, + }; + const createPointsShapeSwitchLabel = { + type: 'Shape', + switchLabel: true, + labelName: newLabelName2, + pointsMap: [ + { x: 700, y: 200 } + ], + complete: true, + numberOfPoints: null, + }; + const createRectangleShape4Points = { + points: 'By 4 Points', + type: 'Shape', + switchLabel: true, + labelName: newLabelName3, + firstX: 550, + firstY: 350, + secondX: 650, + secondY: 350, + thirdX: 650, + thirdY: 450, + fourthX: 550, + fourthY: 450, + }; + const createPolygonTrack = { + reDraw: false, + type: 'Track', + switchLabel: true, + labelName: newLabelName4, + pointsMap: [ + { x: 700, y: 350 }, + { x: 850, y: 350 }, + { x: 850, y: 450 }, + { x: 700, y: 450 }, + ], + numberOfPoints: 4, + }; + + let shapeWidth = 0; + + before(() => { + cy.openTask(taskName); + cy.addNewLabel(newLabelName1); + cy.addNewLabel(newLabelName2); + cy.addNewLabel(newLabelName3); + cy.addNewLabel(newLabelName4); + cy.openJob(); + }); + + describe(`Testing case "${caseId}"`, () => { + it('Draw several objects (different shapes, tracks, tags, labels)', () => { + cy.createPolygon(createPolygonShape); + // Get css "background-color" for further comparison. + cy.get('#cvat-objects-sidebar-state-item-1').then($cvatObjectsSidebarStateItem1 => { + cvatObjectsSidebarStateItem1 = $cvatObjectsSidebarStateItem1.css('background-color'); + }); + cy.createRectangle(createRectangleTrack2Points); + cy.createCuboid(createCuboidShape4Points); + cy.createPolyline(createPolylinesShapeSwitchLabel); + cy.createPoint(createPointsShapeSwitchLabel); + cy.createRectangle(createRectangleShape4Points); + cy.createPolygon(createPolygonTrack); + cy.createTag(newLabelName4); + }); + it('Lock all the objects with a dedicated button (in side bar header). All the objects are locked.', () => { + cy.get('.cvat-objects-sidebar-states-header').within(() => { + cy.get('i[aria-label="icon: unlock"]').click(); + }); + cy.get('.cvat-objects-sidebar-state-item').each(item => { + cy.get(item).within(() => { + cy.get('.cvat-object-item-button-lock-enabled').should('exist'); + }); + }); + }); + it('Hide all the objects. Objects are still visible because they cannot be hidden while locked.', () => { + cy.get('.cvat-objects-sidebar-states-header').within(() => { + cy.get('i[aria-label="icon: eye-invisible"]').click(); + }); + cy.get('.cvat-objects-sidebar-state-item').each(item => { + cy.get(item).within(() => { + cy.get('.cvat-object-item-button-hidden-enabled').should('not.exist'); + }); + }); + cy.get('.cvat_canvas_shape').each(item => { + cy.get(item).should('be.visible'); + }); + }); + it('Unlock all objects and hide all objects. All the objects are hidden.', () => { + cy.get('.cvat-objects-sidebar-states-header').within(() => { + cy.get('i[aria-label="icon: lock"]').click(); + cy.get('i[aria-label="icon: eye"]').click(); + }); + cy.get('.cvat-objects-sidebar-state-item').each(item => { + cy.get(item).invoke('text').then($itemText => { + // Sidebar for "Tag" doesn't have "Switch hidden property" button. + if (!$itemText.match(/\d+TAG/)) { + cy.get(item).within(() => { + cy.get('.cvat-object-item-button-hidden-enabled').should('exist'); + }); + } + }); + }); + cy.get('.cvat_canvas_shape').each(item => { + cy.get(item).should('have.class', 'cvat_canvas_hidden'); + }); + }); + it('Set properties occluded & pinned to true for a shape. Shape is occluded is visualized (dashed contour) and the shape cannot be moved, but can be resized.', () => { + // Unhide rectangle shape. + cy.get('#cvat-objects-sidebar-state-item-6').within(() => { + cy.get('i[aria-label="icon: eye-invisible"]').click(); + }); + cy.get('#cvat_canvas_shape_6').should('be.visible'); + cy.get('#cvat-objects-sidebar-state-item-6').within(() => { + cy.get('.cvat-object-item-button-occluded').click().should('have.class', 'cvat-object-item-button-occluded-enabled'); + }); + cy.get('#cvat_canvas_shape_6').should('have.css', 'stroke-dasharray'); + cy.get('#cvat-objects-sidebar-state-item-6').within(() => { + cy.get('.cvat-object-item-button-pinned').click().should('have.class', 'cvat-object-item-button-pinned-enabled'); + }); + cy.get('#cvat_canvas_shape_6').should('not.have.class', 'cvat_canvas_shape_draggable'); + // Get cuttent values for "width" parameter. + cy.get('#cvat_canvas_shape_6').should('have.attr', 'width').then($shapeWidth => { + shapeWidth = $shapeWidth; + }); + // Resize rectangle shape. + cy.get('.cvat-canvas-container').trigger('mousedown', 650, 400, {button: 0}).trigger('mousemove', 660, 400).trigger('mouseup'); + cy.get('#cvat_canvas_shape_6').should('have.attr', 'width').then($shapeWidth => { + expect(Math.floor(shapeWidth)).to.be.lessThan(Math.floor($shapeWidth)); // expected 95 to be below 104 + }); + }); + it('Go to polygon. Pinned is set to true by default. Set it to false. Polygon can be moved.', () => { + cy.get('#cvat-objects-sidebar-state-item-1').within(() => { + cy.get('.cvat-object-item-button-pinned-enabled').should('exist'); + }); + cy.get('#cvat_canvas_shape_1').should('not.have.class', 'cvat_canvas_shape_draggable'); + cy.get('#cvat-objects-sidebar-state-item-1').within(() => { + cy.get('.cvat-object-item-button-pinned').click().should('not.have.class', 'cvat-object-item-button-pinned-enabled'); + // Unhide polygon shape. + cy.get('.cvat-object-item-button-hidden').click().should('not.have.class', 'cvat-object-item-button-hidden-enabled'); + }); + cy.get('#cvat_canvas_shape_1').should('have.class', 'cvat_canvas_shape_draggable'); + }); + it('Go to "Labels" tab.', () => { + // Hide and unhide all objects for convenience of next testing. + cy.get('.cvat-objects-sidebar-states-header').within(() => { + cy.get('i[aria-label="icon: eye"]').click(); + cy.get('i[aria-label="icon: eye-invisible"]').click(); + }); + cy.get('.cvat-objects-sidebar').within(() => { + cy.contains('Labels').click(); + }); + }); + it('Repeat hide/lock for one of the labels. Objects with other labels weren’t affected.', () => { + const objectsSameLabel = ['cvat_canvas_shape_1', 'cvat_canvas_shape_2', 'cvat_canvas_shape_3']; + cy.get('.cvat-objects-sidebar-labels-list').within(() => { + // Hide and lock all object with "Main task" label (#cvat_canvas_shape_1-3). + cy.contains(labelName).parents('.cvat-objects-sidebar-label-item').within(() => { + cy.get('.cvat-label-item-button-hidden').click().should('have.class', 'cvat-label-item-button-hidden-enabled'); + cy.get('.cvat-label-item-button-lock').click().should('have.class', 'cvat-label-item-button-lock-enabled'); + }); + }); + cy.get('.cvat_canvas_shape').then(objectList => { + for (let i=0; i { + cy.contains('Objects').click(); + }); + // Objects that have a label different from the "Main task" should not be blocked. + cy.get('.cvat-objects-sidebar-state-item').then(objectSidebarList => { + for (let i=0; i { + cy.get('.ant-select-selection-selected-value').click({force: true}); + }); + cy.get('.ant-select-dropdown-menu').last().contains(labelName).click({force: true}); + // Checking that the css parameter "background-color" has become the same as the ".cvat-objects-sidebar-state-item" with "Main task" label. + cy.get(objectSidebarList[i]).should('have.css', 'background-color', cvatObjectsSidebarStateItem1); + } + } + }); + }); + }); +}); diff --git a/tests/cypress/integration/actions_tasks_objects/case_8_rectangle_shape_track_label.js b/tests/cypress/integration/actions_tasks_objects/case_8_rectangle_shape_track_label.js index 1b7afc00..ea35c5dc 100644 --- a/tests/cypress/integration/actions_tasks_objects/case_8_rectangle_shape_track_label.js +++ b/tests/cypress/integration/actions_tasks_objects/case_8_rectangle_shape_track_label.js @@ -80,17 +80,11 @@ context('Actions on rectangle', () => { before(() => { cy.openTask(taskName); + cy.addNewLabel(newLabelName); + cy.openJob(); }); describe(`Testing case "${caseId}"`, () => { - it('Add new label', () => { - cy.contains('button', 'Add label').click(); - cy.get('[placeholder="Label name"]').type(newLabelName); - cy.contains('button', 'Done').click(); - }); - it('Open a job', () => { - cy.openJob(); - }); it('Draw a rectangle shape in two ways (by 2 points, by 4 points)', () => { cy.createRectangle(createRectangleShape2Points); cy.createRectangle(createRectangleShape4Points); diff --git a/tests/cypress/integration/actions_tasks_objects/case_9_cuboid_shape_track_label.js b/tests/cypress/integration/actions_tasks_objects/case_9_cuboid_shape_track_label.js index 8742f23b..58976d1c 100644 --- a/tests/cypress/integration/actions_tasks_objects/case_9_cuboid_shape_track_label.js +++ b/tests/cypress/integration/actions_tasks_objects/case_9_cuboid_shape_track_label.js @@ -80,17 +80,11 @@ context('Actions on Cuboid', () => { before(() => { cy.openTask(taskName); + cy.addNewLabel(newLabelName); + cy.openJob(); }); describe(`Testing case "${caseId}"`, () => { - it('Add new label', () => { - cy.contains('button', 'Add label').click(); - cy.get('[placeholder="Label name"]').type(newLabelName); - cy.contains('button', 'Done').click(); - }); - it('Open a job', () => { - cy.openJob(); - }); it('Draw a Cuboid shape in two ways (From rectangle, by 4 points)', () => { cy.createCuboid(createCuboidShape2Points); cy.createCuboid(createCuboidShape4Points); diff --git a/tests/cypress/integration/actions_tasks_objects/issue_1429_check_new_label.js b/tests/cypress/integration/actions_tasks_objects/issue_1429_check_new_label.js index 6f576299..e3eeb5e1 100644 --- a/tests/cypress/integration/actions_tasks_objects/issue_1429_check_new_label.js +++ b/tests/cypress/integration/actions_tasks_objects/issue_1429_check_new_label.js @@ -30,9 +30,7 @@ context('Check if the new label reflects in the options', () => { cy.url().should('include', '/tasks').and('not.contain', '/jobs'); }); it('Add new label', () => { - cy.contains('button', 'Add label').click(); - cy.get('[placeholder="Label name"]').type(newLabelName); - cy.contains('button', 'Done').click(); + cy.addNewLabel(newLabelName); }); it('Open the job again', () => { cy.openJob(); diff --git a/tests/cypress/support/commands.js b/tests/cypress/support/commands.js index 5e873f11..c455e1d5 100644 --- a/tests/cypress/support/commands.js +++ b/tests/cypress/support/commands.js @@ -97,7 +97,7 @@ Cypress.Commands.add('openTaskJob', (taskName, jobNumber = 0) => { Cypress.Commands.add('createRectangle', (createRectangleParams) => { cy.get('.cvat-draw-rectangle-control').click(); if (createRectangleParams.switchLabel) { - cy.switchLabel(createRectangleParams.labelName); + cy.switchLabel(createRectangleParams.labelName, 'rectangle'); } cy.contains('Draw new rectangle') .parents('.cvat-draw-shape-popover-content') @@ -117,9 +117,13 @@ Cypress.Commands.add('createRectangle', (createRectangleParams) => { cy.checkObjectParameters(createRectangleParams, 'RECTANGLE'); }); -Cypress.Commands.add('switchLabel', (labelName) => { - cy.get('.cvat-draw-shape-popover-content').find('.ant-select-selection-selected-value').click(); - cy.get('.ant-select-dropdown-menu').contains(labelName).click(); +Cypress.Commands.add('switchLabel', (labelName, objectType) => { + const pattern = `^(Draw new|Setup) ${objectType}$` + const regex = new RegExp(pattern, 'g'); + cy.contains(regex).parents('.cvat-draw-shape-popover-content').within(() => { + cy.get('.ant-select-selection-selected-value').click(); + }); + cy.get('.ant-select-dropdown-menu').last().contains(labelName).click(); }); Cypress.Commands.add('checkObjectParameters', (objectParameters, objectType) => { @@ -143,7 +147,7 @@ Cypress.Commands.add('checkObjectParameters', (objectParameters, objectType) => Cypress.Commands.add('createPoint', (createPointParams) => { cy.get('.cvat-draw-points-control').click(); if (createPointParams.switchLabel) { - cy.switchLabel(createPointParams.labelName); + cy.switchLabel(createPointParams.labelName, 'points'); } cy.contains('Draw new points') .parents('.cvat-draw-shape-popover-content') @@ -187,7 +191,7 @@ Cypress.Commands.add('createPolygon', (createPolygonParams) => { if (!createPolygonParams.reDraw) { cy.get('.cvat-draw-polygon-control').click(); if (createPolygonParams.switchLabel) { - cy.switchLabel(createPolygonParams.labelName); + cy.switchLabel(createPolygonParams.labelName, 'polygon'); } cy.contains('Draw new polygon') .parents('.cvat-draw-shape-popover-content') @@ -246,7 +250,7 @@ Cypress.Commands.add('changeLabelAAM', (labelName) => { Cypress.Commands.add('createCuboid', (createCuboidParams) => { cy.get('.cvat-draw-cuboid-control').click(); if (createCuboidParams.switchLabel) { - cy.switchLabel(createCuboidParams.labelName); + cy.switchLabel(createCuboidParams.labelName, 'cuboid'); } cy.contains('Draw new cuboid') .parents('.cvat-draw-shape-popover-content') @@ -277,7 +281,7 @@ Cypress.Commands.add('updateAttributes', (multiAttrParams) => { Cypress.Commands.add('createPolyline', (createPolylineParams) => { cy.get('.cvat-draw-polyline-control').click(); if (createPolylineParams.switchLabel) { - cy.switchLabel(createPolylineParams.labelName); + cy.switchLabel(createPolylineParams.labelName, 'polyline'); } cy.contains('Draw new polyline') .parents('.cvat-draw-shape-popover-content') @@ -347,3 +351,26 @@ Cypress.Commands.add('removeAnnotations', () => { Cypress.Commands.add('goToTaskList', () => { cy.get('a[value="tasks"]').click(); }); + +Cypress.Commands.add('addNewLabel', (newLabelName) => { + let listCvatConstructorViewerItemText = []; + cy.document().then((doc) => { + const labels = Array.from(doc.querySelectorAll('.cvat-constructor-viewer-item')); + for (let i = 0; i < labels.length; i++) { + listCvatConstructorViewerItemText.push(labels[i].textContent); + } + if (listCvatConstructorViewerItemText.indexOf(newLabelName) === -1) { + cy.contains('button', 'Add label').click(); + cy.get('[placeholder="Label name"]').type(newLabelName); + cy.contains('button', 'Done').click(); + } + }); +}); + +Cypress.Commands.add('createTag', (labelName) => { + cy.get('.cvat-setup-tag-control').click(); + cy.switchLabel(labelName, 'tag'); + cy.contains('Setup tag').parents('.cvat-draw-shape-popover-content').within(() => { + cy.get('button').click(); + }); +});