forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocaleSelector.spec.js
97 lines (84 loc) · 2.7 KB
/
LocaleSelector.spec.js
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
/**
* This source file is part of the Swift.org open source project
*
* Copyright (c) 2023 Apple Inc. and the Swift project authors
* Licensed under Apache License v2.0 with Runtime Library Exception
*
* See https://swift.org/LICENSE.txt for license information
* See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import { shallowMount } from '@vue/test-utils';
import LocaleSelector from 'docc-render/components/LocaleSelector.vue';
import { updateLocale, getLocaleParam } from 'docc-render/utils/i18n-utils';
import AppStore from 'docc-render/stores/AppStore';
jest.mock('theme/lang/locales.json', () => (
[
{
code: 'en-US',
name: 'English',
slug: 'en',
},
{
code: 'zh-CN',
name: '简体中文',
slug: 'cn',
},
{
code: 'ja-JP',
name: '日本語',
slug: 'ja',
},
]
));
jest.mock('docc-render/utils/i18n-utils', () => ({
updateLocale: jest.fn(),
getLocaleParam: jest.fn(),
}));
jest.mock('docc-render/stores/AppStore', () => ({
setPreferredLocale: jest.fn(),
state: { availableLocales: ['en-US', 'zh-CN'] },
}));
const { ChevronThickIcon } = LocaleSelector.components;
const availableLocales = ['en-US', 'zh-CN', 'ja-JP'];
describe('LocaleSelector', () => {
let wrapper;
beforeEach(() => {
wrapper = shallowMount(LocaleSelector, {
mocks: {
$router: {
push: jest.fn(),
},
},
propsData: {
availableLocales,
},
});
});
it('renders the locale selector', () => {
expect(wrapper.is('div.locale-selector')).toBe(true);
expect(wrapper.find('select').exists()).toBe(true);
});
it('updates router when option is selected', () => {
const cnOption = wrapper.findAll('option').at(1);
const slug = cnOption.attributes('value');
cnOption.trigger('change');
expect(updateLocale).toHaveBeenCalledTimes(1);
expect(getLocaleParam).toHaveBeenCalledTimes(1);
expect(getLocaleParam).toHaveBeenCalledWith(slug);
expect(AppStore.setPreferredLocale).toHaveBeenCalledTimes(1);
expect(AppStore.setPreferredLocale).toHaveBeenCalledWith(slug);
});
it('renders the icon', () => {
expect(wrapper.find(ChevronThickIcon).exists()).toBe(true);
});
it('only renders available locales for options', () => {
const options = wrapper.findAll('option');
expect(options).toHaveLength(2);
expect(options.at(0).text()).toBe('English');
expect(options.at(0).attributes('value')).toBe('en');
expect(options.at(0).attributes('lang')).toBe('en-US');
expect(options.at(1).text()).toBe('简体中文');
expect(options.at(1).attributes('value')).toBe('cn');
expect(options.at(1).attributes('lang')).toBe('zh-CN');
});
});