[ARVADOS-WORKBENCH2] updated: 2.1.0-311-g75022cae
Git user
git at public.arvados.org
Mon Apr 19 22:06:58 UTC 2021
Summary of changes:
cypress/integration/favorites.spec.js | 31 +++++++++++--------------------
cypress/support/commands.js | 8 ++++----
2 files changed, 15 insertions(+), 24 deletions(-)
via 75022caec274dcdb1d7983b66c783e96584b5a10 (commit)
from 409d38425d383c81606220782f1abe9cd014aab5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 75022caec274dcdb1d7983b66c783e96584b5a10
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date: Mon Apr 19 19:06:16 2021 -0300
17500: Rearranges test in order to reduce its flakyness.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>
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,
});
})
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list