2020-11-22 15:50:07 -05:00
|
|
|
/*
|
2021-01-06 15:37:59 -05:00
|
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
2020-11-22 15:50:07 -05:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-07-16 05:22:53 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
2021-02-08 09:03:11 -05:00
|
|
|
describe('Intro page', () => {
|
2020-07-16 05:22:53 -04:00
|
|
|
beforeEach(() => {
|
2021-05-02 16:38:43 -04:00
|
|
|
cy.intercept('/mock-backend/public/intro.md', 'test content')
|
2020-07-16 05:22:53 -04:00
|
|
|
cy.visit('/')
|
|
|
|
})
|
|
|
|
|
2021-05-03 15:56:44 -04:00
|
|
|
describe('customizable content', () => {
|
2021-02-08 09:03:11 -05:00
|
|
|
it('fetches and shows the correct intro page content', () => {
|
|
|
|
cy.getMarkdownBody()
|
|
|
|
.contains('test content')
|
2020-07-16 05:22:53 -04:00
|
|
|
})
|
2021-05-03 15:56:44 -04:00
|
|
|
|
|
|
|
it('won\'t show anything if no content was found', () => {
|
|
|
|
cy.intercept('/mock-backend/public/intro.md', {
|
|
|
|
statusCode: 404
|
|
|
|
})
|
|
|
|
|
|
|
|
cy.get(`iframe[data-cy="documentIframe"]`)
|
|
|
|
.should('not.exist')
|
|
|
|
})
|
2021-02-08 09:03:11 -05:00
|
|
|
})
|
2020-07-16 05:22:53 -04:00
|
|
|
|
2021-02-08 09:03:11 -05:00
|
|
|
describe('features button', () => {
|
|
|
|
it('is hidden when logged in', () => {
|
|
|
|
cy.get('[data-cy="features-button"]')
|
2020-07-16 05:22:53 -04:00
|
|
|
.should('not.exist')
|
|
|
|
})
|
|
|
|
|
2021-02-08 09:03:11 -05:00
|
|
|
it('is visible when logged out', () => {
|
2020-07-16 05:22:53 -04:00
|
|
|
cy.logout()
|
2021-02-08 09:03:11 -05:00
|
|
|
cy.get('[data-cy="features-button"]')
|
|
|
|
.should('exist')
|
2020-07-16 05:22:53 -04:00
|
|
|
})
|
2021-02-08 09:03:11 -05:00
|
|
|
})
|
2020-07-16 05:22:53 -04:00
|
|
|
|
2021-02-08 09:03:11 -05:00
|
|
|
describe('sign in button', () => {
|
|
|
|
it('is hidden when logged in', () => {
|
|
|
|
cy.get('[data-cy="sign-in-button"]')
|
|
|
|
.should('not.exist')
|
2020-07-16 05:22:53 -04:00
|
|
|
})
|
|
|
|
|
2021-02-08 09:03:11 -05:00
|
|
|
it('is visible when logged out', () => {
|
|
|
|
cy.logout()
|
|
|
|
cy.get('[data-cy="sign-in-button"]')
|
2020-07-16 05:22:53 -04:00
|
|
|
.should('exist')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-02-08 09:03:11 -05:00
|
|
|
describe('version dialog', () => {
|
|
|
|
it('can be opened and closed', () => {
|
|
|
|
cy.get('[data-cy="version-modal"]')
|
|
|
|
.should('not.exist')
|
|
|
|
cy.get('[data-cy="show-version-modal"]')
|
|
|
|
.click()
|
|
|
|
cy.get('[data-cy="version-modal"]')
|
|
|
|
.should('be.visible')
|
2021-03-10 16:45:05 -05:00
|
|
|
cy.get('[data-cy="version-modal"] .modal-header .close')
|
2021-02-08 09:03:11 -05:00
|
|
|
.click()
|
|
|
|
cy.get('[data-cy="version-modal"]')
|
|
|
|
.should('not.exist')
|
|
|
|
})
|
2020-07-16 05:22:53 -04:00
|
|
|
})
|
|
|
|
})
|