mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-17 21:12:14 +01:00
261 lines
7.5 KiB
JavaScript
261 lines
7.5 KiB
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2023 Julius Härtl <jus@bitgrid.net>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import { basename } from 'path'
|
|
import axios from '@nextcloud/axios'
|
|
import { User, addCommands } from '@nextcloud/cypress'
|
|
|
|
addCommands()
|
|
|
|
const url = Cypress.config('baseUrl').replace(/\/index.php\/?$/g, '')
|
|
Cypress.env('baseUrl', url)
|
|
|
|
Cypress.Commands.add('logout', (route = '/') => {
|
|
cy.session('_guest', function() {
|
|
})
|
|
})
|
|
|
|
Cypress.Commands.add('createFolder', (user, target) => {
|
|
cy.login(user)
|
|
const rootPath = `${Cypress.env('baseUrl')}/remote.php/dav/files/${encodeURIComponent(user.userId)}`
|
|
const dirPath = target.split('/').map(encodeURIComponent).join('/')
|
|
|
|
return cy.request('/csrftoken')
|
|
.then(({ body }) => body.token)
|
|
.then(requesttoken => {
|
|
return cy.request({
|
|
url: `${rootPath}/${dirPath}`,
|
|
method: 'MKCOL',
|
|
headers: {
|
|
requesttoken,
|
|
},
|
|
})
|
|
})
|
|
})
|
|
|
|
/**
|
|
* cy.uploadedFile - uploads a file from the fixtures folder
|
|
*
|
|
* @param {User} user the owner of the file, e.g. admin
|
|
* @param {string} fixture the fixture file name, e.g. image1.jpg
|
|
* @param {string} mimeType e.g. image/png
|
|
* @param {string} [target] the target of the file relative to the user root
|
|
*/
|
|
Cypress.Commands.add('uploadFile', (user, fixture, mimeType, target = `/${fixture}`) => {
|
|
cy.login(user)
|
|
const fileName = basename(target)
|
|
|
|
// get fixture
|
|
return cy.fixture(fixture, 'base64').then(async file => {
|
|
// convert the base64 string to a blob
|
|
const blob = Cypress.Blob.base64StringToBlob(file, mimeType)
|
|
|
|
// Process paths
|
|
const rootPath = `${Cypress.env('baseUrl')}/remote.php/dav/files/${encodeURIComponent(user.userId)}`
|
|
const filePath = target.split('/').map(encodeURIComponent).join('/')
|
|
try {
|
|
const file = new File([blob], fileName, { type: mimeType })
|
|
cy.request('/csrftoken')
|
|
.then(({ body }) => body.token)
|
|
.then(requesttoken => {
|
|
return axios.put(`${rootPath}/${filePath}`, file, {
|
|
headers: {
|
|
requesttoken,
|
|
'Content-Type': mimeType,
|
|
},
|
|
}).then(response => {
|
|
const fileId = Number( response.headers['oc-fileid']?.split('oc')?.[0])
|
|
cy.log(`Uploaded ${fileName}`,
|
|
response.status,
|
|
{ fileId }
|
|
)
|
|
cy.wrap(fileId)
|
|
})
|
|
})
|
|
} catch (error) {
|
|
cy.log(error)
|
|
throw new Error(`Unable to process fixture ${fixture}`)
|
|
}
|
|
})
|
|
|
|
})
|
|
|
|
Cypress.Commands.add('ocsRequest', (user, options) => {
|
|
const auth = { user: user.userId, password: user.password }
|
|
return cy.request({
|
|
form: true,
|
|
auth,
|
|
headers: {
|
|
'OCS-ApiRequest': 'true',
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
...options,
|
|
})
|
|
})
|
|
Cypress.Commands.add('shareFileToUser', (user, path, targetUser, shareData = {}) => {
|
|
cy.login(user)
|
|
cy.ocsRequest(user, {
|
|
method: 'POST',
|
|
url: `${url}/ocs/v2.php/apps/files_sharing/api/v1/shares?format=json`,
|
|
body: {
|
|
path,
|
|
shareType: 0,
|
|
shareWith: targetUser.userId,
|
|
...shareData,
|
|
},
|
|
}).then(response => {
|
|
cy.log(`${user.userId} shared ${path} with ${targetUser.userId}`, response.status)
|
|
})
|
|
})
|
|
|
|
Cypress.Commands.add('shareLink', (user, path, shareData = {}) => {
|
|
cy.login(user)
|
|
cy.ocsRequest(user, {
|
|
method: 'POST',
|
|
url: `${url}/ocs/v2.php/apps/files_sharing/api/v1/shares?format=json`,
|
|
body: {
|
|
path,
|
|
shareType: 3,
|
|
...shareData,
|
|
},
|
|
}).then(response => {
|
|
const token = response.body.ocs.data.token
|
|
cy.log(`${user.userId} shared ${path} as a link with token ${token}`, response.status)
|
|
cy.wrap(token)
|
|
})
|
|
})
|
|
|
|
Cypress.Commands.add('openFile', fileName => {
|
|
cy.get(`[data-cy-files-list] tr[data-cy-files-list-row-name="${fileName}"] a[data-cy-files-list-row-name-link]`).click()
|
|
})
|
|
|
|
Cypress.Commands.add('nextcloudEnableApp', (appId) => {
|
|
cy.login(new User('admin', 'admin'))
|
|
cy.request({
|
|
method: 'POST',
|
|
url: `${Cypress.env('baseUrl')}/ocs/v1.php/cloud/apps/${appId}?format=json`,
|
|
form: true,
|
|
auth: { user: 'admin', pass: 'admin' },
|
|
headers: {
|
|
'OCS-ApiRequest': 'true',
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
}).then(response => {
|
|
cy.log(`Enabled app ${appId}`, response.status)
|
|
})
|
|
})
|
|
|
|
Cypress.Commands.add('setPersonalTemplateFolder', (user, templateFolder) => {
|
|
cy.login(user)
|
|
templateFolder = templateFolder.split('/').map(encodeURIComponent).join('/')
|
|
|
|
return cy.request('/csrftoken')
|
|
.then(({ body }) => body.token)
|
|
.then(requesttoken => {
|
|
return cy.request({
|
|
url: `${Cypress.env('baseUrl')}/index.php/apps/richdocuments/ajax/personal.php`,
|
|
method: 'POST',
|
|
headers: {
|
|
requesttoken,
|
|
},
|
|
body: {
|
|
templateFolder,
|
|
},
|
|
})
|
|
})
|
|
})
|
|
Cypress.Commands.add('nextcloudTestingAppConfigSet', (appId, configKey, configValue) => {
|
|
cy.login(new User('admin', 'admin'))
|
|
cy.request({
|
|
method: 'POST',
|
|
url: `${Cypress.env('baseUrl')}/ocs/v1.php/apps/testing/api/v1/app/${appId}/${configKey}?format=json`,
|
|
auth: { user: 'admin', pass: 'admin' },
|
|
headers: {
|
|
'OCS-ApiRequest': 'true',
|
|
Cookie: '',
|
|
},
|
|
body: {
|
|
value: configValue,
|
|
},
|
|
}).then(response => {
|
|
cy.log(`Set app value app ${appId} ${configKey} ${configValue}`, response.status)
|
|
})
|
|
})
|
|
|
|
Cypress.Commands.add('waitForViewer', () => {
|
|
cy.get('#viewer', { timeout: 30000 })
|
|
.should('be.visible')
|
|
.and('have.class', 'modal-mask')
|
|
.and('not.have.class', 'icon-loading')
|
|
})
|
|
|
|
Cypress.Commands.add('waitForCollabora', (wrapped = false) => {
|
|
if (wrapped) {
|
|
cy.get('[data-cy="documentframe"]', { timeout: 30000 })
|
|
.its('0.contentDocument')
|
|
.its('body').should('not.be.empty')
|
|
.should('be.visible').should('not.be.empty')
|
|
.as('collaboraframe')
|
|
}
|
|
|
|
const coolFrame = wrapped
|
|
? cy.get('@collaboraframe').find('[data-cy="coolframe"]', { timeout: 30000 })
|
|
: cy.get('[data-cy="coolframe"]')
|
|
|
|
coolFrame
|
|
.its('0.contentDocument')
|
|
.its('body').should('not.be.empty')
|
|
.as('loleafletframe')
|
|
cy.get('@loleafletframe').find('#main-document-content').should('be.visible')
|
|
})
|
|
|
|
Cypress.Commands.add('waitForPostMessage', (messageId, values = undefined) => {
|
|
cy.get('@postMessage', { timeout: 20000 }).should(spy => {
|
|
const calls = spy.getCalls()
|
|
const findMatchingCall = calls.find(call => call.args[0].indexOf('"MessageId":"' + messageId + '"') !== -1)
|
|
if (!findMatchingCall) {
|
|
return expect(findMatchingCall).to.not.be.undefined
|
|
}
|
|
if (!values) {
|
|
const object = JSON.parse(findMatchingCall.args[0])
|
|
values.forEach(value => {
|
|
expect(object.Values).to.have.property(value, values[value])
|
|
})
|
|
}
|
|
})
|
|
})
|
|
|
|
Cypress.Commands.add('inputCollaboraGuestName', (guestName = 'cloud') => {
|
|
cy.get('[data-cy="guestNameModal"]').should('be.visible')
|
|
cy.get('[data-cy="guestNameInput"]').type(guestName)
|
|
cy.get('[data-cy="guestNameSubmit"]').click()
|
|
})
|
|
|
|
Cypress.Commands.add('closeDocument', () => {
|
|
cy.get('@loleafletframe').within(() => {
|
|
cy.get('#closebutton').click()
|
|
})
|
|
|
|
cy.get('#viewer', { timeout: 5000 }).should('not.exist')
|
|
})
|
|
|
|
Cypress.Commands.add('verifyOpen', (filename) => {
|
|
cy.get('#app-sidebar-vue')
|
|
.should('be.visible')
|
|
cy.get('.app-sidebar-header__mainname')
|
|
.should('be.visible')
|
|
.should('contain.text', filename)
|
|
})
|
|
|
|
Cypress.Commands.add('uploadSystemTemplate', () => {
|
|
cy.login(new User('admin', 'admin'))
|
|
cy.visit('/settings/admin/richdocuments')
|
|
cy.get('#richdocuments-templates').scrollIntoView()
|
|
cy.get('input[type=file]#add-template').selectFile({
|
|
contents: 'cypress/fixtures/templates/presentation.otp',
|
|
fileName: 'systemtemplate.otp',
|
|
mimeType: 'application/vnd.oasis.opendocument.presentation-template',
|
|
}, { force: true })
|
|
cy.get('#richdocuments-templates li').contains('systemtemplate.otp')
|
|
})
|