From 99533226e10ea897f297baae9e4c27dbcc748c35 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Mon, 19 Apr 2021 19:06:16 -0300 Subject: [PATCH] 17500: Rearranges test in order to reduce its flakyness. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- cypress/integration/favorites.spec.js | 31 ++++++++++----------------- cypress/support/commands.js | 8 +++---- 2 files changed, 15 insertions(+), 24 deletions(-) diff --git a/cypress/integration/favorites.spec.js b/cypress/integration/favorites.spec.js index b0feb30b..9d51cc7f 100644 --- a/cypress/integration/favorites.spec.js +++ b/cypress/integration/favorites.spec.js @@ -14,14 +14,12 @@ describe('Favorites tests', function () { cy.getUser('admin', 'Admin', 'User', true, true) .as('adminUser').then(function () { adminUser = this.adminUser; - } - ); + }); cy.getUser('collectionuser1', 'Collection', 'User', false, true) .as('activeUser').then(function () { activeUser = this.activeUser; - } - ); - }) + }); + }); beforeEach(function () { cy.clearCookies() @@ -52,27 +50,20 @@ describe('Favorites tests', function () { cy.createCollection(adminUser.token, { name: `Test source collection ${Math.floor(Math.random() * 999999)}`, manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n" - }) - .as('testSourceCollection').then(function (testSourceCollection) { - cy.shareWith(adminUser.token, activeUser.user.uuid, testSourceCollection.uuid, 'can_read'); - }); + }).as('testSourceCollection').then(function (testSourceCollection) { + cy.shareWith(adminUser.token, activeUser.user.uuid, testSourceCollection.uuid, 'can_read'); + }); cy.createCollection(adminUser.token, { name: `Test target collection ${Math.floor(Math.random() * 999999)}`, - }) - .as('testTargetCollection').then(function (testTargetCollection) { - cy.shareWith(adminUser.token, activeUser.user.uuid, testTargetCollection.uuid, 'can_write'); - }); + }).as('testTargetCollection').then(function (testTargetCollection) { + cy.shareWith(adminUser.token, activeUser.user.uuid, testTargetCollection.uuid, 'can_write'); + cy.addToFavorites(activeUser.token, activeUser.user.uuid, testTargetCollection.uuid); + }); cy.getAll('@testSourceCollection', '@testTargetCollection') .then(function ([testSourceCollection, testTargetCollection]) { - cy.loginAs(activeUser); - - cy.get('.layout-pane-primary') - .contains('Projects').click(); - - cy.addToFavorites(activeUser.token, activeUser.user.uuid, testTargetCollection.uuid); - + cy.get('.layout-pane-primary').contains('Projects').click(); cy.get('main').contains(testSourceCollection.name).click(); cy.get('[data-cy=collection-files-panel]').contains('bar'); cy.get('[data-cy=collection-files-panel]').find('input[type=checkbox]').click({ force: true }); diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 53099d37..929ffb83 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -213,13 +213,13 @@ Cypress.Commands.add('shareWith', (srcUserToken, targetUserUUID, itemUUID, permi }); }) -Cypress.Commands.add('addToFavorites', (activeUserToken, activeUserUUID, itemUUID) => { - cy.createLink(activeUserToken, { +Cypress.Commands.add('addToFavorites', (userToken, userUUID, itemUUID) => { + cy.createLink(userToken, { head_uuid: itemUUID, link_class: 'star', name: '', - owner_uuid: activeUserUUID, - tail_uuid: activeUserUUID, + owner_uuid: userUUID, + tail_uuid: userUUID, }); }) -- 2.30.2