2018-01-13 17:53:25 +08:00
|
|
|
/* eslint-disable react/no-multi-comp */
|
2017-01-23 21:08:16 +08:00
|
|
|
import React from 'react';
|
|
|
|
import { mount } from 'enzyme';
|
|
|
|
import moment from 'moment';
|
2017-09-26 23:12:47 +08:00
|
|
|
import MockDate from 'mockdate';
|
2017-01-23 21:08:16 +08:00
|
|
|
import { LocaleProvider, Pagination, DatePicker, TimePicker, Calendar,
|
2018-06-22 21:05:13 +08:00
|
|
|
Popconfirm, Table, Modal, Select, Transfer } from '../..';
|
2017-06-05 17:28:45 +08:00
|
|
|
import enGB from '../en_GB';
|
|
|
|
import frFR from '../fr_FR';
|
|
|
|
import nlBE from '../nl_BE';
|
|
|
|
import itIT from '../it_IT';
|
2017-01-23 21:08:16 +08:00
|
|
|
import enUS from '../en_US';
|
|
|
|
import ptBR from '../pt_BR';
|
2017-09-22 10:02:01 +08:00
|
|
|
import ptPT from '../pt_PT';
|
2017-01-23 21:08:16 +08:00
|
|
|
import ruRU from '../ru_RU';
|
|
|
|
import esES from '../es_ES';
|
2017-01-27 17:49:20 +08:00
|
|
|
import svSE from '../sv_SE';
|
|
|
|
import frBE from '../fr_BE';
|
|
|
|
import deDE from '../de_DE';
|
2017-02-13 15:46:13 +08:00
|
|
|
import nlNL from '../nl_NL';
|
2017-02-19 14:27:14 +08:00
|
|
|
import caES from '../ca_ES';
|
2017-03-05 20:11:24 +08:00
|
|
|
import csCZ from '../cs_CZ';
|
2017-03-02 15:24:49 +08:00
|
|
|
import koKR from '../ko_KR';
|
2017-03-24 10:54:36 +08:00
|
|
|
import etEE from '../et_EE';
|
2017-03-24 10:30:37 +08:00
|
|
|
import skSK from '../sk_SK';
|
2017-03-28 15:11:33 +08:00
|
|
|
import jaJP from '../ja_JP';
|
2017-03-28 21:26:07 +08:00
|
|
|
import trTR from '../tr_TR';
|
2017-04-07 19:19:38 +08:00
|
|
|
import zhTW from '../zh_TW';
|
2017-04-13 11:12:30 +08:00
|
|
|
import fiFI from '../fi_FI';
|
2017-06-02 04:43:12 +08:00
|
|
|
import plPL from '../pl_PL';
|
2017-06-01 10:44:00 +08:00
|
|
|
import bgBG from '../bg_BG';
|
2017-06-09 20:00:16 +08:00
|
|
|
import viVN from '../vi_VN';
|
2017-07-04 17:54:36 +08:00
|
|
|
import thTH from '../th_TH';
|
2017-07-18 13:23:16 +08:00
|
|
|
import faIR from '../fa_IR';
|
2017-07-31 11:34:02 +08:00
|
|
|
import elGR from '../el_GR';
|
2017-08-09 20:36:01 +08:00
|
|
|
import nbNO from '../nb_NO';
|
2017-08-15 09:24:30 +08:00
|
|
|
import srRS from '../sr_RS';
|
2018-03-26 11:44:27 +08:00
|
|
|
import slSI from '../sl_SI';
|
2017-09-12 09:10:42 +08:00
|
|
|
import isIS from '../is_IS';
|
2017-10-14 14:30:54 +08:00
|
|
|
import arEG from '../ar_EG';
|
2017-11-14 16:10:54 +08:00
|
|
|
import ukUA from '../uk_UA';
|
2018-01-13 17:53:25 +08:00
|
|
|
import zhCN from '../zh_CN';
|
2018-01-24 21:40:29 +08:00
|
|
|
import kuIQ from '../ku_IQ';
|
2017-04-13 11:12:30 +08:00
|
|
|
|
2018-03-26 11:44:27 +08:00
|
|
|
const locales = [enUS, ptBR, ptPT, ruRU, esES, svSE, frBE, deDE, nlNL, caES, csCZ, koKR, etEE, skSK, jaJP, trTR, zhTW, fiFI, plPL, bgBG, enGB, frFR, nlBE, itIT, viVN, thTH, faIR, elGR, nbNO, srRS, slSI, isIS, arEG, ukUA, zhCN, kuIQ];
|
2017-01-23 21:08:16 +08:00
|
|
|
|
2017-10-09 13:23:20 +08:00
|
|
|
const { Option } = Select;
|
|
|
|
const { RangePicker } = DatePicker;
|
2017-01-23 21:08:16 +08:00
|
|
|
|
|
|
|
const columns = [{
|
|
|
|
title: 'Name',
|
|
|
|
dataIndex: 'name',
|
|
|
|
filters: [{
|
|
|
|
text: 'filter1',
|
|
|
|
value: 'filter1',
|
|
|
|
}],
|
|
|
|
}, {
|
|
|
|
title: 'Age',
|
|
|
|
dataIndex: 'age',
|
|
|
|
}];
|
|
|
|
|
|
|
|
const App = () => (
|
|
|
|
<div>
|
|
|
|
<Pagination defaultCurrent={1} total={50} showSizeChanger />
|
|
|
|
<Select showSearch style={{ width: 200 }}>
|
|
|
|
<Option value="jack">jack</Option>
|
|
|
|
<Option value="lucy">lucy</Option>
|
|
|
|
</Select>
|
2017-12-29 18:44:19 +08:00
|
|
|
<DatePicker open />
|
|
|
|
<TimePicker open defaultOpenValue={moment()} />
|
|
|
|
<RangePicker open style={{ width: 200 }} />
|
2017-01-23 21:08:16 +08:00
|
|
|
<Popconfirm title="Question?" visible>
|
|
|
|
<a>Click to confirm</a>
|
|
|
|
</Popconfirm>
|
|
|
|
<Transfer
|
|
|
|
dataSource={[]}
|
|
|
|
showSearch
|
|
|
|
targetKeys={[]}
|
|
|
|
render={item => item.title}
|
|
|
|
/>
|
|
|
|
<Calendar fullscreen={false} value={moment()} />
|
|
|
|
<Table dataSource={[]} columns={columns} />
|
|
|
|
<Modal title="Locale Modal" visible>
|
|
|
|
<p>Locale Modal</p>
|
|
|
|
</Modal>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
describe('Locale Provider', () => {
|
2018-01-13 17:53:25 +08:00
|
|
|
beforeAll(() => {
|
2018-03-10 17:17:07 +08:00
|
|
|
MockDate.set(moment('2017-09-18T03:30:07.795'));
|
2018-01-13 17:53:25 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
MockDate.reset();
|
|
|
|
});
|
|
|
|
|
2017-12-29 18:44:19 +08:00
|
|
|
locales.forEach((locale) => {
|
|
|
|
it(`should display the text as ${locale.locale}`, () => {
|
2017-01-23 21:08:16 +08:00
|
|
|
const wrapper = mount(
|
|
|
|
<LocaleProvider locale={locale}>
|
|
|
|
<App />
|
|
|
|
</LocaleProvider>
|
|
|
|
);
|
2017-10-31 14:55:53 +08:00
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
2017-01-23 21:08:16 +08:00
|
|
|
});
|
|
|
|
});
|
2017-03-27 12:08:48 +08:00
|
|
|
|
|
|
|
it('should change locale of Modal.xxx', () => {
|
|
|
|
class ModalDemo extends React.Component {
|
|
|
|
componentDidMount() {
|
|
|
|
Modal.confirm({
|
|
|
|
title: 'Hello World!',
|
|
|
|
});
|
|
|
|
}
|
2018-06-22 21:05:13 +08:00
|
|
|
|
2017-03-27 12:08:48 +08:00
|
|
|
render() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2017-04-13 11:12:30 +08:00
|
|
|
locales.forEach((locale) => {
|
2017-03-27 12:08:48 +08:00
|
|
|
mount(
|
|
|
|
<LocaleProvider locale={locale}>
|
|
|
|
<ModalDemo />
|
|
|
|
</LocaleProvider>
|
|
|
|
);
|
|
|
|
const currentConfirmNode = document.querySelectorAll('.ant-confirm')[document.querySelectorAll('.ant-confirm').length - 1];
|
2018-01-13 17:53:25 +08:00
|
|
|
let cancelButtonText = currentConfirmNode.querySelectorAll('.ant-btn:not(.ant-btn-primary) span')[0].innerHTML;
|
|
|
|
let okButtonText = currentConfirmNode.querySelectorAll('.ant-btn-primary span')[0].innerHTML;
|
|
|
|
if (locale.locale === 'zh-cn') {
|
|
|
|
cancelButtonText = cancelButtonText.replace(' ', '');
|
|
|
|
okButtonText = okButtonText.replace(' ', '');
|
|
|
|
}
|
2017-03-27 12:08:48 +08:00
|
|
|
expect(cancelButtonText).toBe(locale.Modal.cancelText);
|
|
|
|
expect(okButtonText).toBe(locale.Modal.okText);
|
|
|
|
});
|
|
|
|
});
|
2018-01-13 17:53:25 +08:00
|
|
|
|
|
|
|
it('set moment locale when locale changes', () => {
|
|
|
|
class Test extends React.Component {
|
|
|
|
state = {
|
|
|
|
locale: zhCN,
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-06-22 21:05:13 +08:00
|
|
|
const { locale } = this.state;
|
2018-01-13 17:53:25 +08:00
|
|
|
return (
|
2018-06-22 21:05:13 +08:00
|
|
|
<LocaleProvider locale={locale}>
|
2018-01-13 17:53:25 +08:00
|
|
|
<div>
|
|
|
|
<DatePicker defaultValue={moment()} open />
|
|
|
|
</div>
|
|
|
|
</LocaleProvider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const wrapper = mount(<Test />);
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
|
|
wrapper.setState({ locale: frFR });
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
2018-01-14 01:30:21 +08:00
|
|
|
wrapper.setState({ locale: null });
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
2018-01-13 17:53:25 +08:00
|
|
|
});
|
2017-01-23 21:08:16 +08:00
|
|
|
});
|