17415: Created mountainduck bookmark files generator
[arvados-workbench2.git] / cypress / integration / collection.spec.js
index 841197abcfdc5a0b130ce9759e7760bc93d48584..f5f44b851350d6cf63ecbdda641d5fd8e828b9a5 100644 (file)
@@ -2,9 +2,12 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
+const path = require('path');
+
 describe('Collection panel tests', function () {
     let activeUser;
     let adminUser;
+    let downloadsFolder;
 
     before(function () {
         // Only set up common users once. These aren't set up as aliases because
@@ -21,6 +24,7 @@ describe('Collection panel tests', function () {
                 activeUser = this.activeUser;
             }
             );
+        downloadsFolder = Cypress.config('downloadsFolder');
     });
 
     beforeEach(function () {
@@ -28,6 +32,28 @@ describe('Collection panel tests', function () {
         cy.clearLocalStorage();
     });
 
+    it.only('allows to download mountain duck config for a collection', () => {
+        cy.createCollection(adminUser.token, {
+            name: `Test collection ${Math.floor(Math.random() * 999999)}`,
+            owner_uuid: activeUser.user.uuid,
+            manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
+        })
+        .as('testCollection').then(function (testCollection) {
+            cy.loginAs(activeUser);
+            cy.doSearch(`${testCollection.uuid}`);
+
+            cy.get('[data-cy=collection-panel-options-btn]').click();
+            cy.get('[data-cy=context-menu]').contains('Open as network folder or S3 bucket').click();
+            cy.get('[data-cy=download-button').click();
+
+            const filename = path.join(downloadsFolder, `${testCollection.name}.duck`)
+
+            cy.readFile(filename, { timeout: 15000 })
+                .should('have.length.gt', 50)
+                .then(() => cy.task('clearDownload', { filename }));
+        });
+    });
+
     it('uses the property editor with vocabulary terms', function () {
         cy.createCollection(adminUser.token, {
             name: `Test collection ${Math.floor(Math.random() * 999999)}`,