| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- TestSuite = $.extend({}, TestSuite, {
- Event: {
- onEmailValid: function(e, data) {
- $('#msg').html('TestSuite.Event.onEmailValid() called, ' + data.field + ' is valid');
- },
- onEmailInvalid: function(e, data) {
- $('#msg').html('TestSuite.Event.onEmailInvalid() called, ' + data.field + ' is invalid');
- },
- onFormValid: function(e) {
- $('#msg').html('TestSuite.Event.onFormValid() called, form ' + $(e.target).attr('id') + ' is valid');
- },
- onFormInvalid: function(e) {
- $('#msg').html('TestSuite.Event.onFormInvalid() called, form ' + $(e.target).attr('id') + ' is invalid');
- }
- }
- });
- // ---
- // Form events
- // ---
- function onFormValid(e) {
- $('#msg').html('form ' + $(e.target).attr('id') + ' is valid');
- };
- function onFormInvalid(e) {
- $('#msg').html('form ' + $(e.target).attr('id') + ' is invalid');
- };
- describe('event form attribute callback global', function() {
- beforeEach(function() {
- $([
- '<form class="form-horizontal" id="eventForm" data-bv-onsuccess="onFormValid" data-bv-onerror="onFormInvalid" >',
- '<div id="msg"></div>',
- '<div class="form-group">',
- '<input type="text" name="email" required data-bv-emailaddress />',
- '</div>',
- '</form>'
- ].join('\n')).appendTo('body');
- $('#eventForm').bootstrapValidator();
- this.bv = $('#eventForm').data('bootstrapValidator');
- this.$email = this.bv.getFieldElements('email');
- });
- afterEach(function() {
- $('#eventForm').bootstrapValidator('destroy').remove();
- });
- it('call data-bv-onsuccess', function() {
- this.$email.val('email@domain.com');
- this.bv.validate();
- expect($('#msg').html()).toEqual('form eventForm is valid');
- });
- it('call data-bv-onerror', function() {
- this.$email.val('email@domain');
- this.bv.validate();
- expect($('#msg').html()).toEqual('form eventForm is invalid');
- });
- });
- describe('event form attribute callback namespace', function() {
- beforeEach(function() {
- $([
- '<form class="form-horizontal" id="eventForm" data-bv-onsuccess="TestSuite.Event.onFormValid" data-bv-onerror="TestSuite.Event.onFormInvalid" >',
- '<div id="msg"></div>',
- '<div class="form-group">',
- '<input type="text" name="email" required data-bv-emailaddress />',
- '</div>',
- '</form>'
- ].join('\n')).appendTo('body');
- $('#eventForm').bootstrapValidator();
- this.bv = $('#eventForm').data('bootstrapValidator');
- this.$email = this.bv.getFieldElements('email');
- });
- afterEach(function() {
- $('#eventForm').bootstrapValidator('destroy').remove();
- });
- it('call data-bv-onsuccess', function() {
- this.$email.val('email@domain.com');
- this.bv.validate();
- expect($('#msg').html()).toEqual('TestSuite.Event.onFormValid() called, form eventForm is valid');
- });
- it('call data-bv-onerror', function() {
- this.$email.val('email@domain');
- this.bv.validate();
- expect($('#msg').html()).toEqual('TestSuite.Event.onFormInvalid() called, form eventForm is invalid');
- });
- });
- describe('event form trigger', function() {
- beforeEach(function() {
- $([
- '<form class="form-horizontal" id="eventForm">',
- '<div id="msg"></div>',
- '<div class="form-group">',
- '<input type="text" name="email" data-bv-emailaddress />',
- '</div>',
- '</form>'
- ].join('\n')).appendTo('body');
- $('#eventForm')
- .bootstrapValidator()
- .on('success.form.bv', function(e) {
- $('#msg').html('form ' + $(e.target).attr('id') + ' triggered success.form.bv event');
- })
- .on('error.form.bv', function(e) {
- $('#msg').html('form ' + $(e.target).attr('id') + ' triggered error.form.bv event');
- });
- this.bv = $('#eventForm').data('bootstrapValidator');
- this.$email = this.bv.getFieldElements('email');
- });
- afterEach(function() {
- $('#eventForm').bootstrapValidator('destroy').remove();
- });
- it('trigger success.form.bv', function() {
- this.$email.val('email@domain.com');
- this.bv.validate();
- expect($('#msg').html()).toEqual('form eventForm triggered success.form.bv event');
- });
- it('trigger error.form.bv', function() {
- this.$email.val('email@domain');
- this.bv.validate();
- expect($('#msg').html()).toEqual('form eventForm triggered error.form.bv event');
- });
- });
- describe('event form programmatically', function() {
- beforeEach(function() {
- $([
- '<form class="form-horizontal" id="eventForm">',
- '<div id="msg"></div>',
- '<div class="form-group">',
- '<input type="text" name="email" data-bv-emailaddress />',
- '</div>',
- '</form>'
- ].join('\n')).appendTo('body');
- $('#eventForm').bootstrapValidator({
- onSuccess: function(e) {
- $('#msg').html('onSuccess() called');
- },
- onError: function(e) {
- $('#msg').html('onError() called');
- }
- });
- this.bv = $('#eventForm').data('bootstrapValidator');
- this.$email = this.bv.getFieldElements('email');
- });
- afterEach(function() {
- $('#eventForm').bootstrapValidator('destroy').remove();
- });
- it('call onSuccess()', function() {
- this.$email.val('email@domain.com');
- this.bv.validate();
- expect($('#msg').html()).toEqual('onSuccess() called');
- });
- it('call onError()', function() {
- this.$email.val('email@domain');
- this.bv.validate();
- expect($('#msg').html()).toEqual('onError() called');
- });
- });
- // ---
- // Field events
- // ---
- function onEmailValid(e, data) {
- $('#msg').html(data.field + ' is valid');
- };
- function onEmailInvalid(e, data) {
- $('#msg').html(data.field + ' is invalid');
- };
- describe('event field attribute callback global', function() {
- beforeEach(function() {
- $([
- '<form class="form-horizontal" id="eventForm">',
- '<div id="msg"></div>',
- '<div class="form-group">',
- '<input type="text" name="email" data-bv-emailaddress data-bv-onsuccess="onEmailValid" data-bv-onerror="onEmailInvalid" />',
- '</div>',
- '</form>'
- ].join('\n')).appendTo('body');
- $('#eventForm').bootstrapValidator();
- this.bv = $('#eventForm').data('bootstrapValidator');
- this.$email = this.bv.getFieldElements('email');
- });
- afterEach(function() {
- $('#eventForm').bootstrapValidator('destroy').remove();
- });
- it('call data-bv-onsuccess', function() {
- this.$email.val('email@domain.com');
- this.bv.validate();
- expect($('#msg').html()).toEqual('email is valid');
- });
- it('call data-bv-onerror', function() {
- this.$email.val('email@domain');
- this.bv.validate();
- expect($('#msg').html()).toEqual('email is invalid');
- });
- });
- describe('event field attribute callback namespace', function() {
- beforeEach(function() {
- $([
- '<form class="form-horizontal" id="eventForm">',
- '<div id="msg"></div>',
- '<div class="form-group">',
- '<input type="text" name="email" data-bv-emailaddress data-bv-onsuccess="TestSuite.Event.onEmailValid" data-bv-onerror="TestSuite.Event.onEmailInvalid" />',
- '</div>',
- '</form>'
- ].join('\n')).appendTo('body');
- $('#eventForm').bootstrapValidator();
- this.bv = $('#eventForm').data('bootstrapValidator');
- this.$email = this.bv.getFieldElements('email');
- });
- afterEach(function() {
- $('#eventForm').bootstrapValidator('destroy').remove();
- });
- it('call data-bv-onsuccess', function() {
- this.$email.val('email@domain.com');
- this.bv.validate();
- expect($('#msg').html()).toEqual('TestSuite.Event.onEmailValid() called, email is valid');
- });
- it('call data-bv-onerror', function() {
- this.$email.val('email@domain');
- this.bv.validate();
- expect($('#msg').html()).toEqual('TestSuite.Event.onEmailInvalid() called, email is invalid');
- });
- });
- describe('event field trigger', function() {
- beforeEach(function() {
- $([
- '<form class="form-horizontal" id="eventForm">',
- '<div id="msg"></div>',
- '<div class="form-group">',
- '<input type="text" name="email" data-bv-emailaddress />',
- '</div>',
- '</form>'
- ].join('\n')).appendTo('body');
- $('#eventForm')
- .bootstrapValidator()
- .on('success.field.bv', '[name="email"]', function(e, data) {
- $('#msg').html('triggered success.field.bv on ' + data.field);
- })
- .on('error.field.bv', '[name="email"]', function(e, data) {
- $('#msg').html('triggered error.field.bv on ' + data.field);
- });
- this.bv = $('#eventForm').data('bootstrapValidator');
- this.$email = this.bv.getFieldElements('email');
- });
- afterEach(function() {
- $('#eventForm').bootstrapValidator('destroy').remove();
- });
- it('trigger success.field.bv', function() {
- this.$email.val('email@domain.com');
- this.bv.validate();
- expect($('#msg').html()).toEqual('triggered success.field.bv on email');
- });
- it('trigger error.field.bv', function() {
- this.$email.val('email@domain');
- this.bv.validate();
- expect($('#msg').html()).toEqual('triggered error.field.bv on email');
- });
- });
- describe('event field programmatically', function() {
- beforeEach(function() {
- $([
- '<form class="form-horizontal" id="eventForm">',
- '<div id="msg"></div>',
- '<div class="form-group">',
- '<input type="text" name="email" data-bv-emailaddress />',
- '</div>',
- '</form>'
- ].join('\n')).appendTo('body');
- $('#eventForm').bootstrapValidator({
- fields: {
- email: {
- onSuccess: function(e, data) {
- $('#msg').html('onSuccess() called');
- },
- onError: function(e, data) {
- $('#msg').html('onError() called');
- },
- validator: {
- emailAddress: {}
- }
- }
- }
- });
- this.bv = $('#eventForm').data('bootstrapValidator');
- this.$email = this.bv.getFieldElements('email');
- });
- afterEach(function() {
- $('#eventForm').bootstrapValidator('destroy').remove();
- });
- it('call onSuccess()', function() {
- this.$email.val('email@domain.com');
- this.bv.validate();
- expect($('#msg').html()).toEqual('onSuccess() called');
- });
- it('call onError()', function() {
- this.$email.val('email@domain');
- this.bv.validate();
- expect($('#msg').html()).toEqual('onError() called');
- });
- });
|