mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-26 19:53:59 -05:00
1c6e6e10fb
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
338 lines
10 KiB
TypeScript
338 lines
10 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
const testText = 'textText'
|
|
const testLink = 'http://hedgedoc.org'
|
|
|
|
describe('Toolbar', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/n/test')
|
|
cy.get('.btn.active.btn-outline-secondary > i.fa-columns')
|
|
.should('exist')
|
|
cy.get('.CodeMirror textarea')
|
|
.type('{ctrl}a', { force: true })
|
|
.type('{backspace}')
|
|
cy.viewport(1920, 1080)
|
|
})
|
|
|
|
it('bold', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-bold')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `**${testText}**`)
|
|
})
|
|
|
|
it('italic', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-italic')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `*${testText}*`)
|
|
})
|
|
|
|
it('underline', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-underline')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `++${testText}++`)
|
|
})
|
|
|
|
it('strikethrough', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-strikethrough')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `~~${testText}~~`)
|
|
})
|
|
|
|
it('subscript', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-subscript')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `~${testText}~`)
|
|
})
|
|
|
|
it('superscript', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-superscript')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `^${testText}^`)
|
|
})
|
|
|
|
it('heading', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
cy.get('.fa-header')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `# ${testText}`)
|
|
cy.get('.fa-header')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `## ${testText}`)
|
|
})
|
|
|
|
describe('code', () => {
|
|
it('nothing selected empty line', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
.type('{backspace}')
|
|
cy.get('.fa-code')
|
|
.click()
|
|
cy.get('.CodeMirror-code > div:nth-of-type(1) > .CodeMirror-line > span > span')
|
|
.should('have.text', '```')
|
|
cy.get('.CodeMirror-code > div.CodeMirror-activeline > .CodeMirror-line > span span')
|
|
.should('have.text', '```')
|
|
})
|
|
|
|
it('nothing selected non line', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
.type('{leftArrow}')
|
|
cy.get('.fa-code')
|
|
.click()
|
|
cy.get('.CodeMirror-code > div:nth-of-type(1) > .CodeMirror-line > span > span')
|
|
.should('have.text', '```')
|
|
cy.get('.CodeMirror-code > div:nth-of-type(2) > .CodeMirror-line > span span')
|
|
.should('have.text', testText)
|
|
cy.get('.CodeMirror-code > div.CodeMirror-activeline > .CodeMirror-line > span span')
|
|
.should('have.text', '```')
|
|
})
|
|
|
|
it('line selected', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-code')
|
|
.click()
|
|
cy.get('.CodeMirror-code > div:nth-of-type(1) > .CodeMirror-line > span > span')
|
|
.should('have.text', '```')
|
|
cy.get('.CodeMirror-code > div:nth-of-type(2) > .CodeMirror-line > span span')
|
|
.should('have.text', testText)
|
|
cy.get('.CodeMirror-code > div.CodeMirror-activeline > .CodeMirror-line > span span')
|
|
.should('have.text', '```')
|
|
})
|
|
})
|
|
|
|
it('quote', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
cy.get('.fa-quote-right')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `> ${testText}`)
|
|
cy.get('.fa-quote-right')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `> > ${testText}`)
|
|
})
|
|
|
|
it('unordered list', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
cy.get('.fa-list')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `- ${testText}`)
|
|
cy.get('.fa-list')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `- - ${testText}`)
|
|
})
|
|
|
|
it('ordered list', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
cy.get('.fa-list-ol')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `1. ${testText}`)
|
|
cy.get('.fa-list-ol')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `1. 1. ${testText}`)
|
|
})
|
|
|
|
it('todo list', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
cy.get('.fa-check-square')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `- [ ] ${testText}`)
|
|
cy.get('.fa-check-square')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `- [ ] - [ ] ${testText}`)
|
|
})
|
|
|
|
describe('link', () => {
|
|
it('with selection text', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-link')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `[${testText}](https://)`)
|
|
})
|
|
|
|
it('without selection', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
cy.get('.fa-link')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `${testText}[](https://)`)
|
|
})
|
|
|
|
it('with selection link', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testLink}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-link')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `[](${testLink})`)
|
|
})
|
|
})
|
|
|
|
describe('image', () => {
|
|
it('with selection', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-picture-o')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `![${testText}](https://)`)
|
|
})
|
|
|
|
it('without selection', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testText}`)
|
|
cy.get('.fa-picture-o')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `${testText}![](https://)`)
|
|
})
|
|
|
|
it('with selection link', () => {
|
|
cy.get('.CodeMirror textarea')
|
|
.type(`${testLink}`)
|
|
.type('{ctrl}a')
|
|
cy.get('.fa-picture-o')
|
|
.click()
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span')
|
|
.should('have.text', `![](${testLink})`)
|
|
})
|
|
})
|
|
|
|
describe('table', () => {
|
|
beforeEach(() => {
|
|
cy.get('.table-picker-container')
|
|
.should('not.be.visible')
|
|
cy.get('.fa-table')
|
|
.last()
|
|
.click()
|
|
cy.get('.table-picker-container')
|
|
.should('be.visible')
|
|
})
|
|
|
|
it('overlay', () => {
|
|
cy.get('.table-container > div:nth-of-type(25)')
|
|
.trigger('mouseover')
|
|
cy.get('.table-cell.bg-primary')
|
|
.should('have.length', 15)
|
|
cy.get('.table-picker-container > p')
|
|
.contains('5x3')
|
|
cy.get('.table-container > div:nth-of-type(25)')
|
|
.click()
|
|
})
|
|
|
|
it('custom', () => {
|
|
cy.get('.modal-dialog')
|
|
.should('not.exist')
|
|
cy.get('.fa-table')
|
|
.first()
|
|
.click()
|
|
cy.get('.modal-dialog')
|
|
.should('be.visible')
|
|
cy.get('.modal-content > .d-flex > input')
|
|
.first()
|
|
.type('5')
|
|
cy.get('.modal-content > .d-flex > input')
|
|
.last()
|
|
.type('3')
|
|
cy.get('.modal-footer > button')
|
|
.click()
|
|
})
|
|
|
|
afterEach(() => {
|
|
cy.get('.CodeMirror-code > div:nth-of-type(2) > .CodeMirror-line > span span')
|
|
.should('have.text', '| # 1 | # 2 | # 3 | # 4 | # 5 |')
|
|
cy.get('.CodeMirror-code > div:nth-of-type(3) > .CodeMirror-line > span span')
|
|
.should('have.text', '| ---- | ---- | ---- | ---- | ---- |')
|
|
cy.get('.CodeMirror-code > div:nth-of-type(4) > .CodeMirror-line > span span')
|
|
.should('have.text', '| Text | Text | Text | Text | Text |')
|
|
cy.get('.CodeMirror-code > div:nth-of-type(5) > .CodeMirror-line > span span')
|
|
.should('have.text', '| Text | Text | Text | Text | Text |')
|
|
cy.get('.CodeMirror-activeline > .CodeMirror-line > span ')
|
|
.should('have.text', '| Text | Text | Text | Text | Text |')
|
|
})
|
|
})
|
|
|
|
it('line', () => {
|
|
cy.get('.fa-minus')
|
|
.click()
|
|
cy.get('.CodeMirror-code > div:nth-of-type(2) > .CodeMirror-line > span span')
|
|
.should('have.text', '----')
|
|
})
|
|
|
|
it('collapsable block', () => {
|
|
cy.get('.fa-caret-square-o-down')
|
|
.click()
|
|
cy.get('.CodeMirror-code > div:nth-of-type(2) > .CodeMirror-line > span span')
|
|
.should('have.text', '<details>')
|
|
})
|
|
|
|
it('comment', () => {
|
|
cy.get('.fa-comment')
|
|
.click()
|
|
cy.get('.CodeMirror-code > div:nth-of-type(2) > .CodeMirror-line > span span')
|
|
.should('have.text', '> []')
|
|
})
|
|
|
|
describe('emoji-picker', () => {
|
|
it('show when clicked', () => {
|
|
cy.get('emoji-picker')
|
|
.should('not.be.visible')
|
|
cy.get('.fa-smile-o')
|
|
.click()
|
|
cy.get('emoji-picker')
|
|
.should('be.visible')
|
|
})
|
|
})
|
|
|
|
})
|