Merge branch 'develop' of https://github.com/opencv/cvat into upstream/develop
commit
0fe2e1875c
@ -0,0 +1,8 @@
|
|||||||
|
{% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name }}!
|
||||||
|
|
||||||
|
<p>You're receiving this e-mail because user <strong>{{ user_display }}</strong> has given yours as an e-mail address to connect their account.</p>
|
||||||
|
|
||||||
|
<p>To confirm this is correct, go to <a href="{{ activate_url }}">{{ activate_url }}</a></p>
|
||||||
|
{% endblocktrans %}
|
||||||
|
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}<strong>{{ site_domain }}</strong>{% endblocktrans %}
|
||||||
|
{% endautoescape %}
|
||||||
@ -0,0 +1,66 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2020 Intel Corporation
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
/// <reference types="cypress" />
|
||||||
|
|
||||||
|
context('Hidden objects mustn\'t consider when we want to group visible objects only and use an grouping area for it.', () => {
|
||||||
|
|
||||||
|
const issueId = '1841'
|
||||||
|
const labelName = `Issue ${issueId}`
|
||||||
|
const taskName = `New annotation task for ${labelName}`
|
||||||
|
const attrName = `Attr for ${labelName}`
|
||||||
|
const textDefaultValue = 'Some default value for type Text'
|
||||||
|
const image = `image_${issueId}.png`
|
||||||
|
const width = 800
|
||||||
|
const height = 800
|
||||||
|
const posX = 10
|
||||||
|
const posY = 10
|
||||||
|
const color = 'white'
|
||||||
|
let bgcolor = ''
|
||||||
|
|
||||||
|
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 issue "${issueId}"`, () => {
|
||||||
|
it('Change appearance to "Group"', () => {
|
||||||
|
cy.changeAppearance('Group')
|
||||||
|
})
|
||||||
|
it('Create three points as different objects', () => {
|
||||||
|
cy.createPoint(300, 410)
|
||||||
|
cy.get('#cvat-objects-sidebar-state-item-1')
|
||||||
|
.should('contain', '1').and('contain', 'POINTS SHAPE')
|
||||||
|
cy.createPoint(350, 410)
|
||||||
|
cy.get('#cvat-objects-sidebar-state-item-2')
|
||||||
|
.should('contain', '2').and('contain', 'POINTS SHAPE')
|
||||||
|
cy.createPoint(400, 410)
|
||||||
|
cy.get('#cvat-objects-sidebar-state-item-3')
|
||||||
|
.should('contain', '3').and('contain', 'POINTS SHAPE')
|
||||||
|
.should('have.attr', 'style').then(($bgcolor) => {
|
||||||
|
bgcolor = $bgcolor // Get style attr "background-color"
|
||||||
|
})
|
||||||
|
})
|
||||||
|
it('Hide the last point', () => {
|
||||||
|
cy.get('#cvat-objects-sidebar-state-item-3')
|
||||||
|
.find('.anticon-eye')
|
||||||
|
.click()
|
||||||
|
cy.get('#cvat-objects-sidebar-state-item-3')
|
||||||
|
.find('.anticon-eye-invisible')
|
||||||
|
.should('exist')
|
||||||
|
})
|
||||||
|
it('Group the created points', () => {
|
||||||
|
cy.shapeGrouping(250, 380, 430, 450)
|
||||||
|
})
|
||||||
|
it('The hidden point is not grouping', () => {
|
||||||
|
cy.get('#cvat-objects-sidebar-state-item-3')
|
||||||
|
.should('have.attr', 'style', bgcolor) // "background-color" should not be changed
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
Loading…
Reference in New Issue