12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /**
- * @copyright Copyright (c) 2022 Louis Chemineau <louis@chmn.me>
- *
- * @author Louis Chemineau <louis@chmn.me>
- *
- * @license AGPL-3.0-or-later
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- import path from "path"
- import type { User } from "@nextcloud/cypress"
- export function uploadThreeVersions(user: User, fileName: string) {
- // A new version will not be created if the changes occur
- // within less than one second of each other.
- // eslint-disable-next-line cypress/no-unnecessary-waiting
- cy.uploadContent(user, new Blob(['v1'], { type: 'text/plain' }), 'text/plain', `/${fileName}`)
- .wait(1100)
- .uploadContent(user, new Blob(['v2'], { type: 'text/plain' }), 'text/plain', `/${fileName}`)
- .wait(1100)
- .uploadContent(user, new Blob(['v3'], { type: 'text/plain' }), 'text/plain', `/${fileName}`)
- cy.login(user)
- }
- export function openVersionsPanel(fileName: string) {
- cy.get(`[data-cy-files-list] [data-cy-files-list-row-name="${fileName}"]`).within(() => {
- cy.get('[data-cy-files-list-row-actions] .action-item__menutoggle')
- .click()
- })
- cy.get('.action-item__popper')
- .get('[data-cy-files-list-row-action="details"]')
- .click()
- cy.get('#app-sidebar-vue')
- .get('[aria-controls="tab-version_vue"]')
- .click()
- }
- export function openVersionMenu(index: number) {
- cy.get('#tab-version_vue').within(() => {
- cy.get('[data-files-versions-version]')
- .eq(index).within(() => {
- cy.get('.action-item__menutoggle').filter(':visible')
- .click()
- })
- })
- }
- export function clickPopperAction(actionName: string) {
- cy.get('.v-popper__popper').filter(':visible')
- .contains(actionName)
- .click()
- }
- export function nameVersion(index: number, name: string) {
- openVersionMenu(index)
- clickPopperAction('Name this version')
- cy.get(':focused').type(`${name}{enter}`)
- }
- export function assertVersionContent(filename: string, index: number, expectedContent: string) {
- const downloadsFolder = Cypress.config('downloadsFolder')
- openVersionMenu(index)
- clickPopperAction('Download version')
- return cy.readFile(path.join(downloadsFolder, filename))
- .then((versionContent) => expect(versionContent).to.equal(expectedContent))
- .then(() => cy.exec(`rm ${downloadsFolder}/${filename}`))
- }
|