Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MessageButtonsBar.spec.js « MessageButtonsBar « Message « MessagesGroup « MessagesList « components « src - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a4257f3345152bee0629fd7735b232220de4934 (plain)
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
import Vuex from 'vuex'
import { createLocalVue, shallowMount } from '@vue/test-utils'
import { cloneDeep } from 'lodash'
import storeConfig from '../../../../../store/storeConfig'
import { CONVERSATION, PARTICIPANT, ATTENDEE } from '../../../../../constants'
import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
import { findActionButton } from '../../../../../test-helpers'
import MessageButtonsBar from './../MessageButtonsBar/MessageButtonsBar.vue'

describe('MessageButtonsBar.vue', () => {
	const TOKEN = 'XXTOKENXX'
	let localVue
	let testStoreConfig
	let store
	let messageProps
	let conversationProps
	let getActorTypeMock

	beforeEach(() => {
		localVue = createLocalVue()
		localVue.use(Vuex)

		conversationProps = {
			token: TOKEN,
			lastCommonReadMessage: 0,
			type: CONVERSATION.TYPE.GROUP,
			readOnly: CONVERSATION.STATE.READ_WRITE,
		}

		testStoreConfig = cloneDeep(storeConfig)
		testStoreConfig.modules.tokenStore.getters.getToken
			= jest.fn().mockReturnValue(() => TOKEN)
		testStoreConfig.modules.conversationsStore.getters.conversation
			= jest.fn().mockReturnValue((token) => conversationProps)
		testStoreConfig.modules.actorStore.getters.getActorId
			= jest.fn().mockReturnValue(() => 'user-id-1')
		getActorTypeMock = jest.fn().mockReturnValue(() => ATTENDEE.ACTOR_TYPE.USERS)
		testStoreConfig.modules.actorStore.getters.getActorType = getActorTypeMock

		messageProps = {
			message: 'test message',
			actorType: ATTENDEE.ACTOR_TYPE.USERS,
			actorId: 'user-id-1',
			actorDisplayName: 'user-display-name-1',
			messageParameters: {},
			id: 123,
			isTemporary: false,
			isFirstMessage: true,
			isReplyable: true,
			timestamp: new Date('2020-05-07 09:23:00').getTime() / 1000,
			token: TOKEN,
			systemMessage: '',
			messageType: 'comment',
			previousMessageId: 100,
			messageObject: {},
			messageApiData: {
				apiDummyData: 1,
			},
			participant: {
				actorId: 'user-id-1',
				actorType: ATTENDEE.ACTOR_TYPE.USERS,
				participantType: PARTICIPANT.TYPE.USER,
			},
		}
	})

	afterEach(() => {
		jest.clearAllMocks()
	})

	describe('actions', () => {

		beforeEach(() => {
			store = new Vuex.Store(testStoreConfig)
		})

		describe('reply action', () => {
			test('replies to message', async () => {
				const replyAction = jest.fn()
				testStoreConfig.modules.quoteReplyStore.actions.addMessageToBeReplied = replyAction
				store = new Vuex.Store(testStoreConfig)

				const wrapper = shallowMount(MessageButtonsBar, {
					localVue,
					store,
					stubs: {
						ActionButton,
					},
					propsData: messageProps,
				})

				const actionButton = findActionButton(wrapper, 'Reply')
				expect(actionButton.exists()).toBe(true)
				expect(actionButton.isVisible()).toBe(true)
				await actionButton.find('button').trigger('click')

				expect(replyAction).toHaveBeenCalledWith(expect.anything(), {
					id: 123,
					actorId: 'user-id-1',
					actorType: 'users',
					actorDisplayName: 'user-display-name-1',
					message: 'test message',
					messageParameters: {},
					messageType: 'comment',
					systemMessage: '',
					timestamp: new Date('2020-05-07 09:23:00').getTime() / 1000,
					token: TOKEN,
					previousMessageId: 100,
				})
			})

			test('hides reply button when not replyable', async () => {
				messageProps.isReplyable = false
				store = new Vuex.Store(testStoreConfig)

				const wrapper = shallowMount(MessageButtonsBar, {
					localVue,
					store,
					stubs: {
						ActionButton,
					},
					propsData: messageProps,
				})

				const actionButton = findActionButton(wrapper, 'Reply')
				expect(actionButton.isVisible()).toBe(false)
			})
		})

		describe('private reply action', () => {
			test('creates a new conversation when replying to message privately', async () => {
				const routerPushMock = jest.fn().mockResolvedValue()
				const createOneToOneConversation = jest.fn()
				testStoreConfig.modules.conversationsStore.actions.createOneToOneConversation = createOneToOneConversation
				store = new Vuex.Store(testStoreConfig)

				messageProps.actorId = 'another-user'

				const wrapper = shallowMount(MessageButtonsBar, {
					localVue,
					store,
					mocks: {
						$router: {
							push: routerPushMock,
						},
					},
					stubs: {
						ActionButton,
					},
					propsData: messageProps,
				})

				const actionButton = findActionButton(wrapper, 'Reply privately')
				expect(actionButton.exists()).toBe(true)

				createOneToOneConversation.mockResolvedValueOnce({
					token: 'new-token',
				})

				await actionButton.find('button').trigger('click')

				expect(createOneToOneConversation).toHaveBeenCalledWith(expect.anything(), 'another-user')

				expect(routerPushMock).toHaveBeenCalledWith({
					name: 'conversation',
					params: {
						token: 'new-token',
					},
				})
			})

			/**
			 * @param {boolean} visible Whether or not the reply-private action is visible
			 */
			function testPrivateReplyActionVisible(visible) {
				store = new Vuex.Store(testStoreConfig)

				const wrapper = shallowMount(MessageButtonsBar, {
					localVue,
					store,
					stubs: {
						ActionButton,
					},
					propsData: messageProps,
				})

				const actionButton = findActionButton(wrapper, 'Reply privately')
				expect(actionButton.exists()).toBe(visible)
			}

			test('hides private reply action for own messages', async () => {
				// using default message props which have the
				// actor id set to the current user
				testPrivateReplyActionVisible(false)
			})

			test('hides private reply action for one to one conversation type', async () => {
				messageProps.actorId = 'another-user'
				conversationProps.type = CONVERSATION.TYPE.ONE_TO_ONE
				testPrivateReplyActionVisible(false)
			})

			test('hides private reply action for guest messages', async () => {
				messageProps.actorId = 'guest-user'
				messageProps.actorType = ATTENDEE.ACTOR_TYPE.GUESTS
				testPrivateReplyActionVisible(false)
			})

			test('hides private reply action when current user is a guest', async () => {
				messageProps.actorId = 'another-user'
				getActorTypeMock.mockClear().mockReturnValue(() => ATTENDEE.ACTOR_TYPE.GUESTS)
				testPrivateReplyActionVisible(false)
			})
		})

		describe('delete action', () => {
			test('emits delete event', async () => {
				// need to mock the date to be within 6h
				const mockDate = new Date('2020-05-07 10:00:00')
				jest.spyOn(global.Date, 'now')
					.mockImplementation(() => mockDate)
				const wrapper = shallowMount(MessageButtonsBar, {
					localVue,
					store,
					stubs: {
						ActionButton,
					},
					propsData: messageProps,
				})

				const actionButton = findActionButton(wrapper, 'Delete')
				expect(actionButton.exists()).toBe(true)

				await actionButton.find('button').trigger('click')

				expect(wrapper.emitted().delete).toBeTruthy()
			})

			/**
			 * @param {boolean} visible Whether or not the delete action is visible
			 * @param {Date} mockDate The message date (deletion only works within 6h)
			 * @param {number} participantType The participant type of the user
			 */
			function testDeleteMessageVisible(visible, mockDate, participantType = PARTICIPANT.TYPE.USER) {
				store = new Vuex.Store(testStoreConfig)

				// need to mock the date to be within 6h
				if (!mockDate) {
					mockDate = new Date('2020-05-07 10:00:00')
				}

				jest.spyOn(global.Date, 'now')
					.mockImplementation(() => mockDate)

				messageProps.participant.participantType = participantType

				const wrapper = shallowMount(MessageButtonsBar, {
					localVue,
					store,
					stubs: {
						ActionButton,
					},
					propsData: messageProps,
				})

				const actionButton = findActionButton(wrapper, 'Delete')
				expect(actionButton.exists()).toBe(visible)
			}

			test('hides delete action when message is older than 6 hours', () => {
				testDeleteMessageVisible(false, new Date('2020-05-07 15:24:00'))
			})

			test('hides delete action when the conversation is read-only', () => {
				conversationProps.readOnly = CONVERSATION.STATE.READ_ONLY
				testDeleteMessageVisible(false)
			})

			test('hides delete action for file messages', () => {
				messageProps.message = '{file}'
				messageProps.messageParameters.file = {}
				testDeleteMessageVisible(false)
			})

			test('hides delete action on other people messages for non-moderators', () => {
				messageProps.actorId = 'another-user'
				conversationProps.type = CONVERSATION.TYPE.GROUP
				testDeleteMessageVisible(false)
			})

			test('shows delete action on other people messages for moderators', () => {
				messageProps.actorId = 'another-user'
				conversationProps.type = CONVERSATION.TYPE.GROUP
				testDeleteMessageVisible(true, null, PARTICIPANT.TYPE.MODERATOR)
			})

			test('shows delete action on other people messages for owner', () => {
				messageProps.actorId = 'another-user'
				conversationProps.type = CONVERSATION.TYPE.PUBLIC
				testDeleteMessageVisible(true, null, PARTICIPANT.TYPE.OWNER)
			})

			test('does not show delete action even for guest moderators', () => {
				messageProps.actorId = 'another-user'
				conversationProps.type = CONVERSATION.TYPE.PUBLIC
				testDeleteMessageVisible(false, null, PARTICIPANT.TYPE.GUEST_MODERATOR)
			})

			test('does not show delete action on other people messages in one to one conversations', () => {
				messageProps.actorId = 'another-user'
				conversationProps.type = CONVERSATION.TYPE.ONE_TO_ONE
				testDeleteMessageVisible(false)
			})
		})

		test('marks message as unread', async () => {
			const updateLastReadMessageAction = jest.fn().mockResolvedValueOnce()
			const fetchConversationAction = jest.fn().mockResolvedValueOnce()
			testStoreConfig.modules.conversationsStore.actions.updateLastReadMessage = updateLastReadMessageAction
			testStoreConfig.modules.conversationsStore.actions.fetchConversation = fetchConversationAction
			store = new Vuex.Store(testStoreConfig)

			messageProps.previousMessageId = 100

			// appears even with more restrictive conditions
			conversationProps.readOnly = CONVERSATION.STATE.READ_ONLY
			messageProps.actorId = 'another-user'
			messageProps.participant = {
				actorId: 'guest-id-1',
				actorType: ATTENDEE.ACTOR_TYPE.GUESTS,
				participantType: PARTICIPANT.TYPE.GUEST,
			}

			const wrapper = shallowMount(MessageButtonsBar, {
				localVue,
				store,
				stubs: {
					ActionButton,
				},

				propsData: messageProps,
			})

			const actionButton = findActionButton(wrapper, 'Mark as unread')
			expect(actionButton.exists()).toBe(true)

			await actionButton.find('button').trigger('click')
			// needs two updates...
			await wrapper.vm.$nextTick()
			await wrapper.vm.$nextTick()

			expect(updateLastReadMessageAction).toHaveBeenCalledWith(expect.anything(), {
				token: TOKEN,
				id: 100,
				updateVisually: true,
			})

			expect(fetchConversationAction).toHaveBeenCalledWith(expect.anything(), {
				token: TOKEN,
			})
		})

		test('copies message link', async () => {
			const copyTextMock = jest.fn()

			// appears even with more restrictive conditions
			conversationProps.readOnly = CONVERSATION.STATE.READ_ONLY
			messageProps.actorId = 'another-user'
			messageProps.participant = {
				actorId: 'guest-id-1',
				actorType: ATTENDEE.ACTOR_TYPE.GUESTS,
				participantType: PARTICIPANT.TYPE.GUEST,
			}

			const wrapper = shallowMount(MessageButtonsBar, {
				localVue,
				store,
				mocks: {
					$copyText: copyTextMock,
				},
				stubs: {
					ActionButton,
				},

				propsData: messageProps,
			})

			const actionButton = findActionButton(wrapper, 'Copy message link')
			expect(actionButton.exists()).toBe(true)

			await actionButton.find('button').trigger('click')

			expect(copyTextMock).toHaveBeenCalledWith('http://localhost/nc-webroot/call/XXTOKENXX#message_123')
		})

		test('renders clickable custom actions', async () => {
			const handler = jest.fn()
			const handler2 = jest.fn()
			const actionsGetterMock = jest.fn().mockReturnValue([{
				label: 'first action',
				icon: 'some-icon',
				callback: handler,
			}, {
				label: 'second action',
				icon: 'some-icon2',
				callback: handler2,
			}])
			testStoreConfig.modules.messageActionsStore.getters.messageActions = actionsGetterMock
			testStoreConfig.modules.messagesStore.getters.message = jest.fn(() => () => messageProps)
			store = new Vuex.Store(testStoreConfig)
			const wrapper = shallowMount(MessageButtonsBar, {
				localVue,
				store,
				stubs: {
					ActionButton,
				},
				propsData: messageProps,
			})

			const actionButton = findActionButton(wrapper, 'first action')
			expect(actionButton.exists()).toBe(true)
			await actionButton.find('button').trigger('click')

			expect(handler).toHaveBeenCalledWith({
				apiDummyData: 1,
			},)

			const actionButton2 = findActionButton(wrapper, 'second action')
			expect(actionButton2.exists()).toBe(true)
			await actionButton2.find('button').trigger('click')

			expect(handler2).toHaveBeenCalledWith({
				apiDummyData: 1,
			})
		})
	})
})