0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/e2e/auth.cy.ts
Paul D'Ambra 1de6d5c6fa
chore: throw runners at e2e CI (#17492)
* chore: throw runners at e2e CI

* add some files so we split even further

* more splitting

* more splitting
2023-09-18 13:00:03 +00:00

90 lines
3.8 KiB
TypeScript

import { urls } from 'scenes/urls'
describe('Auth', () => {
beforeEach(() => {
cy.get('[data-attr=top-menu-toggle]').click()
})
it('Logout', () => {
cy.get('[data-attr=top-menu-item-logout]').click()
cy.location('pathname').should('eq', '/login')
})
it('Logout and login', () => {
cy.get('[data-attr=top-menu-item-logout]').click()
cy.get('[data-attr=login-email]').type('test@posthog.com').should('have.value', 'test@posthog.com').blur()
cy.get('[data-attr=password]', { timeout: 5000 }).should('be.visible') // Wait for login precheck (note blur above)
cy.get('[data-attr=password]').type('12345678').should('have.value', '12345678')
cy.get('[type=submit]').click()
// Login should have succeeded
cy.location('pathname').should('eq', '/home')
})
it('Logout and verify that Google login button has correct link', () => {
cy.get('[data-attr=top-menu-item-logout]').click()
cy.window().then((win) => {
win.POSTHOG_APP_CONTEXT.preflight.available_social_auth_providers = {
'google-oauth2': true,
}
})
cy.get('a[href="/login/google-oauth2/"').should('exist') // As of March 2023, the trailing slash really matters!
})
it('Try logging in improperly and then properly', () => {
cy.get('[data-attr=top-menu-item-logout]').click()
cy.get('[data-attr=login-email]').type('test@posthog.com').should('have.value', 'test@posthog.com').blur()
cy.get('[data-attr=password]', { timeout: 5000 }).should('be.visible') // Wait for login precheck (note blur above)
cy.get('[data-attr=password]').type('wrong password').should('have.value', 'wrong password')
cy.get('[type=submit]').click()
// There should be an error message now
cy.get('.LemonBanner').should('contain', 'Invalid email or password.')
// Now try with the right password
cy.get('[data-attr=password]').clear().type('12345678')
cy.get('[type=submit]').click()
// Login should have succeeded
cy.location('pathname').should('eq', '/home')
})
it('Redirect to appropriate place after login', () => {
cy.visit('/logout')
cy.location('pathname').should('include', '/login')
cy.visit('/events')
cy.location('pathname').should('include', '/login') // Should be redirected to login because we're now logged out
cy.get('[data-attr=login-email]').type('test@posthog.com').blur()
cy.get('[data-attr=password]', { timeout: 5000 }).should('be.visible') // Wait for login precheck (note blur above)
cy.get('[data-attr=password]').type('12345678')
cy.get('[type=submit]').click()
cy.location('pathname').should('include', '/events')
})
it('Redirect to appropriate place after login with complex URL', () => {
cy.visit('/logout')
cy.location('pathname').should('include', '/login')
cy.visit('/insights?search=testString')
cy.location('pathname').should('include', '/login') // Should be redirected to login because we're now logged out
cy.get('[data-attr=login-email]').type('test@posthog.com').blur()
cy.get('[data-attr=password]', { timeout: 5000 }).should('be.visible') // Wait for login precheck (note blur above)
cy.get('[data-attr=password]').type('12345678')
cy.get('[type=submit]').click()
cy.location('search').should('include', 'testString')
cy.get('.saved-insight-empty-state').should('contain', 'testString') // Ensure the URL was properly parsed and components shown correctly
})
it('Cannot access signup page if authenticated', () => {
cy.visit('/signup')
cy.location('pathname').should('eq', urls.projectHomepage())
})
})