mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
26f90505ff
Co-authored-by: Philip Molares <philip.molares@udo.edu> Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de>
107 lines
2.1 KiB
TypeScript
107 lines
2.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { AuthProviderType } from '../../src/api/config/types'
|
|
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
loadConfig(): Chainable<Window>
|
|
}
|
|
}
|
|
|
|
export const branding = {
|
|
name: 'DEMO Corp',
|
|
logo: '/mock-public/img/demo.png'
|
|
}
|
|
|
|
export const authProviders = [
|
|
{
|
|
type: AuthProviderType.FACEBOOK
|
|
},
|
|
{
|
|
type: AuthProviderType.GITHUB
|
|
},
|
|
{
|
|
type: AuthProviderType.TWITTER
|
|
},
|
|
{
|
|
type: AuthProviderType.DROPBOX
|
|
},
|
|
{
|
|
type: AuthProviderType.GOOGLE
|
|
},
|
|
{
|
|
type: AuthProviderType.LOCAL
|
|
},
|
|
{
|
|
type: AuthProviderType.LDAP,
|
|
identifier: 'test-ldap',
|
|
providerName: 'Test LDAP'
|
|
},
|
|
{
|
|
type: AuthProviderType.OAUTH2,
|
|
identifier: 'test-oauth2',
|
|
providerName: 'Test OAuth2'
|
|
},
|
|
{
|
|
type: AuthProviderType.SAML,
|
|
identifier: 'test-saml',
|
|
providerName: 'Test SAML'
|
|
},
|
|
{
|
|
type: AuthProviderType.GITLAB,
|
|
identifier: 'test-gitlab',
|
|
providerName: 'Test GitLab'
|
|
}
|
|
]
|
|
|
|
export const config = {
|
|
allowAnonymous: true,
|
|
allowRegister: true,
|
|
authProviders: authProviders,
|
|
branding: branding,
|
|
useImageProxy: false,
|
|
specialUrls: {
|
|
privacy: 'https://example.com/privacy',
|
|
termsOfUse: 'https://example.com/termsOfUse',
|
|
imprint: 'https://example.com/imprint'
|
|
},
|
|
version: {
|
|
major: 0,
|
|
minor: 0,
|
|
patch: 0,
|
|
preRelease: '',
|
|
commit: 'MOCK'
|
|
},
|
|
plantumlServer: 'http://mock-plantuml.local',
|
|
maxDocumentLength: 200,
|
|
iframeCommunication: {
|
|
editorOrigin: 'http://127.0.0.1:3001/',
|
|
rendererOrigin: 'http://127.0.0.1:3001/'
|
|
}
|
|
}
|
|
|
|
Cypress.Commands.add('loadConfig', (additionalConfig?: Partial<typeof config>) => {
|
|
return cy.intercept('/api/mock-backend/private/config', {
|
|
statusCode: 200,
|
|
body: {
|
|
...config,
|
|
...additionalConfig
|
|
}
|
|
})
|
|
})
|
|
|
|
beforeEach(() => {
|
|
cy.loadConfig()
|
|
|
|
cy.intercept('GET', '/mock-public/motd.md', {
|
|
body: '404 Not Found!',
|
|
statusCode: 404
|
|
})
|
|
cy.intercept('HEAD', '/mock-public/motd.md', {
|
|
statusCode: 404
|
|
})
|
|
})
|