Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cypress test. Call HOC component each render. #2788

Merged
merged 1 commit into from
Feb 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
// Copyright (C) 2021 Intel Corporation
//
// SPDX-License-Identifier: MIT

/// <reference types="cypress" />

import { taskName, labelName } from '../../support/const';

context('Call HOC component each render.', () => {
const issueId = '2753';
const numberOfPointsPolygon = 4;
const numberOfPointsPolyline = 5;
const numberOfPointsPoint = 6;

const createPolygonShapePoints = {
reDraw: false,
type: 'Shape',
labelName: labelName,
pointsMap: [
{ x: 200, y: 200 },
{ x: 250, y: 200 },
{ x: 250, y: 250 },
{ x: 200, y: 300 },
],
numberOfPoints: numberOfPointsPolygon,
};
const createPolylinesTrackPoints = {
type: 'Track',
labelName: labelName,
pointsMap: [
{ x: 300, y: 200 },
{ x: 350, y: 200 },
{ x: 350, y: 250 },
{ x: 300, y: 350 },
{ x: 270, y: 330 },
],
numberOfPoints: numberOfPointsPolyline,
};
const createPointsShapePoints = {
type: 'Shape',
labelName: labelName,
pointsMap: [
{ x: 400, y: 200 },
{ x: 450, y: 200 },
{ x: 450, y: 250 },
{ x: 450, y: 230 },
{ x: 430, y: 230 },
{ x: 400, y: 230 },
],
numberOfPoints: numberOfPointsPoint,
};

function checkNumberOfPointsValue(objectType, numberOfPoints) {
cy.get(`.cvat-draw-${objectType}-control`).trigger('mouseover');
cy.get(`.cvat-draw-${objectType}-popover-visible`).within(() => {
cy.get('.cvat-draw-shape-popover-points-selector')
.find('input')
.should('have.attr', 'value', numberOfPoints);
});
cy.get(`.cvat-draw-${objectType}-control`).trigger('mouseout');
}

before(() => {
cy.openTaskJob(taskName);
});

describe(`Testing issue "${issueId}"`, () => {
it('Draw polygon, polyline, points. After drawing "Number of points" popover value should the same.', () => {
cy.createPolygon(createPolygonShapePoints);
cy.createPolyline(createPolylinesTrackPoints);
cy.createPoint(createPointsShapePoints);
checkNumberOfPointsValue('polygon', numberOfPointsPolygon);
checkNumberOfPointsValue('polyline', numberOfPointsPolyline);
checkNumberOfPointsValue('points', numberOfPointsPoint);
});
});
});