import '../utils/dismiss-local-backup'; describe('Markdown widget', () => { describe('quote block', () => { before(() => { Cypress.config('defaultCommandTimeout', 4000); cy.task('setupBackend', { backend: 'test' }); cy.loginAndNewPost(); }); beforeEach(() => { cy.clearMarkdownEditorContent(); }); after(() => { cy.task('teardownBackend', { backend: 'test' }); }); describe('toggle quote', () => { it('toggles empty quote block on and off in empty editor', () => { cy.clickQuoteButton() .confirmMarkdownEditorContent(`
`) .clickQuoteButton() .confirmMarkdownEditorContent(` `); }); it('toggles empty quote block on and off for current block', () => { cy.focused() .type('foo') .clickQuoteButton() .confirmMarkdownEditorContent(`
`) .clickQuoteButton() .confirmMarkdownEditorContent(`foo
foo
`); }); it('toggles entire quote block without expanded selection', () => { cy.clickQuoteButton() .type('foo') .enter() .type('bar') .clickQuoteButton() .confirmMarkdownEditorContent(`foo
bar
`); }); it('toggles entire quote block with complex content', () => { cy.clickQuoteButton() .clickUnorderedListButton() .clickHeadingOneButton() .type('foo') .enter({ times: 2 }) // First Enter creates new list item. Second Enter turns that list item into a default block. .clickQuoteButton() // Unwrap the quote block. .confirmMarkdownEditorContent(``) .clickQuoteButton() .confirmMarkdownEditorContent(`foo
bar
foo
bar
`) .clickQuoteButton() .confirmMarkdownEditorContent(``); }); it('toggles empty quote block on and off for partially selected blocks', () => { cy.focused() .type('foo') .enter() .type('bar') .setSelection('oo', 'ba') .clickQuoteButton() .confirmMarkdownEditorContent(`foo
bar
`) .clickQuoteButton() .confirmMarkdownEditorContent(`foo
bar
foo
bar
`) .clickQuoteButton() .confirmMarkdownEditorContent(``); }); it('toggles quote block on and off for multiple selected list items', () => { cy.focused() .clickUnorderedListButton() .type('foo') .enter() .type('bar') .setSelection('foo', 'bar') .clickQuoteButton() .confirmMarkdownEditorContent(`foo
bar
`) .clickQuoteButton() .confirmMarkdownEditorContent(`
foo
bar
foo
bar
foo
`) }); it('creates new quote block if parent is not a quote, can deeply nest', () => { cy.clickQuoteButton() .clickUnorderedListButton() .clickQuoteButton() .clickUnorderedListButton() .clickQuoteButton() .clickUnorderedListButton() .clickQuoteButton() .type('foo') // Content should contains 4
bar
baz
tags and 3tags .confirmMarkdownEditorContent(`
`) /* * First Enter creates new paragraph within the innermost block quote. * Second Enter moves that paragraph one level up to become sibling of the previous quote block and direct child of a list item. * Third Enter to turn that paragraph into a list item and move it one level up. * Repeat the circle for three more times to reach the second list item of the outermost list block. * Then Enter again to turn that list item into a paragraph and move it one level up to become sibling of the outermost list and * direct child of the outermost block quote. */ .enter({ times: 10 }) .type('bar') .confirmMarkdownEditorContent(`
foo
`) /* The GOAL is to delete all the text content inside this deeply nested block quote and turn it into a default paragraph block on top level. * We need: * 3 Backspace to delete the word “bar”. * 1 Backspace to remove the paragraph that contains bar and bring cursor to the end of the unordered list which is direct child of the outermost block quote. * 3 Backspace to remove the word “foo”. * 1 Backspace to remove the current block quote that the cursor is on, 1 Backspace to remove the list that wraps the block quote. Repeat this step for three times for a total of 6 Backspace until the cursor is on the outermost block quote. * 1 Backspace to remove to toggle off the outermost block quote and turn it into a default paragraph. * Total Backspaces required: 3 + 1 + 3 + ((1 + 1) * 3) + 1 = 14 */ .backspace({ times: 14 }) }); }); describe('backspace inside quote', () => { it('joins two paragraphs', () => { cy.clickQuoteButton() .type('foo') .enter() .type('bar') .setCursorBefore('bar') .backspace() .confirmMarkdownEditorContent(`
foo
bar
`); }); it('joins quote with previous quote', () => { cy.clickQuoteButton() .type('foo') .enter({ times: 2 }) .clickQuoteButton() .type('bar') .confirmMarkdownEditorContent(`foobar
foo
`) .setCursorBefore('bar') .backspace() .confirmMarkdownEditorContent(`bar
`); }); it('removes first block from quote when focused at first block at start', () => { cy.clickQuoteButton() .type('foo') .enter() .type('bar') .setCursorBefore('foo') .backspace() .confirmMarkdownEditorContent(`foo
bar
foo
`) }); }); describe('enter inside quote', () => { it('creates new block inside quote', () => { cy.clickQuoteButton() .type('foo') .enter() .confirmMarkdownEditorContent(`bar
`) .type('bar') .setCursorAfter('ba') .enter() .confirmMarkdownEditorContent(`foo
`); }); it('creates new block after quote from empty last block', () => { cy.clickQuoteButton() .type('foo') .enter() .enter() .confirmMarkdownEditorContent(`foo
ba
r
`) }); }); }); });foo