X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/37f3a8d7a7ce05a15fbb9219763b46ba1c250976..1844e8f036938eb849f935c6d9b1c2d7180ad3a3:/cypress/integration/collection.spec.js diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js index f5f44b8513..3767e6bff2 100644 --- a/cypress/integration/collection.spec.js +++ b/cypress/integration/collection.spec.js @@ -32,7 +32,7 @@ describe('Collection panel tests', function () { cy.clearLocalStorage(); }); - it.only('allows to download mountain duck config for a collection', () => { + it('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, @@ -46,10 +46,28 @@ describe('Collection panel tests', function () { 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`) + const filename = path.join(downloadsFolder, `${testCollection.name}.duck`); cy.readFile(filename, { timeout: 15000 }) - .should('have.length.gt', 50) + .then((body) => { + const childrenCollection = Array.prototype.slice.call(Cypress.$(body).find('dict')[0].children); + const map = {}; + let i, j = 2; + + for (i=0; i < childrenCollection.length; i += j) { + map[childrenCollection[i].outerText] = childrenCollection[i + 1].outerText; + } + + cy.get('#simple-tabpanel-0').find('a') + .then((a) => { + const [host, port] = a.text().split('@')[1].split('/')[0].split(':'); + expect(map['Protocol']).to.equal('davs'); + expect(map['UUID']).to.equal(testCollection.uuid); + expect(map['Username']).to.equal(activeUser.user.username); + expect(map['Port']).to.equal(port); + expect(map['Hostname']).to.equal(host); + }); + }) .then(() => cy.task('clearDownload', { filename })); }); });