From: Lucas Di Pentima Date: Tue, 1 Sep 2020 13:40:57 +0000 (-0300) Subject: 16680: Adds end-to-end test convering invalid token and auto log-out. X-Git-Tag: 2.1.0~11^2 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/68139213ebfa9eea7b38fa8236362d8acb7f1c5c 16680: Adds end-to-end test convering invalid token and auto log-out. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- diff --git a/cypress/integration/login.spec.js b/cypress/integration/login.spec.js index c30124d8..d88c7a6c 100644 --- a/cypress/integration/login.spec.js +++ b/cypress/integration/login.spec.js @@ -78,6 +78,25 @@ describe('Login tests', function() { `${activeUser.user.first_name} ${activeUser.user.last_name}`); }) + it('logs out when token no longer valid', function() { + // 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'); + // Invalidate own token. + const tokenUuid = activeUser.token.split('/')[1]; + cy.doRequest('PUT', `/arvados/v1/api_client_authorizations/${tokenUuid}`, { + id: tokenUuid, + api_client_authorization: JSON.stringify({ + api_token: `randomToken${Math.floor(Math.random() * Math.floor(999999))}` + }) + }, null, activeUser.token, true); + // Should log the user out. + cy.get('[data-cy=breadcrumb-first]').click(); + cy.get('div#root').should('contain', 'Please log in'); + }) + it('logs in successfully with valid admin token', function() { cy.visit(`/token/?api_token=${adminUser.token}`); cy.url().should('contain', '/projects/');