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. Add/delete labels and attributes. #2693

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,71 @@
// Copyright (C) 2021 Intel Corporation
//
// SPDX-License-Identifier: MIT

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

context('Add/delete labels and attributes.', () => {
const caseId = '41';
const labelName = `Case ${caseId}`;
const attrName = `Attr for ${labelName}`;
const textDefaultValue = 'Some default value for type Text';

before(() => {
cy.visit('auth/login');
cy.login();
cy.get('#cvat-create-task-button').click();
});

describe(`Testing "${labelName}"`, () => {
it('Start adding a label. Press Cancel. The label is not created.', () => {
cy.get('.cvat-constructor-viewer-new-item').click(); // Open label constructor
cy.get('[placeholder="Label name"]').type(labelName);
cy.contains('[type="button"]', 'Cancel').click();
cy.get('.cvat-constructor-viewer-item').should('not.exist');
});

it('Start adding a label. Start adding an attribute. Press Cancel. The label is not created.', () => {
cy.get('.cvat-constructor-viewer-new-item').click();
cy.get('[placeholder="Label name"]').type(labelName);
cy.get('.cvat-new-attribute-button').click();
cy.get('.cvat-attribute-name-input').type(attrName);
cy.get('.cvat-attribute-type-input').click();
cy.get('.cvat-attribute-type-input-text').click();
cy.get('.cvat-attribute-values-input').type(textDefaultValue);
cy.contains('[type="button"]', 'Cancel').click();
cy.get('.cvat-constructor-viewer-item').should('not.exist');
});

it('Start adding a label. Add an attribute. Press Done. The label should be created.', () => {
cy.get('.cvat-constructor-viewer-new-item').click();
cy.get('[placeholder="Label name"]').type(labelName);
cy.get('.cvat-new-attribute-button').click();
cy.get('.cvat-attribute-name-input').type(attrName);
cy.get('.cvat-attribute-type-input').click();
cy.get('.cvat-attribute-type-input-text').click();
cy.get('.cvat-attribute-values-input').type(textDefaultValue);
cy.contains('[type="submit"]', 'Done').click();
cy.get('.cvat-constructor-viewer-item').should('exist');
});

it('Start to edit the label. Attribute should exist. Remove the atrribute. Press Done.', () => {
cy.get('.cvat-constructor-viewer-item').find('[aria-label="edit"]').click();
cy.get('.cvat-attribute-inputs-wrapper')
.should('exist')
.within(() => {
cy.get('.cvat-delete-attribute-button').click();
});
cy.get('.cvat-attribute-inputs-wrapper').should('not.exist');
cy.contains('[type="submit"]', 'Done').click();
// After deleting the attribute and saving the changes, check that the attribute is missing.
cy.get('.cvat-constructor-viewer-item').find('[aria-label="edit"]').click();
cy.get('.cvat-attribute-inputs-wrapper').should('not.exist');
cy.contains('[type="button"]', 'Cancel').click();
bsekachev marked this conversation as resolved.
Show resolved Hide resolved
});

it('Delete the added label. The label removed.', () => {
cy.get('.cvat-constructor-viewer-item').find('[aria-label="close"]').click();
cy.get('.cvat-constructor-viewer-item').should('not.exist');
});
});
});