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

talkHashStore.spec.js « store « src - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28b11b9ada3604ece343995328e435effb1c37ad (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
import mockConsole from 'jest-mock-console'
import { createLocalVue } from '@vue/test-utils'
import talkHashStore from './talkHashStore'
import Vuex from 'vuex'
import { cloneDeep } from 'lodash'
import { showError } from '@nextcloud/dialogs'

jest.mock('@nextcloud/dialogs', () => ({
	showError: jest.fn(),
}))

describe('talkHashStore', () => {
	let localVue
	let store
	let restoreConsole

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

		store = new Vuex.Store(cloneDeep(talkHashStore))
		restoreConsole = mockConsole(['debug'])
	})

	afterEach(() => {
		restoreConsole()
	})

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

	describe('talk hash handling', () => {
		test('sets talk hash from response and updates dirty flag', () => {
			store.dispatch('updateTalkVersionHash', {
				headers: { 'x-nextcloud-talk-hash': 'hash-1' },
			})

			expect(store.getters.isNextcloudTalkHashDirty).toEqual(false)

			store.dispatch('updateTalkVersionHash', {
				headers: { 'x-nextcloud-talk-hash': 'hash-1' },
			})

			expect(store.getters.isNextcloudTalkHashDirty).toEqual(false)

			store.dispatch('updateTalkVersionHash', {
				headers: { 'x-nextcloud-talk-hash': 'hash-changed-1' },
			})

			expect(store.getters.isNextcloudTalkHashDirty).toEqual(true)
		})

		test('does not update hash when no header given', () => {
			// initial one
			store.dispatch('updateTalkVersionHash', {
				headers: { 'x-nextcloud-talk-hash': 'hash-1' },
			})

			expect(store.getters.isNextcloudTalkHashDirty).toEqual(false)

			store.dispatch('updateTalkVersionHash', {
				status: 200,
				// no header
			})

			expect(store.getters.isNextcloudTalkHashDirty).toEqual(false)
		})

		test('does not error if first response had no hash', () => {
			// initial one
			store.dispatch('updateTalkVersionHash', {
				status: 200,
				// no headers
			})

			expect(store.getters.isNextcloudTalkHashDirty).toEqual(false)

			store.dispatch('updateTalkVersionHash', {
				headers: { 'x-nextcloud-talk-hash': 'hash-1' },
			})

			expect(store.getters.isNextcloudTalkHashDirty).toEqual(false)

			store.dispatch('updateTalkVersionHash', {
				headers: { 'x-nextcloud-talk-hash': 'hash-changed-2' },
			})

			expect(store.getters.isNextcloudTalkHashDirty).toEqual(true)
		})
	})

	describe('maintenance mode warning', () => {
		test('displays and clears maintenance mode warning if response contains a 503 status', () => {
			const hideToast = jest.fn()

			showError.mockImplementation(() => ({
				hideToast,
			}))

			expect(store.state.maintenanceWarningToast).toBe(null)

			store.dispatch('checkMaintenanceMode', {
				status: 503,
			})

			expect(store.state.maintenanceWarningToast.hideToast).toBeDefined()
			expect(showError).toHaveBeenCalled()

			store.dispatch('clearMaintenanceMode')
			expect(hideToast).toHaveBeenCalled()

			expect(store.state.maintenanceWarningToast).toBe(null)
		})

		test('does not display toast if status is not 503', () => {
			store.dispatch('checkMaintenanceMode', {
				status: 200,
			})

			expect(store.state.maintenanceWarningToast).toBe(null)
			expect(showError).not.toHaveBeenCalled()
		})

		test('does not display toast if status is not 503', () => {
			store.dispatch('checkMaintenanceMode', {
				status: 200,
			})

			expect(store.state.maintenanceWarningToast).toBe(null)
			expect(showError).not.toHaveBeenCalled()
		})

		test('does nothing when clearing absent warning', () => {
			store.dispatch('clearMaintenanceMode')
		})
	})
})