|
|
|
|
@ -0,0 +1,56 @@
|
|
|
|
|
// Copyright (C) 2020 Intel Corporation
|
|
|
|
|
//
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
|
|
/// <reference types="cypress" />
|
|
|
|
|
|
|
|
|
|
import { taskName, labelName } from '../../support/const';
|
|
|
|
|
|
|
|
|
|
context('Check error сannot read property at saving job', () => {
|
|
|
|
|
|
|
|
|
|
const prId = '2203';
|
|
|
|
|
const createRectangleShape2Points = {
|
|
|
|
|
points: 'By 2 Points',
|
|
|
|
|
type: 'Shape',
|
|
|
|
|
labelName: labelName,
|
|
|
|
|
firstX: 100,
|
|
|
|
|
firstY: 100,
|
|
|
|
|
secondX: 300,
|
|
|
|
|
secondY: 300,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
before(() => {
|
|
|
|
|
cy.openTaskJob(taskName);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
after('Remove annotations and save job', () => {
|
|
|
|
|
cy.removeAnnotations();
|
|
|
|
|
cy.saveJob();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe(`Testing pr "${prId}"`, () => {
|
|
|
|
|
it('Create an object in first frame', () => {
|
|
|
|
|
cy.createRectangle(createRectangleShape2Points);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('Go to next frame and create an object in second frame', () => {
|
|
|
|
|
cy.get('.cvat-player-next-button').click();
|
|
|
|
|
cy.createRectangle(createRectangleShape2Points);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('Go to AAM', () => {
|
|
|
|
|
cy.changeWorkspace('Attribute annotation', labelName);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('Save job and go to previous frame at saving job', () => {
|
|
|
|
|
cy.server().route('PATCH', '/api/v1/jobs/**').as('saveJob');
|
|
|
|
|
cy.saveJob();
|
|
|
|
|
cy.get('body').type('d');
|
|
|
|
|
cy.wait('@saveJob').its('status').should('equal', 200);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('Page with the error is missing', () => {
|
|
|
|
|
cy.get('.cvat-global-boundary').should('not.exist');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|