2020-11-22 20:50:07 +00:00
|
|
|
/*
|
2023-06-29 20:17:03 +00:00
|
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
2020-11-22 20:50:07 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-07-16 09:22:53 +00:00
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
2021-02-08 14:03:11 +00:00
|
|
|
describe('Intro page', () => {
|
2020-07-16 09:22:53 +00:00
|
|
|
beforeEach(() => {
|
2023-08-12 18:07:38 +00:00
|
|
|
cy.intercept('/public/intro.md', 'test content')
|
2022-01-30 20:46:43 +00:00
|
|
|
cy.visitHome()
|
2020-07-16 09:22:53 +00:00
|
|
|
})
|
|
|
|
|
2021-05-03 19:56:44 +00:00
|
|
|
describe('customizable content', () => {
|
2021-02-08 14:03:11 +00:00
|
|
|
it('fetches and shows the correct intro page content', () => {
|
2023-03-16 07:20:16 +00:00
|
|
|
cy.getSimpleRendererBody().contains('test content')
|
2020-07-16 09:22:53 +00:00
|
|
|
})
|
2021-05-03 19:56:44 +00:00
|
|
|
|
2021-11-19 17:04:04 +00:00
|
|
|
it("won't show anything if no content was found", () => {
|
2023-08-12 18:07:38 +00:00
|
|
|
cy.intercept('/public/intro.md', {
|
2021-05-03 19:56:44 +00:00
|
|
|
statusCode: 404
|
|
|
|
})
|
2022-01-30 20:46:43 +00:00
|
|
|
cy.visitHome()
|
2021-05-03 19:56:44 +00:00
|
|
|
|
2021-12-25 15:44:24 +00:00
|
|
|
cy.getByCypressId('documentIframe').should('not.exist')
|
2021-05-03 19:56:44 +00:00
|
|
|
})
|
2021-02-08 14:03:11 +00:00
|
|
|
})
|
2020-07-16 09:22:53 +00:00
|
|
|
|
2021-02-08 14:03:11 +00:00
|
|
|
describe('sign in button', () => {
|
|
|
|
it('is hidden when logged in', () => {
|
2021-12-25 15:44:24 +00:00
|
|
|
cy.getByCypressId('sign-in-button').should('not.exist')
|
2020-07-16 09:22:53 +00:00
|
|
|
})
|
|
|
|
|
2021-02-08 14:03:11 +00:00
|
|
|
it('is visible when logged out', () => {
|
|
|
|
cy.logout()
|
2021-12-25 15:44:24 +00:00
|
|
|
cy.getByCypressId('sign-in-button').should('exist')
|
2020-07-16 09:22:53 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|