2011-12-20 21:02:47 -05:00
|
|
|
$(function () {
|
2014-03-17 03:12:55 -04:00
|
|
|
'use strict';
|
2011-12-20 21:02:47 -05:00
|
|
|
|
2014-04-22 01:03:33 -04:00
|
|
|
module('button plugin')
|
2014-02-13 02:55:12 -05:00
|
|
|
|
|
|
|
test('should be defined on jquery object', function () {
|
|
|
|
ok($(document.body).button, 'button method is defined')
|
|
|
|
})
|
|
|
|
|
2014-04-22 01:03:33 -04:00
|
|
|
module('button', {
|
2014-03-17 03:12:55 -04:00
|
|
|
setup: function () {
|
2014-04-22 01:03:33 -04:00
|
|
|
// Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
|
|
|
|
$.fn.bootstrapButton = $.fn.button.noConflict()
|
|
|
|
},
|
2014-03-17 03:12:55 -04:00
|
|
|
teardown: function () {
|
2014-04-22 01:03:33 -04:00
|
|
|
$.fn.button = $.fn.bootstrapButton
|
|
|
|
delete $.fn.bootstrapButton
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
test('should provide no conflict', function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
strictEqual($.fn.button, undefined, 'button was set back to undefined (org value)')
|
2014-04-22 01:03:33 -04:00
|
|
|
})
|
|
|
|
|
2014-06-18 15:33:38 -04:00
|
|
|
test('should return jquery collection containing the element', function () {
|
|
|
|
var $el = $('<div/>')
|
|
|
|
var $button = $el.bootstrapButton()
|
|
|
|
ok($button instanceof $, 'returns jquery collection')
|
|
|
|
strictEqual($button[0], $el[0], 'collection contains element')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
test('should return set state to loading', function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
var $btn = $('<button class="btn" data-loading-text="fat">mdo</button>')
|
|
|
|
equal($btn.html(), 'mdo', 'btn text equals mdo')
|
|
|
|
$btn.bootstrapButton('loading')
|
|
|
|
equal($btn.html(), 'fat', 'btn text equals fat')
|
2014-02-13 02:55:12 -05:00
|
|
|
stop()
|
|
|
|
setTimeout(function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
ok($btn[0].hasAttribute('disabled'), 'btn is disabled')
|
|
|
|
ok($btn.hasClass('disabled'), 'btn has disabled class')
|
2014-02-13 02:55:12 -05:00
|
|
|
start()
|
|
|
|
}, 0)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('should return reset state', function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
var $btn = $('<button class="btn" data-loading-text="fat">mdo</button>')
|
|
|
|
equal($btn.html(), 'mdo', 'btn text equals mdo')
|
|
|
|
$btn.bootstrapButton('loading')
|
|
|
|
equal($btn.html(), 'fat', 'btn text equals fat')
|
2014-02-13 02:55:12 -05:00
|
|
|
stop()
|
|
|
|
setTimeout(function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
ok($btn[0].hasAttribute('disabled'), 'btn is disabled')
|
|
|
|
ok($btn.hasClass('disabled'), 'btn has disabled class')
|
2014-02-13 02:55:12 -05:00
|
|
|
start()
|
|
|
|
stop()
|
2014-06-18 15:33:38 -04:00
|
|
|
$btn.bootstrapButton('reset')
|
|
|
|
equal($btn.html(), 'mdo', 'btn text equals mdo')
|
2014-02-13 02:55:12 -05:00
|
|
|
setTimeout(function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
ok(!$btn[0].hasAttribute('disabled'), 'btn is not disabled')
|
|
|
|
ok(!$btn.hasClass('disabled'), 'btn does not have disabled class')
|
2014-02-13 02:55:12 -05:00
|
|
|
start()
|
|
|
|
}, 0)
|
|
|
|
}, 0)
|
2014-05-05 06:11:59 -04:00
|
|
|
})
|
2014-02-13 02:55:12 -05:00
|
|
|
|
2014-05-05 06:11:59 -04:00
|
|
|
test('should work with an empty string as reset state', function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
var $btn = $('<button class="btn" data-loading-text="fat"/>')
|
|
|
|
equal($btn.html(), '', 'btn text equals ""')
|
|
|
|
$btn.bootstrapButton('loading')
|
|
|
|
equal($btn.html(), 'fat', 'btn text equals fat')
|
2014-05-05 06:11:59 -04:00
|
|
|
stop()
|
|
|
|
setTimeout(function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
ok($btn[0].hasAttribute('disabled'), 'btn is disabled')
|
|
|
|
ok($btn.hasClass('disabled'), 'btn has disabled class')
|
2014-05-05 06:11:59 -04:00
|
|
|
start()
|
|
|
|
stop()
|
2014-06-18 15:33:38 -04:00
|
|
|
$btn.bootstrapButton('reset')
|
|
|
|
equal($btn.html(), '', 'btn text equals ""')
|
2014-05-05 06:11:59 -04:00
|
|
|
setTimeout(function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
ok(!$btn[0].hasAttribute('disabled'), 'btn is not disabled')
|
|
|
|
ok(!$btn.hasClass('disabled'), 'btn does not have disabled class')
|
2014-05-05 06:11:59 -04:00
|
|
|
start()
|
|
|
|
}, 0)
|
|
|
|
}, 0)
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
test('should toggle active', function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
var $btn = $('<button class="btn">mdo</button>')
|
|
|
|
ok(!$btn.hasClass('active'), 'btn does not have active class')
|
|
|
|
$btn.bootstrapButton('toggle')
|
|
|
|
ok($btn.hasClass('active'), 'btn has class active')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
test('should toggle active when btn children are clicked', function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
var $btn = $('<button class="btn" data-toggle="button">mdo</button>')
|
|
|
|
var $inner = $('<i/>')
|
|
|
|
$btn
|
|
|
|
.append($inner)
|
|
|
|
.appendTo('#qunit-fixture')
|
|
|
|
ok(!$btn.hasClass('active'), 'btn does not have active class')
|
|
|
|
$inner.click()
|
|
|
|
ok($btn.hasClass('active'), 'btn has class active')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
test('should toggle active when btn children are clicked within btn-group', function () {
|
2014-06-18 15:33:38 -04:00
|
|
|
var $btngroup = $('<div class="btn-group" data-toggle="buttons"/>')
|
|
|
|
var $btn = $('<button class="btn">fat</button>')
|
|
|
|
var $inner = $('<i/>')
|
|
|
|
$btngroup
|
|
|
|
.append($btn.append($inner))
|
|
|
|
.appendTo('#qunit-fixture')
|
|
|
|
ok(!$btn.hasClass('active'), 'btn does not have active class')
|
|
|
|
$inner.click()
|
|
|
|
ok($btn.hasClass('active'), 'btn has class active')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
test('should check for closest matching toggle', function () {
|
2014-07-06 05:56:12 -04:00
|
|
|
var groupHTML = '<div class="btn-group" data-toggle="buttons">'
|
|
|
|
+ '<label class="btn btn-primary active">'
|
|
|
|
+ '<input type="radio" name="options" id="option1" checked="true"> Option 1'
|
|
|
|
+ '</label>'
|
|
|
|
+ '<label class="btn btn-primary">'
|
|
|
|
+ '<input type="radio" name="options" id="option2"> Option 2'
|
|
|
|
+ '</label>'
|
|
|
|
+ '<label class="btn btn-primary">'
|
|
|
|
+ '<input type="radio" name="options" id="option3"> Option 3'
|
|
|
|
+ '</label>'
|
|
|
|
+ '</div>'
|
2014-06-18 15:33:38 -04:00
|
|
|
var $group = $(groupHTML).appendTo('#qunit-fixture')
|
|
|
|
|
|
|
|
var $btn1 = $group.children().eq(0)
|
|
|
|
var $btn2 = $group.children().eq(1)
|
|
|
|
|
|
|
|
ok($btn1.hasClass('active'), 'btn1 has active class')
|
|
|
|
ok($btn1.find('input').prop('checked'), 'btn1 is checked')
|
|
|
|
ok(!$btn2.hasClass('active'), 'btn2 does not have active class')
|
|
|
|
ok(!$btn2.find('input').prop('checked'), 'btn2 is not checked')
|
|
|
|
$btn2.find('input').click()
|
|
|
|
ok(!$btn1.hasClass('active'), 'btn1 does not have active class')
|
|
|
|
ok(!$btn1.find('input').prop('checked'), 'btn1 is checked')
|
|
|
|
ok($btn2.hasClass('active'), 'btn2 has active class')
|
|
|
|
ok($btn2.find('input').prop('checked'), 'btn2 is checked')
|
|
|
|
|
|
|
|
$btn2.find('input').click() // clicking an already checked radio should not un-check it
|
|
|
|
ok(!$btn1.hasClass('active'), 'btn1 does not have active class')
|
|
|
|
ok(!$btn1.find('input').prop('checked'), 'btn1 is checked')
|
|
|
|
ok($btn2.hasClass('active'), 'btn2 has active class')
|
|
|
|
ok($btn2.find('input').prop('checked'), 'btn2 is checked')
|
2014-02-13 02:55:12 -05:00
|
|
|
})
|
2012-08-27 23:58:51 -04:00
|
|
|
|
2013-04-23 03:34:27 -04:00
|
|
|
})
|