A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
4.0 KiB
129 lines
4.0 KiB
6 years ago
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import ReactTestRenderer from 'react-test-renderer';
|
||
|
import ReactTestUtils from 'react-dom/test-utils';
|
||
|
import SearchForm from 'settings/components/form/SearchForm'
|
||
|
|
||
|
describe("settings/form/SearchForm", () => {
|
||
|
describe('render', () => {
|
||
|
it('renders SearchForm', () => {
|
||
|
let root = ReactTestRenderer.create(<SearchForm value={{
|
||
|
default: 'google',
|
||
|
engines: [['google', 'google.com'], ['yahoo', 'yahoo.com']],
|
||
|
}} />).root;
|
||
|
|
||
|
let names = root.findAllByProps({ name: 'name' });
|
||
|
expect(names).to.have.lengthOf(2);
|
||
|
expect(names[0].props.value).to.equal('google');
|
||
|
expect(names[1].props.value).to.equal('yahoo');
|
||
|
|
||
|
let urls = root.findAllByProps({ name: 'url' });
|
||
|
expect(urls).to.have.lengthOf(2);
|
||
|
expect(urls[0].props.value).to.equal('google.com');
|
||
|
expect(urls[1].props.value).to.equal('yahoo.com');
|
||
|
});
|
||
|
|
||
|
it('renders blank value', () => {
|
||
|
let root = ReactTestRenderer.create(<SearchForm />).root;
|
||
|
|
||
|
let names = root.findAllByProps({ name: 'name' });
|
||
|
expect(names).to.be.empty;
|
||
|
|
||
|
let urls = root.findAllByProps({ name: 'url' });
|
||
|
expect(urls).to.be.empty;
|
||
|
});
|
||
|
|
||
|
it('renders blank engines', () => {
|
||
|
let root = ReactTestRenderer.create(
|
||
|
<SearchForm value={{ default: 'google' }} />,
|
||
|
).root;
|
||
|
|
||
|
let names = root.findAllByProps({ name: 'name' });
|
||
|
expect(names).to.be.empty;
|
||
|
|
||
|
let urls = root.findAllByProps({ name: 'url' });
|
||
|
expect(urls).to.be.empty;
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('onChange event', () => {
|
||
|
let container;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
container = document.createElement('div');
|
||
|
document.body.appendChild(container);
|
||
|
});
|
||
|
|
||
|
afterEach(() => {
|
||
|
document.body.removeChild(container);
|
||
|
container = null;
|
||
|
});
|
||
|
|
||
|
it('invokes onChange event on edit', (done) => {
|
||
|
ReactTestUtils.act(() => {
|
||
|
ReactDOM.render(<SearchForm
|
||
|
value={{
|
||
|
default: 'google',
|
||
|
engines: [['google', 'google.com'], ['yahoo', 'yahoo.com']]
|
||
|
}}
|
||
|
onChange={value => {
|
||
|
expect(value.default).to.equal('louvre');
|
||
|
expect(value.engines).to.have.lengthOf(2)
|
||
|
expect(value.engines).to.have.deep.members(
|
||
|
[['louvre', 'google.com'], ['yahoo', 'yahoo.com']]
|
||
|
);
|
||
|
done();
|
||
|
}} />, container);
|
||
|
});
|
||
|
|
||
|
let radio = document.querySelectorAll('input[type=radio]');
|
||
|
radio.checked = true;
|
||
|
|
||
|
let name = document.querySelector('input[name=name]');
|
||
|
name.value = 'louvre';
|
||
|
|
||
|
ReactTestUtils.Simulate.change(name);
|
||
|
});
|
||
|
|
||
|
it('invokes onChange event on delete', (done) => {
|
||
|
ReactTestUtils.act(() => {
|
||
|
ReactDOM.render(<SearchForm value={{
|
||
|
default: 'yahoo',
|
||
|
engines: [['louvre', 'google.com'], ['yahoo', 'yahoo.com']]
|
||
|
}}
|
||
|
onChange={value => {
|
||
|
expect(value.default).to.equal('yahoo');
|
||
|
expect(value.engines).to.have.lengthOf(1)
|
||
|
expect(value.engines).to.have.deep.members(
|
||
|
[['yahoo', 'yahoo.com']]
|
||
|
);
|
||
|
done();
|
||
|
}} />, container);
|
||
|
});
|
||
|
|
||
|
let button = document.querySelector('input[type=button]');
|
||
|
ReactTestUtils.Simulate.click(button);
|
||
|
});
|
||
|
|
||
|
it('invokes onChange event on add', (done) => {
|
||
|
ReactTestUtils.act(() => {
|
||
|
ReactDOM.render(<SearchForm value={{
|
||
|
default: 'yahoo',
|
||
|
engines: [['google', 'google.com']]
|
||
|
}}
|
||
|
onChange={value => {
|
||
|
expect(value.default).to.equal('yahoo');
|
||
|
expect(value.engines).to.have.lengthOf(2)
|
||
|
expect(value.engines).to.have.deep.members(
|
||
|
[['google', 'google.com'], ['', '']],
|
||
|
);
|
||
|
done();
|
||
|
}} />, container);
|
||
|
});
|
||
|
|
||
|
let button = document.querySelector('input[type=button].ui-add-button');
|
||
|
ReactTestUtils.Simulate.click(button);
|
||
|
});
|
||
|
});
|
||
|
});
|