89 lines
2.5 KiB
JavaScript
89 lines
2.5 KiB
JavaScript
import React from 'react';
|
|
import TestUtils from 'react-addons-test-utils';
|
|
|
|
import Formsy from './..';
|
|
import { InputFactory } from './utils/TestInput';
|
|
|
|
const TestInput = InputFactory({
|
|
render() {
|
|
return <input value={this.getValue()} readOnly/>;
|
|
}
|
|
});
|
|
|
|
const TestForm = React.createClass({
|
|
render() {
|
|
return (
|
|
<Formsy.Form>
|
|
<TestInput name="foo" validations="isUrl" value={this.props.inputValue}/>
|
|
</Formsy.Form>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default {
|
|
|
|
'should pass with default value': function (test) {
|
|
|
|
const form = TestUtils.renderIntoDocument(<TestForm/>);
|
|
const inputComponent = TestUtils.findRenderedComponentWithType(form, TestInput);
|
|
test.equal(inputComponent.isValid(), true);
|
|
test.done();
|
|
|
|
},
|
|
|
|
'should fail with "foo"': function (test) {
|
|
|
|
const form = TestUtils.renderIntoDocument(<TestForm inputValue="foo"/>);
|
|
const inputComponent = TestUtils.findRenderedComponentWithType(form, TestInput);
|
|
test.equal(inputComponent.isValid(), false);
|
|
test.done();
|
|
|
|
},
|
|
|
|
'should pass with "https://www.google.com/"': function (test) {
|
|
|
|
const form = TestUtils.renderIntoDocument(<TestForm inputValue="https://www.google.com/"/>);
|
|
const inputComponent = TestUtils.findRenderedComponentWithType(form, TestInput);
|
|
test.equal(inputComponent.isValid(), true);
|
|
test.done();
|
|
|
|
},
|
|
|
|
'should pass with an undefined': function (test) {
|
|
|
|
const form = TestUtils.renderIntoDocument(<TestForm inputValue={undefined}/>);
|
|
const inputComponent = TestUtils.findRenderedComponentWithType(form, TestInput);
|
|
test.equal(inputComponent.isValid(), true);
|
|
test.done();
|
|
|
|
},
|
|
|
|
'should pass with a null': function (test) {
|
|
|
|
const form = TestUtils.renderIntoDocument(<TestForm inputValue={null}/>);
|
|
const inputComponent = TestUtils.findRenderedComponentWithType(form, TestInput);
|
|
test.equal(inputComponent.isValid(), true);
|
|
test.done();
|
|
|
|
},
|
|
|
|
'should fail with a number': function (test) {
|
|
|
|
const form = TestUtils.renderIntoDocument(<TestForm inputValue={42}/>);
|
|
const inputComponent = TestUtils.findRenderedComponentWithType(form, TestInput);
|
|
test.equal(inputComponent.isValid(), false);
|
|
test.done();
|
|
|
|
},
|
|
|
|
'should pass with an empty string': function (test) {
|
|
|
|
const form = TestUtils.renderIntoDocument(<TestForm inputValue=""/>);
|
|
const inputComponent = TestUtils.findRenderedComponentWithType(form, TestInput);
|
|
test.equal(inputComponent.isValid(), true);
|
|
test.done();
|
|
|
|
}
|
|
|
|
};
|