未验证 提交 4a809591 编写于 作者: D Dmitry Kruchinin 提交者: GitHub

Cypress test to check image rotate. (#2194)

* Cypress test for check image rorate.

* Apply comments.
Co-authored-by: NDmitry Kruchinin <dmitryx.kruchinin@intel.com>
上级 24027931
/*
* Copyright (C) 2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*/
/// <reference types="cypress" />
context('Check if the image is rotated', () => {
const caseId = '5'
const labelName = `Case ${caseId}`
const taskName = `New annotation task for ${labelName}`
const attrName = `Attr for ${labelName}`
const textDefaultValue = 'Some default value for type Text'
const imageFileName = `image_${labelName.replace(' ', '_').toLowerCase()}`
const image = `${imageFileName}.png`
const width = 800
const height = 800
const posX = 10
const posY = 10
const color = 'gray'
function imageRotate(direction='anticlockwise') {
cy.get('.cvat-rotate-canvas-control')
.trigger('mouseover')
if (direction === 'clockwise') {
cy.get('.cvat-rotate-canvas-controls-right')
.click()
} else {
cy.get('.cvat-rotate-canvas-controls-left')
.click()
}
}
before(() => {
cy.visit('auth/login')
cy.login()
cy.imageGenerator('cypress/fixtures', image, width, height, color, posX, posY, labelName)
cy.createAnnotationTask(taskName, labelName, attrName, textDefaultValue, image)
cy.openTaskJob(taskName)
})
describe(`Testing "${labelName}"`, () => {
it('Rotate image clockwise 90deg', () => {
imageRotate('clockwise')
cy.get('#cvat_canvas_background')
.should('have.attr', 'style').and('contain', 'rotate(90deg);')
})
it('Rotate image clockwise 180deg', () => {
imageRotate('clockwise')
cy.get('#cvat_canvas_background')
.should('have.attr', 'style').and('contain', 'rotate(180deg);')
})
it('Rotate image clockwise 270deg', () => {
imageRotate('clockwise')
cy.get('#cvat_canvas_background')
.should('have.attr', 'style').and('contain', 'rotate(270deg);')
})
it('Rotate image clockwise 360deg', () => {
imageRotate('clockwise')
cy.get('#cvat_canvas_background')
.should('have.attr', 'style').and('contain', 'rotate(0deg);')
})
it('Rotate image anticlockwise 90deg', () => {
imageRotate()
cy.get('#cvat_canvas_background')
.should('have.attr', 'style').and('contain', 'rotate(270deg);')
})
it('Rotate image anticlockwise 180deg', () => {
imageRotate()
cy.get('#cvat_canvas_background')
.should('have.attr', 'style').and('contain', 'rotate(180deg);')
})
it('Rotate image anticlockwise 270deg', () => {
imageRotate()
cy.get('#cvat_canvas_background')
.should('have.attr', 'style').and('contain', 'rotate(90deg);')
})
it('Rotate image anticlockwise 360deg', () => {
imageRotate()
cy.get('#cvat_canvas_background')
.should('have.attr', 'style').and('contain', 'rotate(0deg);')
})
})
})
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册