X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/50286028b596616c33e2e6919f91c7292d5a6a72..7776b799eed223b9318443c1e319e01957a8fb45:/cypress/integration/login.spec.js diff --git a/cypress/integration/login.spec.js b/cypress/integration/login.spec.js index c30124d8..25c8cd4b 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.visit('/'); + 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/');