2022-01-08 19:36:13 +08:00
|
|
|
import { h, nextTick, computed } from 'vue'
|
2021-07-25 15:26:00 +08:00
|
|
|
import { mount } from '@vue/test-utils'
|
|
|
|
import Chinese from '@element-plus/locale/lang/zh-cn'
|
|
|
|
import English from '@element-plus/locale/lang/en'
|
2022-01-08 19:36:13 +08:00
|
|
|
import { useLocale, buildTranslator } from '../use-locale'
|
|
|
|
import { provideGlobalConfig } from '..'
|
2021-07-25 15:26:00 +08:00
|
|
|
|
|
|
|
const TestComp = {
|
|
|
|
setup() {
|
2021-12-04 23:40:06 +08:00
|
|
|
const { t } = useLocale()
|
2021-07-25 15:26:00 +08:00
|
|
|
return () => {
|
2021-09-04 19:29:28 +08:00
|
|
|
return h(
|
|
|
|
'div',
|
|
|
|
{ class: 'locale-manifest' },
|
|
|
|
t('el.popconfirm.confirmButtonText')
|
|
|
|
)
|
2021-07-25 15:26:00 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('use-locale', () => {
|
|
|
|
let wrapper
|
|
|
|
beforeEach(() => {
|
2021-09-04 19:29:28 +08:00
|
|
|
wrapper = mount(
|
|
|
|
{
|
2022-01-08 19:36:13 +08:00
|
|
|
props: {
|
|
|
|
locale: Object,
|
|
|
|
},
|
2021-09-04 19:29:28 +08:00
|
|
|
components: {
|
|
|
|
'el-test': TestComp,
|
|
|
|
},
|
2022-01-08 19:36:13 +08:00
|
|
|
setup(props, { slots }) {
|
|
|
|
provideGlobalConfig(computed(() => ({ locale: props.locale })))
|
2021-09-04 19:29:28 +08:00
|
|
|
return () => slots.default()
|
|
|
|
},
|
2021-07-25 15:26:00 +08:00
|
|
|
},
|
2021-09-04 19:29:28 +08:00
|
|
|
{
|
|
|
|
props: {
|
|
|
|
locale: Chinese,
|
|
|
|
},
|
|
|
|
slots: {
|
|
|
|
default: () => h(TestComp),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
2021-07-25 15:26:00 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
wrapper.unmount()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should provide locale correctly', async () => {
|
|
|
|
await nextTick()
|
|
|
|
expect(wrapper.find('.locale-manifest').text()).toBe(
|
2021-09-04 19:29:28 +08:00
|
|
|
Chinese.el.popconfirm.confirmButtonText
|
2021-07-25 15:26:00 +08:00
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should update the text reactively', async () => {
|
|
|
|
await nextTick()
|
|
|
|
expect(wrapper.find('.locale-manifest').text()).toBe(
|
2021-09-04 19:29:28 +08:00
|
|
|
Chinese.el.popconfirm.confirmButtonText
|
2021-07-25 15:26:00 +08:00
|
|
|
)
|
|
|
|
await wrapper.setProps({
|
|
|
|
locale: English,
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(wrapper.find('.locale-manifest').text()).toBe(
|
2021-09-04 19:29:28 +08:00
|
|
|
English.el.popconfirm.confirmButtonText
|
2021-07-25 15:26:00 +08:00
|
|
|
)
|
|
|
|
})
|
2021-12-04 23:40:06 +08:00
|
|
|
|
|
|
|
test('return key name if not defined', () => {
|
|
|
|
const t = buildTranslator(English)
|
|
|
|
expect(t('el.popconfirm.someThing')).toBe('el.popconfirm.someThing')
|
|
|
|
})
|
2021-07-25 15:26:00 +08:00
|
|
|
})
|