Skip to content

Commit

Permalink
Cypress test to check image rotate. (#2194)
Browse files Browse the repository at this point in the history
* Cypress test for check image rorate.

* Apply comments.

Co-authored-by: Dmitry Kruchinin <dmitryx.kruchinin@intel.com>
  • Loading branch information
dvkruchinin and Dmitry Kruchinin authored Sep 18, 2020
1 parent 2402793 commit 4a80959
Showing 1 changed file with 85 additions and 0 deletions.
85 changes: 85 additions & 0 deletions tests/cypress/integration/case_5_image_rotate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
* 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);')
})
})
})

0 comments on commit 4a80959

Please sign in to comment.