Max ce1844e521
feat(webapp): several group and personal invitation links (#8504)
* invite codes refactor

typo

* lint fixes

* remove duplicate initeCodes on User

* fix typo

* clean permissionMiddleware

* dummy permissions

* separate validateInviteCode call

* permissions group & user

* test validateInviteCode + adjustments

* more validateInviteCode fixes

* missing test

* generatePersonalInviteCode

* generateGroupInviteCode

* old tests

* lint fixes

* more lint fixes

* fix validateInviteCode

* fix redeemInviteCode, fix signup

* fix all tests

* fix lint

* uniform types in config

* test & fix invalidateInviteCode

* cleanup test

* fix & test redeemInviteCode

* permissions

* fix Group->inviteCodes

* more cleanup

* improve tests

* fix code generation

* cleanup

* order inviteCodes result on User and Group

* lint

* test max invite codes + fix

* better description of collision

* tests: properly define group ids

* reused old group query

* reuse old Groupmembers query

* remove duplicate skip

* update comment

* fix uniqueInviteCode

* fix test

* fix lint

* Get invite codes

* Show invitation data in registration

* Add invitation list to menu (WIP)

* Add mutations, add CreateInvitation, some fixes

* Improve style, fix long comments

* Lock scrolling when popover is open, but prevent layout change

* small fixes

* instant updates

* Introduce config for link limit; add texts, layout changes

* Validate comment length

* Improve layout

* Add message to copied link

* Add invite link section to group settings

* Handle hidden groups

* Add menu entry for group invite links

* Fix locale

* hotfix invite codes

* Add copy messages

* More styling (WIP)

* Design update

* Don't forget user state

* Localize placeholder

* Add locale

* Instant updates for group invites

* fix registration with invite code

* Fix text overflow

* Fix instant updates

* Overhaul styles, add locales, add heading

* Add test and snapshot for CreateInvitation

* Improve accessability; add invitation test

* Add tests for InvitationList

* Fix locales

* Round plus button

* Fix tests

* Fix tests

* fix locales

* fix linting

* Don't show name of hidden group in invite message

* Add more tests

* Update webapp/locales/de.json

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* Update webapp/locales/de.json

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

---------

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>
2025-05-10 08:25:03 +00:00

116 lines
3.1 KiB
JavaScript

import { render, screen, fireEvent } from '@testing-library/vue'
import '@testing-library/jest-dom'
import Invitation from './Invitation.vue'
const localVue = global.localVue
Object.assign(navigator, {
clipboard: {
writeText: jest.fn(),
},
})
const mutations = {
'modal/SET_OPEN': jest.fn().mockResolvedValue(),
}
describe('Invitation.vue', () => {
let wrapper
const Wrapper = ({ wasRedeemed = false, withCopymessage = false }) => {
const propsData = {
inviteCode: {
code: 'test-invite-code',
comment: 'test-comment',
redeemedByCount: wasRedeemed ? 1 : 0,
},
copyMessage: withCopymessage ? 'test-copy-message' : undefined,
}
return render(Invitation, {
localVue,
propsData,
mocks: {
$t: jest.fn((v) => v),
$toast: {
success: jest.fn(),
error: jest.fn(),
},
},
mutations,
})
}
describe('when the invite code was redeemed', () => {
beforeEach(() => {
wrapper = Wrapper({ wasRedeemed: true })
})
it('renders', () => {
expect(wrapper.container).toMatchSnapshot()
})
it('says how many times the code was redeemed', () => {
const redeemedCount = screen.getByText('invite-codes.redeemed-count')
expect(redeemedCount).toBeInTheDocument()
})
})
describe('when the invite code was not redeemed', () => {
beforeEach(() => {
wrapper = Wrapper({ wasRedeemed: false })
})
it('renders', () => {
expect(wrapper.container).toMatchSnapshot()
})
it('says it was not redeemed', () => {
const redeemedCount = screen.queryByText('invite-codes.redeemed-count-0')
expect(redeemedCount).toBeInTheDocument()
})
})
describe('without copy message', () => {
beforeEach(() => {
wrapper = Wrapper({ withCopymessage: false })
})
it('can copy the link', async () => {
const clipboardMock = jest.spyOn(navigator.clipboard, 'writeText').mockResolvedValue()
const copyButton = screen.getByLabelText('invite-codes.copy-code')
await fireEvent.click(copyButton)
expect(clipboardMock).toHaveBeenCalledWith(
'http://localhost/registration?method=invite-code&inviteCode=test-invite-code',
)
})
})
describe('with copy message', () => {
beforeEach(() => {
wrapper = Wrapper({ withCopymessage: true })
})
it('can copy the link with message', async () => {
const clipboardMock = jest.spyOn(navigator.clipboard, 'writeText').mockResolvedValue()
const copyButton = screen.getByLabelText('invite-codes.copy-code')
await fireEvent.click(copyButton)
expect(clipboardMock).toHaveBeenCalledWith(
'test-copy-message http://localhost/registration?method=invite-code&inviteCode=test-invite-code',
)
})
})
describe.skip('invalidate button', () => {
beforeEach(() => {
wrapper = Wrapper({ wasRedeemed: false })
})
it('opens the delete modal', async () => {
const deleteButton = screen.getByLabelText('invite-codes.invalidate')
await fireEvent.click(deleteButton)
expect(mutations['modal/SET_OPEN']).toHaveBeenCalledTimes(1)
})
})
})