0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-29 03:04:16 +01:00
posthog/cypress/integration/auth.js

122 lines
5.2 KiB
JavaScript
Raw Normal View History

2021-11-10 00:29:05 +01:00
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()
2021-03-25 15:40:20 +01:00
cy.location('pathname').should('eq', '/login')
})
it('Logout and login', () => {
cy.get('[data-attr=top-menu-item-logout]').click()
2021-03-25 15:40:20 +01:00
cy.get('[data-attr=login-email]').type('fake@posthog.com').should('have.value', 'fake@posthog.com')
2021-03-25 15:40:20 +01:00
cy.get('[data-attr=password]').type('12345678').should('have.value', '12345678')
2021-03-25 15:40:20 +01:00
cy.get('[type=submit]').click()
})
it('Try logging in improperly', () => {
cy.get('[data-attr=top-menu-item-logout]').click()
2021-03-25 15:40:20 +01:00
cy.get('[data-attr=login-email]').type('fake@posthog.com').should('have.value', 'fake@posthog.com')
cy.get('[data-attr=password]').type('wrong password').should('have.value', 'wrong password')
cy.get('[type=submit]').click()
2021-11-25 20:32:46 +01:00
cy.get('.inline-message.danger').should('contain', 'Invalid email or password.')
2021-03-25 15:40:20 +01:00
})
2021-03-25 15:40:20 +01:00
it('Redirect to appropriate place after login', () => {
cy.visit('/logout')
cy.location('pathname').should('include', '/login')
2021-03-25 15:40:20 +01:00
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')
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(
Insight URL cleanup (#7201) * insight route refactor, part 1 * add fromItem to get redirects * fix some tests * adjust many more paths * fix test * move new insight creation into insight logic * fix a noisy test * simplify one test * open the url with the right filters * null fix * fix some more noisy tests * move saved insights to `/insights`, fix logic tests * fix cypress urls * fix some tests * fix even more insight urls * wait a bit longer * add old saved_insights redirect * this might not be there yet * rename newInsight -> insightNew * rename Scene.Insights -> Scene.Insight * also redirect old searches without fromItem * fix link * fix TS merge bugs * fix import * fix imports * fix tests * fix test * Run prettier * fix changes after merge * switch to a simpler scene * fix another test * fix "save as" reset * rerun tests * Insight Short URLs (#7259) * convert a bunch of things to user short_id instead of id * fix more TS errors * fix test * fix jest tests * various fixes * add wise words * type InsightShortId-s to make life easier * reduce a bit of test noise * use the InsightShortId in the URL * fix type * fix test * fix insight url preloading * pass dive dashboards as having insight short ids * fix short url redirect * mock scenelogic api * better types and tests * type fixes * fix bug of linking to ourselves * add back "id" * get rid of some "getInsightId" calls * two more * few more * refactor last usage of getInsightId * move files around and improve errors * make it simpler * small fixes * redirect to new url from old hashParam=42 * fix regression * alert the user if we could not find an insight with the old ID format * switch to a simpler scene * fix another test * Fix annotation creation * Make short ID friendlier * remove comments * simplify insight links from dashboards and saved insights * remove insight router * fix TS * Revert "remove insight router" This reverts commit e52f4749491ec2c2c90aab2d76715ad895460476. Co-authored-by: Michael Matloka <dev@twixes.com> Co-authored-by: Michael Matloka <dev@twixes.com>
2021-11-25 15:39:49 +01:00
'/insights/new?insight=TRENDS&interval=day&display=ActionsLineGraph&actions=%5B%5D&events=%5B%7B"id"%3A"%24pageview"%2C"name"%3A"%24pageview"%2C"type"%3A"events"%2C"order"%3A0%7D%2C%7B"id"%3A"%24autocapture"%2C"name"%3A"%24autocapture"%2C"type"%3A"events"%2C"order"%3A1%7D%5D&properties=%5B%5D&filter_test_accounts=false&new_entity=%5B%5D'
2021-03-25 15:40:20 +01:00
)
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')
cy.get('[data-attr=password]').type('12345678')
cy.get('[type=submit]').click()
cy.location('search').should('include', 'autocapture')
cy.get('[data-attr=trend-element-subject-1]').should('contain', 'Autocapture') // Ensure the URL was properly parsed and components shown correctly
2021-03-25 15:40:20 +01:00
})
2021-03-25 15:40:20 +01:00
it('Cannot access signup page if authenticated', () => {
cy.visit('/signup')
2021-11-10 00:29:05 +01:00
cy.location('pathname').should('eq', urls.savedInsights())
})
})
2021-10-15 09:40:31 +02:00
describe('Password Reset', () => {
beforeEach(() => {
cy.get('[data-attr=top-menu-toggle]').click()
2021-10-15 09:40:31 +02:00
cy.get('[data-attr=top-menu-item-logout]').click()
cy.location('pathname').should('eq', '/login')
})
it('Can request password reset', () => {
cy.get('[data-attr="forgot-password"]').click()
cy.location('pathname').should('eq', '/reset')
cy.get('[data-attr="reset-email"]').type('test@posthog.com')
cy.get('button[type=submit]').click()
cy.get('div').should('contain', 'Request received successfully!')
cy.get('b').should('contain', 'test@posthog.com')
})
it('Cannot reset with invalid token', () => {
cy.visit('/reset/user_id/token')
cy.get('div').should('contain', 'The provided link is invalid or has expired. ')
})
it('Shows validation error if passwords do not match', () => {
cy.visit('/reset/e2e_test_user/e2e_test_token')
cy.get('#password').type('12345678')
cy.get('.ant-progress-bg').should('be.visible')
cy.get('#passwordConfirm').type('1234567A')
cy.get('button[type=submit]').click()
2021-11-25 20:32:46 +01:00
cy.get('.inline-message.danger').should('contain', 'Password confirmation does not match.')
2021-10-15 09:40:31 +02:00
cy.location('pathname').should('eq', '/reset/e2e_test_user/e2e_test_token') // not going anywhere
})
it('Shows validation error if password is too short', () => {
cy.visit('/reset/e2e_test_user/e2e_test_token')
cy.get('#password').type('123')
cy.get('#passwordConfirm').type('123')
cy.get('button[type=submit]').click()
cy.get('.ant-form-item-explain-error').should('be.visible')
cy.get('.ant-form-item-explain-error').should('contain', 'must be at least 8 characters')
cy.location('pathname').should('eq', '/reset/e2e_test_user/e2e_test_token') // not going anywhere
})
it('Can reset password with valid token', () => {
cy.visit('/reset/e2e_test_user/e2e_test_token')
cy.get('#password').type('NEW123456789')
cy.get('#passwordConfirm').type('NEW123456789')
cy.get('button[type=submit]').click()
cy.get('.Toastify__toast--success').should('be.visible')
// assert the user was redirected; can't test actual redirection to /insights because the test handler doesn't actually log in the user
cy.location('pathname').should('not.contain', '/reset/e2e_test_user/e2e_test_token')
2021-10-15 09:40:31 +02:00
})
})