summaryrefslogtreecommitdiffstats
path: root/cypress/e2e/files_versions/filesVersionsUtils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cypress/e2e/files_versions/filesVersionsUtils.ts')
-rw-r--r--cypress/e2e/files_versions/filesVersionsUtils.ts81
1 files changed, 81 insertions, 0 deletions
diff --git a/cypress/e2e/files_versions/filesVersionsUtils.ts b/cypress/e2e/files_versions/filesVersionsUtils.ts
new file mode 100644
index 00000000000..1aa7ebde316
--- /dev/null
+++ b/cypress/e2e/files_versions/filesVersionsUtils.ts
@@ -0,0 +1,81 @@
+/**
+ * @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"
+
+export function uploadThreeVersions(user) {
+ cy.uploadContent(user, new Blob(['v1'], { type: 'text/plain' }), 'text/plain', '/test.txt')
+ cy.wait(1000)
+ cy.uploadContent(user, new Blob(['v2'], { type: 'text/plain' }), 'text/plain', '/test.txt')
+ cy.wait(1000)
+ cy.uploadContent(user, new Blob(['v3'], { type: 'text/plain' }), 'text/plain', '/test.txt')
+ cy.login(user)
+}
+
+export function openVersionsPanel(fileName: string) {
+ cy.get(`[data-file="${fileName}"]`).within(() => {
+ cy.get('[data-action="menu"]')
+ .click()
+
+ cy.get('.fileActionsMenu')
+ .get('.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(index: number, expectedContent: string) {
+ const downloadsFolder = Cypress.config('downloadsFolder')
+
+ openVersionMenu(index)
+ clickPopperAction("Download version")
+
+ return cy.readFile(path.join(downloadsFolder, 'test.txt'))
+ .then((versionContent) => expect(versionContent).to.equal(expectedContent))
+ .then(() => cy.exec(`rm ${downloadsFolder}/test.txt`))
+} \ No newline at end of file