aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/tests/views/ContactsMenu.spec.js
blob: 084c3215e478cffa6f98a63311d611c6145e4c79 (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
/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

import { mount, shallowMount } from '@vue/test-utils'
import { describe, expect, it, vi } from 'vitest'

import ContactsMenu from '../../views/ContactsMenu.vue'

const axios = vi.hoisted(() => ({
	post: vi.fn(),
}))
vi.mock('@nextcloud/axios', () => ({ default: axios }))

vi.mock('@nextcloud/auth', () => ({
	getCurrentUser: () => ({ uid: 'user', isAdmin: false, displayName: 'User' }),
}))

describe('ContactsMenu', function() {
	it('is closed by default', () => {
		const view = shallowMount(ContactsMenu)

		expect(view.vm.contacts).toEqual([])
		expect(view.vm.loadingText).toBe(undefined)
	})

	it('shows a loading text', async () => {
		const view = shallowMount(ContactsMenu)
		axios.post.mockResolvedValue({
			data: {
				contacts: [],
				contactsAppEnabled: false,
			},
		})

		const opening = view.vm.handleOpen()

		expect(view.vm.contacts).toEqual([])
		expect(view.vm.loadingText).toBe('Loading your contacts …')
		await opening
	})

	it('shows error view when contacts can not be loaded', async () => {
		const view = mount(ContactsMenu)
		axios.post.mockResolvedValue({})
		vi.spyOn(console, 'error').mockImplementation(() => {})

		try {
			await view.vm.handleOpen()

			throw new Error('should not be reached')
		} catch (error) {
			expect(console.error).toHaveBeenCalled()
			console.error.mockRestore()
			expect(view.vm.error).toBe(true)
			expect(view.vm.contacts).toEqual([])
			expect(view.text()).toContain('Could not load your contacts')
		}
	})

	it('shows text when there are no contacts', async () => {
		const view = mount(ContactsMenu)
		axios.post.mockResolvedValueOnce({
			data: {
				contacts: [],
				contactsAppEnabled: false,
			},
		})

		await view.vm.handleOpen()

		expect(view.vm.error).toBe(false)
		expect(view.vm.contacts).toEqual([])
		expect(view.vm.loadingText).toBe(undefined)
		expect(view.text()).toContain('No contacts found')
	})

	it('shows contacts', async () => {
		const view = mount(ContactsMenu)
		axios.post.mockResolvedValue({
			data: {
				contacts: [
					{
						id: null,
						fullName: 'Acosta Lancaster',
						topAction: {
							title: 'Mail',
							icon: 'icon-mail',
							hyperlink: 'mailto:deboraoliver%40centrexin.com',
						},
						actions: [
							{
								title: 'Mail',
								icon: 'icon-mail',
								hyperlink: 'mailto:mathisholland%40virxo.com',
							},
							{
								title: 'Details',
								icon: 'icon-info',
								hyperlink: 'https://localhost/index.php/apps/contacts',
							},
						],
						lastMessage: '',
						emailAddresses: [],
					},
					{
						id: null,
						fullName: 'Adeline Snider',
						topAction: {
							title: 'Mail',
							icon: 'icon-mail',
							hyperlink: 'mailto:ceciliasoto%40essensia.com',
						},
						actions: [
							{
								title: 'Mail',
								icon: 'icon-mail',
								hyperlink: 'mailto:pearliesellers%40inventure.com',
							},
							{
								title: 'Details',
								icon: 'icon-info',
								hyperlink: 'https://localhost/index.php/apps/contacts',
							},
						],
						lastMessage: 'cu',
						emailAddresses: [],
					},
				],
				contactsAppEnabled: true,
			},
		})

		await view.vm.handleOpen()

		expect(view.vm.error).toBe(false)
		expect(view.vm.contacts.length).toBe(2)
		expect(view.text()).toContain('Acosta Lancaster')
		expect(view.text()).toContain('Adeline Snider')
		expect(view.text()).toContain('Show all contacts')
	})
})