63 lines
1.6 KiB
JavaScript
63 lines
1.6 KiB
JavaScript
var React = require('react/addons');
|
|
var TestUtils = React.addons.TestUtils;
|
|
var Formsy = require('./../src/main.js');
|
|
|
|
describe('Rules: isEmptyString', function() {
|
|
var TestInput, isValid, form, input;
|
|
|
|
function pass(value) {
|
|
return pass.length ? function () {
|
|
TestUtils.Simulate.change(input, {target: {value: value}});
|
|
expect(isValid).toBe(true);
|
|
} : function () { expect(isValid).toBe(true); };
|
|
}
|
|
|
|
function fail(value) {
|
|
return fail.length ? function () {
|
|
TestUtils.Simulate.change(input, {target: {value: value}});
|
|
expect(isValid).toBe(false);
|
|
} : function () { expect(isValid).toBe(false); };
|
|
}
|
|
|
|
beforeEach(function() {
|
|
TestInput = React.createClass({
|
|
mixins: [Formsy.Mixin],
|
|
updateValue: function (event) {
|
|
this.setValue(event.target.value);
|
|
},
|
|
render: function () {
|
|
isValid = this.isValid();
|
|
return <input value={this.getValue()} onChange={this.updateValue}/>
|
|
}
|
|
});
|
|
|
|
form = TestUtils.renderIntoDocument(
|
|
<Formsy.Form>
|
|
<TestInput name="foo" validations="isEmptyString"/>
|
|
</Formsy.Form>
|
|
);
|
|
|
|
input = TestUtils.findRenderedDOMComponentWithTag(form, 'INPUT');
|
|
|
|
});
|
|
|
|
afterEach(function() {
|
|
TestInput = isValid = form = null;
|
|
});
|
|
|
|
it('should fail with a default value', fail());
|
|
|
|
it('should fail with non-empty string', fail('asd'));
|
|
|
|
it('should pass with an empty string', pass(''));
|
|
|
|
it('should fail with a undefined', fail(undefined));
|
|
|
|
it('should fail with a null', fail(null));
|
|
|
|
it('should fail with a number', fail(123));
|
|
|
|
it('should fail with a zero', fail(0));
|
|
|
|
});
|