0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/cypress/e2e/invites.cy.ts
Michael Matloka 1c3f620549
refactor(lemon-ui): Build LemonSelect on top of LemonMenu (#15116)
* Revert "Revert `LemonSelect` refactor"

This reverts commit c9b1230d58.

* Rename `Default` story to `Flat`

* Restore `closeParentPopoverOnClickInside`

* Make end-to-end tests work properly

* Fix `OperatorValueSelect`

* Fix `sameWidth`

* Update UI snapshots for `chromium` (2)

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2023-04-24 15:08:51 +02:00

130 lines
6.0 KiB
TypeScript

import { urls } from 'scenes/urls'
import { randomString } from '../support/random'
describe('Invite Signup', () => {
it('Authenticated user can invite user but cannot use invite for someone else', () => {
const user = randomString('user-charlie-')
const email = `${user}@posthog.com`
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=top-menu-item-org-settings]').click()
cy.location('pathname').should('eq', '/organization/settings')
cy.get('[id="invites"]').contains('Pending Invites').should('exist')
// Test invite creation flow
cy.get('[data-attr=invite-teammate-button]').click()
cy.get('[data-attr=invite-email-input]').type(email).should('have.value', email)
cy.get('[data-attr=invite-team-member-submit]').click()
cy.get('[data-attr=invites-table] tbody td').should('contain', email)
// Assert user cannot use invite for someone else
cy.get('[data-attr=invites-table] tbody tr:last-of-type td:nth-last-child(2)').then((element) => {
cy.visit(element.text())
})
cy.get('h2').should('contain', "Oops! This invite link can't be used")
cy.get('.error-message div').should('contain', 'This invite is intended for another email address')
// Delete the invite
cy.visit('/organization/members')
cy.get('[data-attr=invites-table] [data-attr=invite-delete]').first().click()
cy.get('.LemonModal .LemonButton').contains('Yes, cancel invite').click()
cy.get('.Toastify__toast-body').should('contain', `Invite for ${email} has been canceled`)
cy.get('[data-attr=invites-table] tbody td').should('not.contain', email)
})
it('New user can use invite', () => {
const target_email = `newuser+${Math.floor(Math.random() * 10000)
.toString()
// Ensure we have a fixed width
.padStart(4, '0')}@posthog.com`
cy.request({
method: 'POST',
url: '/api/organizations/@current/invites/',
body: { target_email: target_email },
headers: { Authorization: 'Bearer e2e_demo_api_key' },
}).then((response) => {
expect(response.status).to.eq(201)
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=top-menu-item-logout]').click()
cy.visit('/signup/' + response.body.id)
})
cy.get('.error-view-container').should('not.exist')
cy.get('.BridgePage__left').should('contain', "You've been invited to join")
cy.get('input[type="email"]').should('have.value', target_email)
cy.get('[data-attr="password"]').type('12345678')
cy.get('.ant-progress-bg').should('not.have.css', 'width', '0px') // Password strength indicator is working
cy.get('[data-attr="first_name"]').type(randomString('Bob'))
cy.get('[data-attr=signup-role-at-organization]').click()
cy.get('.Popover li:first-child').click()
cy.get('[data-attr=signup-role-at-organization]').contains('Engineering')
cy.get('[data-attr=password-signup]').click()
cy.location('pathname').should('include', urls.projectHomepage())
})
it('can navigate to organization settings and invite/change users', () => {
const user = randomString('user-bob-')
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=top-menu-item-org-settings]').click()
cy.location('pathname').should('include', '/organization/settings')
// Click "Invite team member"
cy.get('[data-attr=invite-teammate-button]').first().click()
// Enter invite the user
cy.get('[data-attr=invite-email-input]').type(`fake+${Math.floor(Math.random() * 10000)}@posthog.com`)
cy.get('[data-attr=invite-team-member-submit]').should('not.be.disabled').click()
// Log in as invited user
cy.get('[data-attr=invite-link]')
.last()
.then((element) => {
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=top-menu-item-logout]').click()
cy.visit(element.text())
})
cy.get('[data-attr="password"]').type('12345678')
cy.get('[data-attr="first_name"]').type(user)
cy.get('[data-attr=signup-role-at-organization]').click()
cy.get('.Popover li:first-child').click()
cy.get('[data-attr=signup-role-at-organization]').contains('Engineering')
cy.get('[data-attr=password-signup]').click()
cy.location('pathname').should('include', urls.projectHomepage())
// Log out, log in as main
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=top-menu-item-logout]').click()
cy.login()
// Go to organization settings
cy.get('[data-attr=top-menu-toggle]').click()
cy.get('[data-attr=top-menu-item-org-settings]').click()
cy.location('pathname').should('include', '/organization/settings')
cy.get('.page-title').should('contain', 'Organization')
// Change membership level
cy.contains('[data-attr=org-members-table] tr', user).within(() => {
cy.get('[data-attr=membership-level]').last().should('contain', 'member')
cy.get('[data-attr=more-button]').last().click()
})
// more menu is not within the row
cy.get('[data-test-level=8]').click()
cy.contains('[data-attr=org-members-table] tr', user).within(() => {
cy.get('[data-attr=membership-level]').last().should('contain', 'admin')
})
// Delete member
cy.contains('[data-attr=org-members-table] tr', user).within(() => {
cy.get('[data-attr=more-button]').last().click()
})
// more menu is not within the row
cy.get('[data-attr=delete-org-membership]').last().click()
cy.get('.LemonModal .LemonButton').last().click()
cy.get('.Toastify__toast-body').should('contain', `Removed ${user} from organization`)
})
})