19715: Add test for preserving url location on auth invalidation 19715-preserve-url-autologout
authorStephen Smith <stephen@curii.com>
Thu, 19 Jan 2023 19:48:05 +0000 (14:48 -0500)
committerStephen Smith <stephen@curii.com>
Thu, 19 Jan 2023 19:48:05 +0000 (14:48 -0500)
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

cypress/integration/login.spec.js

index aeea01cdcfcb8d99fa5f6bac415ffec69dbc0175..2c539e4902aa36f2c9687adcc380af44d0b35dde 100644 (file)
@@ -79,11 +79,18 @@ describe('Login tests', function() {
     })
 
     it('logs out when token no longer valid', function() {
+        cy.createProject({
+            owningUser: activeUser,
+            projectName: `Test Project ${Math.floor(Math.random() * 999999)}`,
+            addToFavorites: false
+        }).as('testProject1');
         // Log in
         cy.visit(`/token/?api_token=${activeUser.token}`);
         cy.url().should('contain', '/projects/');
         cy.get('div#root').should('contain', 'Arvados Workbench (zzzzz)');
         cy.get('div#root').should('not.contain', 'Your account is inactive');
+        cy.waitForDom();
+
         // Invalidate own token.
         const tokenUuid = activeUser.token.split('/')[1];
         cy.doRequest('PUT', `/arvados/v1/api_client_authorizations/${tokenUuid}`, {
@@ -93,8 +100,13 @@ describe('Login tests', function() {
             })
         }, null, activeUser.token, true);
         // Should log the user out.
-        cy.visit('/');
-        cy.get('div#root').should('contain', 'Please log in');
+
+        cy.getAll('@testProject1').then(([testProject1]) => {
+            cy.get('main').contains(testProject1.name).click();
+            cy.get('div#root').should('contain', 'Please log in');
+            // Should retain last visited url when auth is invalidated
+            cy.url().should('contain', `/projects/${testProject1.uuid}`);
+        })
     })
 
     it('logs in successfully with valid admin token', function() {
@@ -131,4 +143,4 @@ describe('Login tests', function() {
         cy.get('button[title="Account Management"]').click();
         cy.get('ul[role=menu] > li[role=menuitem]').contains(randomUser.username);
     })
-})
\ No newline at end of file
+})