2020-11-22 20:50:07 +00:00
|
|
|
/*
|
2022-06-08 11:19:51 +00:00
|
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
2020-11-22 20:50:07 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-01-11 22:22:11 +00:00
|
|
|
describe('The status bar text length info', () => {
|
2021-11-19 17:04:04 +00:00
|
|
|
const warningTestContent = '0123456789'.repeat(10)
|
|
|
|
const dangerTestContent = '0123456789'.repeat(20)
|
|
|
|
const tooMuchTestContent = `${dangerTestContent}a`
|
2020-09-05 14:36:46 +00:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2022-01-30 20:46:43 +00:00
|
|
|
cy.visitTestNote()
|
2020-09-05 14:36:46 +00:00
|
|
|
})
|
|
|
|
|
2021-01-11 22:22:11 +00:00
|
|
|
it('shows the maximal length of the document as number of available characters in the tooltip', () => {
|
2021-12-25 15:44:24 +00:00
|
|
|
cy.getByCypressId('remainingCharacters').attribute('title').should('contain', ' 200 ')
|
2020-09-05 14:36:46 +00:00
|
|
|
})
|
|
|
|
|
2021-01-11 22:22:11 +00:00
|
|
|
it('color is set to "warning" on <= 100 characters remaining', () => {
|
2021-10-04 10:50:39 +00:00
|
|
|
cy.setCodemirrorContent(warningTestContent)
|
2021-12-25 15:44:24 +00:00
|
|
|
cy.getByCypressId('remainingCharacters').should('have.class', 'text-warning')
|
2020-09-05 14:36:46 +00:00
|
|
|
})
|
|
|
|
|
2021-01-11 22:22:11 +00:00
|
|
|
it('color is set to danger on <= 0 characters remaining', () => {
|
2021-10-04 10:50:39 +00:00
|
|
|
cy.setCodemirrorContent(dangerTestContent)
|
2021-12-25 15:44:24 +00:00
|
|
|
cy.getByCypressId('remainingCharacters').should('have.class', 'text-danger')
|
2020-09-05 14:36:46 +00:00
|
|
|
})
|
|
|
|
|
2021-12-14 09:16:25 +00:00
|
|
|
it('opens a modal', () => {
|
2021-10-04 10:50:39 +00:00
|
|
|
cy.setCodemirrorContent(tooMuchTestContent)
|
2021-12-25 15:44:24 +00:00
|
|
|
cy.getByCypressId('limitReachedModal').should('be.visible')
|
2020-09-05 14:36:46 +00:00
|
|
|
})
|
|
|
|
})
|