-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathJoinCommunity.test.tsx
More file actions
382 lines (318 loc) · 12.9 KB
/
JoinCommunity.test.tsx
File metadata and controls
382 lines (318 loc) · 12.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
import React from 'react'
import '@testing-library/jest-dom/extend-expect'
import { screen, waitFor } from '@testing-library/dom'
import { act } from 'react-dom/test-utils'
import userEvent from '@testing-library/user-event'
import { renderComponent } from '../../../testUtils/renderComponent'
import { prepareStore } from '../../../testUtils/prepareStore'
import { StoreKeys } from '../../../store/store.keys'
import { SocketState } from '../../../sagas/socket/socket.slice'
import { ModalName } from '../../../sagas/modals/modals.types'
import { ModalsInitialState } from '../../../sagas/modals/modals.slice'
import JoinCommunity from './JoinCommunity'
import CreateCommunity from '../CreateCommunity/CreateCommunity'
import { JoinCommunityDictionary, CreateCommunityDictionary } from '../community.dictionary'
import CreateUsername from '../../CreateUsername/CreateUsername'
import PerformCommunityActionComponent from '../PerformCommunityActionComponent'
import { inviteLinkField } from '../../../forms/fields/communityFields'
import { InviteLinkErrors } from '../../../forms/fieldsErrors'
import { CommunityOwnership } from '@quiet/types'
import {
Site,
QUIET_JOIN_PAGE,
getValidInvitationUrlTestData,
PSK_PARAM_KEY,
validInvitationDatav1,
} from '@quiet/common'
import { createLogger } from '../../../logger'
const logger = createLogger('JoinCommunity.test')
describe('join community', () => {
const { code, data } = getValidInvitationUrlTestData(validInvitationDatav1[0])
const validCode = code()
it('users switches from join to create', async () => {
const { store } = await prepareStore({
[StoreKeys.Socket]: {
...new SocketState(),
isConnected: true,
},
[StoreKeys.Modals]: {
...new ModalsInitialState(),
[ModalName.joinCommunityModal]: { open: true },
},
})
renderComponent(
<>
<JoinCommunity />
<CreateCommunity />
</>,
store
)
// Confirm proper modal title is displayed
const joinCommunityDictionary = JoinCommunityDictionary()
const joinCommunityTitle = screen.getByText(joinCommunityDictionary.header)
expect(joinCommunityTitle).toBeVisible()
// Click redirecting link
const link = screen.getByTestId('JoinCommunityLink')
await userEvent.click(link)
// Confirm user is being redirected to create community
const createCommunityDictionary = CreateCommunityDictionary()
const createCommunityTitle = await screen.findByText(createCommunityDictionary.header)
expect(createCommunityTitle).toBeVisible()
})
it('user goes from joning community to username registration, then comes back', async () => {
const { store } = await prepareStore({
[StoreKeys.Socket]: {
...new SocketState(),
isConnected: true,
},
[StoreKeys.Modals]: {
...new ModalsInitialState(),
[ModalName.joinCommunityModal]: { open: true },
},
})
renderComponent(
<>
<JoinCommunity />
<CreateUsername />
</>,
store
)
// Confirm proper modal title is displayed
const dictionary = JoinCommunityDictionary()
const joinCommunityTitle = screen.getByText(dictionary.header)
expect(joinCommunityTitle).toBeVisible()
// Enter community address and hit button
const joinCommunityInput = screen.getByPlaceholderText(dictionary.placeholder)
const joinCommunityButton = screen.getByText(dictionary.button)
await userEvent.type(joinCommunityInput, validCode)
await userEvent.click(joinCommunityButton)
// Confirm user is being redirected to username registration
const createUsernameTitle = await screen.findByText('Register a username')
expect(createUsernameTitle).toBeVisible()
// Close username registration modal by clicking explicit close button
const closeButton = await screen.findByTestId('createUsernameModalClose')
await userEvent.click(closeButton)
// Re-query after closing modal as the DOM node is re-created
const joinCommunityTitleAgain = await screen.findByText(dictionary.header)
expect(joinCommunityTitleAgain).toBeVisible()
})
it('joins community on submit if connection is ready and registrar url is correct', async () => {
const { store } = await prepareStore()
const handleCommunityAction = jest.fn()
const component = (
<PerformCommunityActionComponent
open={true}
handleClose={() => {}}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={handleCommunityAction}
handleRedirection={() => {}}
isConnectionReady={true}
isCloseDisabled={true}
hasReceivedResponse={false}
/>
)
const result = renderComponent(component, store)
const textInput = result.queryByPlaceholderText(inviteLinkField().fieldProps.placeholder)
expect(textInput).not.toBeNull()
await userEvent.type(textInput!, validCode)
const submitButton = result.getByText('Continue')
expect(submitButton).toBeEnabled()
await userEvent.click(submitButton)
await waitFor(() => expect(handleCommunityAction).toBeCalledWith(data))
})
it.each([[`${QUIET_JOIN_PAGE}#${validCode}`], [`${QUIET_JOIN_PAGE}/#${validCode}`]])(
'joins community on submit if connection is ready and invitation code is a correct invitation url (%s)',
async (invitationLink: string) => {
const { store } = await prepareStore()
const registrarUrl = new URL(invitationLink)
const handleCommunityAction = jest.fn()
const component = (
<PerformCommunityActionComponent
open={true}
handleClose={() => {}}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={handleCommunityAction}
handleRedirection={() => {}}
isConnectionReady={true}
isCloseDisabled={true}
hasReceivedResponse={false}
/>
)
const result = renderComponent(component, store)
const textInput = result.queryByPlaceholderText(inviteLinkField().fieldProps.placeholder)
expect(textInput).not.toBeNull()
// @ts-expect-error
await userEvent.type(textInput, registrarUrl.href)
const submitButton = result.getByText('Continue')
expect(submitButton).toBeEnabled()
await userEvent.click(submitButton)
await waitFor(() => expect(handleCommunityAction).toBeCalledWith(data))
}
)
it('trims whitespaces from registrar url', async () => {
const { store } = await prepareStore()
const registrarUrl = validCode + ' '
const handleCommunityAction = jest.fn()
const component = (
<PerformCommunityActionComponent
open={true}
handleClose={() => {}}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={handleCommunityAction}
handleRedirection={() => {}}
isConnectionReady={true}
isCloseDisabled={true}
hasReceivedResponse={false}
/>
)
const result = renderComponent(component, store)
const textInput = result.queryByPlaceholderText(inviteLinkField().fieldProps.placeholder)
expect(textInput).not.toBeNull()
// @ts-expect-error
await userEvent.type(textInput, registrarUrl)
const submitButton = result.getByText('Continue')
expect(submitButton).toBeEnabled()
await userEvent.click(submitButton)
await waitFor(() => expect(handleCommunityAction).toBeCalledWith(data))
})
it.each([
[`http://${validCode}`, InviteLinkErrors.InvalidCode],
[
`12D3KooWKCWstmqi5gaQvipT7xVneVGfWV7HYpCbmUu626R92hXx=bbb&${PSK_PARAM_KEY}=${data.psk}`,
InviteLinkErrors.InvalidCode,
],
['bbb=y7yczmugl2tekami7sbdz5pfaemvx7bahwthrdvcbzw5vex2crsr26qd', InviteLinkErrors.InvalidCode],
['12D3KooWKCWstmqi5gaQvipT7xVneVGfWV7HYpCbmUu626R92hXx= ', InviteLinkErrors.InvalidCode],
['nqnw4kc4c77fb47lk52m5l57h4tc', InviteLinkErrors.InvalidCode],
[`https://otherwebsite.com/${Site.JOIN_PAGE}#${validCode}`, InviteLinkErrors.InvalidCode],
[`${QUIET_JOIN_PAGE}?param=nqnw4kc4c77fb47lk52m5l57h4tcxceo7ymxekfn7yh5m66t4jv2olad`, InviteLinkErrors.InvalidCode],
[`${Site.MAIN_PAGE}/share?${validCode}`, InviteLinkErrors.InvalidCode],
])('user inserting invalid url %s should see "%s" error', async (url: string, error: string) => {
const { store } = await prepareStore()
const handleCommunityAction = jest.fn()
renderComponent(
<PerformCommunityActionComponent
open={true}
handleClose={() => {}}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={handleCommunityAction}
handleRedirection={() => {}}
isConnectionReady={true}
isCloseDisabled={true}
hasReceivedResponse={false}
/>,
store
)
const input = screen.getByPlaceholderText('Invite link')
const button = screen.getByText('Continue')
await userEvent.type(input, url)
await userEvent.click(button)
await waitFor(() => expect(handleCommunityAction).not.toBeCalled())
const message = await screen.findByText(error)
expect(message).toBeVisible()
})
it('does not close on Escape when close is disabled', async () => {
const { store } = await prepareStore()
const handleClose = jest.fn()
renderComponent(
<PerformCommunityActionComponent
open={true}
handleClose={handleClose}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={() => {}}
handleRedirection={() => {}}
isConnectionReady={true}
isCloseDisabled={true}
hasReceivedResponse={false}
/>,
store
)
const input = screen.getByPlaceholderText(inviteLinkField().fieldProps.placeholder)
input.focus()
await userEvent.keyboard('{Escape}')
expect(handleClose).not.toHaveBeenCalled()
})
it('blocks submit button if connection is not ready', async () => {
const { store } = await prepareStore()
const handleCommunityAction = jest.fn()
const component = (
<PerformCommunityActionComponent
open={true}
handleClose={() => {}}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={handleCommunityAction}
handleRedirection={() => {}}
isConnectionReady={false}
isCloseDisabled={true}
hasReceivedResponse={false}
/>
)
const result = renderComponent(component, store)
const textInput = result.queryByPlaceholderText(inviteLinkField().fieldProps.placeholder)
expect(textInput).not.toBeNull()
// @ts-expect-error
await userEvent.type(textInput, validCode)
const submitButton = result.getByTestId('continue-joinCommunity')
expect(submitButton).not.toBeNull()
expect(submitButton).toBeDisabled()
expect(handleCommunityAction).not.toBeCalled()
})
// no longer relevant since we switched to non-blocking joinCommunity action
it.skip('shows loading spinner on submit button while waiting for the response', async () => {
const { rerender } = renderComponent(
<PerformCommunityActionComponent
open={true}
handleClose={() => {}}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={() => {}}
handleRedirection={() => {}}
isConnectionReady={true}
isCloseDisabled={true}
hasReceivedResponse={false}
/>
)
const textInput = screen.getByPlaceholderText(inviteLinkField().fieldProps.placeholder)
await userEvent.type(textInput, validCode)
const submitButton = screen.getByText('Continue')
expect(submitButton).toBeEnabled()
await userEvent.click(submitButton)
await act(async () => {})
expect(screen.queryByTestId('loading-button-progress')).toBeVisible()
// Rerender component to verify circular progress has dissapeared
rerender(
<PerformCommunityActionComponent
open={true}
handleClose={() => {}}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={() => {}}
handleRedirection={() => {}}
isConnectionReady={true}
isCloseDisabled={true}
hasReceivedResponse={true}
/>
)
expect(screen.queryByTestId('loading-button-progress')).toBeNull()
})
it('handles redirection to create community page if user clicks on the link', async () => {
const { store } = await prepareStore()
const handleRedirection = jest.fn()
const component = (
<PerformCommunityActionComponent
open={true}
handleClose={() => {}}
communityOwnership={CommunityOwnership.User}
handleCommunityAction={() => {}}
handleRedirection={handleRedirection}
isConnectionReady={true}
isCloseDisabled={true}
hasReceivedResponse={false}
/>
)
const result = renderComponent(component, store)
const switchLink = result.queryByText('create a new community')
expect(switchLink).not.toBeNull()
// @ts-expect-error
await userEvent.click(switchLink)
expect(handleRedirection).toBeCalled()
})
})