mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 22:54:42 -04:00
114 lines
3.1 KiB
TypeScript
114 lines
3.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
const authProvidersDisabled = {
|
|
facebook: false,
|
|
github: false,
|
|
twitter: false,
|
|
gitlab: false,
|
|
dropbox: false,
|
|
ldap: false,
|
|
google: false,
|
|
saml: false,
|
|
oauth2: false,
|
|
internal: false,
|
|
openid: false
|
|
}
|
|
|
|
const initLoggedOutTestWithCustomAuthProviders = (cy: Cypress.cy, enabledProviders: Partial<typeof authProvidersDisabled>) => {
|
|
cy.loadConfig({
|
|
authProviders: {
|
|
...authProvidersDisabled,
|
|
...enabledProviders
|
|
}
|
|
})
|
|
cy.visit('/')
|
|
cy.logout()
|
|
}
|
|
|
|
describe('When logged-in, ', () => {
|
|
it('sign-in button is hidden', () => {
|
|
cy.loadConfig()
|
|
cy.visit('/')
|
|
cy.get('[data-cy=sign-in-button]')
|
|
.should('not.exist')
|
|
})
|
|
})
|
|
|
|
describe('When logged-out ', () => {
|
|
describe('and no auth-provider is enabled, ', () => {
|
|
it('sign-in button is hidden', () => {
|
|
initLoggedOutTestWithCustomAuthProviders(cy, {})
|
|
cy.get('[data-cy=sign-in-button]')
|
|
.should('not.exist')
|
|
})
|
|
})
|
|
|
|
describe('and an interactive auth-provider is enabled, ', () => {
|
|
it('sign-in button points to login route: internal', () => {
|
|
initLoggedOutTestWithCustomAuthProviders(cy, {
|
|
internal: true
|
|
})
|
|
cy.get('[data-cy=sign-in-button]')
|
|
.should('be.visible')
|
|
.should('have.attr', 'href', '/login')
|
|
})
|
|
|
|
it('sign-in button points to login route: ldap', () => {
|
|
initLoggedOutTestWithCustomAuthProviders(cy, {
|
|
ldap: true
|
|
})
|
|
cy.get('[data-cy=sign-in-button]')
|
|
.should('be.visible')
|
|
.should('have.attr', 'href', '/login')
|
|
})
|
|
|
|
it('sign-in button points to login route: openid', () => {
|
|
initLoggedOutTestWithCustomAuthProviders(cy, {
|
|
openid: true
|
|
})
|
|
cy.get('[data-cy=sign-in-button]')
|
|
.should('be.visible')
|
|
.should('have.attr', 'href', '/login')
|
|
})
|
|
})
|
|
|
|
describe('and only one one-click auth-provider is enabled, ', () => {
|
|
it('sign-in button points to auth-provider', () => {
|
|
initLoggedOutTestWithCustomAuthProviders(cy, {
|
|
saml: true
|
|
})
|
|
cy.get('[data-cy=sign-in-button]')
|
|
.should('be.visible')
|
|
// The absolute URL is used because it is defined as API base URL absolute.
|
|
.should('have.attr', 'href', 'http://127.0.0.1:3001/api/v2/auth/saml')
|
|
})
|
|
})
|
|
|
|
describe('and multiple one-click auth-providers are enabled, ', () => {
|
|
it('sign-in button points to login route', () => {
|
|
initLoggedOutTestWithCustomAuthProviders(cy, {
|
|
saml: true,
|
|
github: true
|
|
})
|
|
cy.get('[data-cy=sign-in-button]')
|
|
.should('be.visible')
|
|
.should('have.attr', 'href', '/login')
|
|
})
|
|
})
|
|
|
|
describe('and one-click- as well as interactive auth-providers are enabled, ', () => {
|
|
it('sign-in button points to login route', () => {
|
|
initLoggedOutTestWithCustomAuthProviders(cy, {
|
|
saml: true,
|
|
internal: true
|
|
})
|
|
cy.get('[data-cy=sign-in-button]')
|
|
.should('be.visible')
|
|
.should('have.attr', 'href', '/login')
|
|
})
|
|
})
|
|
})
|