mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 02:06:29 -05:00
f3bf7cd105
Signed-off-by: Philip Molares <philip.molares@udo.edu>
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
const testTitle = 'testContent'
|
|
const testContent = `---\ntitle: ${testTitle}\n---\nThis is some test content`
|
|
|
|
describe('Export', () => {
|
|
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.get('.CodeMirror textarea')
|
|
.type(testContent)
|
|
})
|
|
|
|
it('Markdown', () => {
|
|
cy.get('#editor-menu-export')
|
|
.click()
|
|
cy.get('a.dropdown-item > i.fa-file-text')
|
|
.click()
|
|
cy.get('a[download]')
|
|
.then((anchor) => (
|
|
new Cypress.Promise((resolve: any, _: any) => {
|
|
// Use XHR to get the blob that corresponds to the object URL.
|
|
const xhr = new XMLHttpRequest();
|
|
xhr.open('GET', anchor.prop('href'), true);
|
|
xhr.responseType = 'blob';
|
|
|
|
// Once loaded, use FileReader to get the string back from the blob.
|
|
xhr.onload = () => {
|
|
if (xhr.status === 200) {
|
|
const blob = xhr.response;
|
|
const reader = new FileReader();
|
|
reader.onload = () => {
|
|
// Once we have a string, resolve the promise to let
|
|
// the Cypress chain continue, e.g. to assert on the result.
|
|
resolve(reader.result);
|
|
};
|
|
reader.readAsText(blob);
|
|
}
|
|
};
|
|
xhr.send();
|
|
})
|
|
))
|
|
// Now the regular Cypress assertions should work.
|
|
.should('equal', testContent);
|
|
})
|
|
})
|