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

General.spec.js « TheCollections « components « unit « javascript « tests - github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b892a4349c4dddf73e9209c003d27c219a85588b (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
import { mount } from '@vue/test-utils'
import General from '../../../../../src/components/TheCollections/General'
import router from '../../../../../src/components/TheRouter'

import { store, localVue } from '../../setupStore'

import VTooltip from 'v-tooltip'
localVue.use(VTooltip)

describe('General.vue', () => {
	'use strict'

	it('Checks that we get the correct number of calendars for the all view', () => {
		const wrapper = mount(General, { localVue, store, router })
		if (wrapper.vm.$route.params.collectionId !== 'all') {
			router.push({ name: 'collections', params: { collectionId: 'all' } })
		}
		expect(wrapper.vm.calendars.length).toBe(2)
	})

	it('Checks that we get the correct number of calendars for the starred view', () => {
		const wrapper = mount(General, { localVue, store, router })
		if (wrapper.vm.$route.params.collectionId !== 'starred') {
			router.push({ name: 'collections', params: { collectionId: 'starred' } })
		}
		expect(wrapper.vm.filteredCalendars.length).toBe(1)
	})

	it('Checks that we get the correct number of calendars for the current view', () => {
		const wrapper = mount(General, { localVue, store, router })
		if (wrapper.vm.$route.params.collectionId !== 'current') {
			router.push({ name: 'collections', params: { collectionId: 'current' } })
		}
		expect(wrapper.vm.filteredCalendars.length).toBe(2)
	})

	it('Checks that we get the correct number of calendars for the today view', () => {
		const wrapper = mount(General, { localVue, store, router })
		if (wrapper.vm.$route.params.collectionId !== 'today') {
			router.push({ name: 'collections', params: { collectionId: 'today' } })
		}
		expect(wrapper.vm.filteredCalendars.length).toBe(0)
	})

	it('Checks that we get the correct number of calendars for the completed view', () => {
		const wrapper = mount(General, { localVue, store, router })
		if (wrapper.vm.$route.params.collectionId !== 'completed') {
			router.push({ name: 'collections', params: { collectionId: 'completed' } })
		}
		expect(wrapper.vm.filteredCalendars.length).toBe(0)
	})
})