X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/50286028b596616c33e2e6919f91c7292d5a6a72..90786154d588ebb341fc9e3cc8d4954a3c6f8794:/cypress/integration/login.spec.js?ds=sidebyside diff --git a/cypress/integration/login.spec.js b/cypress/integration/login.spec.js index c30124d8..aeea01cd 100644 --- a/cypress/integration/login.spec.js +++ b/cypress/integration/login.spec.js @@ -28,7 +28,7 @@ describe('Login tests', function() { inactiveUser = this.inactiveUser; } ); - randomUser.username = `randomuser${Math.floor(Math.random() * Math.floor(999999))}`; + randomUser.username = `randomuser${Math.floor(Math.random() * 999999)}`; randomUser.password = { crypt: 'zpAReoZzPnwmQ', clear: 'topsecret', @@ -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() * 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/');