info@54
|
1 |
$(function () {
|
info@54
|
2 |
|
info@54
|
3 |
module("button")
|
info@54
|
4 |
|
info@54
|
5 |
test("should provide no conflict", function () {
|
info@54
|
6 |
var button = $.fn.button.noConflict()
|
info@54
|
7 |
ok(!$.fn.button, 'button was set back to undefined (org value)')
|
info@54
|
8 |
$.fn.button = button
|
info@54
|
9 |
})
|
info@54
|
10 |
|
info@54
|
11 |
test("should be defined on jquery object", function () {
|
info@54
|
12 |
ok($(document.body).button, 'button method is defined')
|
info@54
|
13 |
})
|
info@54
|
14 |
|
info@54
|
15 |
test("should return element", function () {
|
info@54
|
16 |
ok($(document.body).button()[0] == document.body, 'document.body returned')
|
info@54
|
17 |
})
|
info@54
|
18 |
|
info@54
|
19 |
test("should return set state to loading", function () {
|
info@54
|
20 |
var btn = $('<button class="btn" data-loading-text="fat">mdo</button>')
|
info@54
|
21 |
equal(btn.html(), 'mdo', 'btn text equals mdo')
|
info@54
|
22 |
btn.button('loading')
|
info@54
|
23 |
equal(btn.html(), 'fat', 'btn text equals fat')
|
info@54
|
24 |
stop()
|
info@54
|
25 |
setTimeout(function () {
|
info@54
|
26 |
ok(btn.attr('disabled'), 'btn is disabled')
|
info@54
|
27 |
ok(btn.hasClass('disabled'), 'btn has disabled class')
|
info@54
|
28 |
start()
|
info@54
|
29 |
}, 0)
|
info@54
|
30 |
})
|
info@54
|
31 |
|
info@54
|
32 |
test("should return reset state", function () {
|
info@54
|
33 |
var btn = $('<button class="btn" data-loading-text="fat">mdo</button>')
|
info@54
|
34 |
equal(btn.html(), 'mdo', 'btn text equals mdo')
|
info@54
|
35 |
btn.button('loading')
|
info@54
|
36 |
equal(btn.html(), 'fat', 'btn text equals fat')
|
info@54
|
37 |
stop()
|
info@54
|
38 |
setTimeout(function () {
|
info@54
|
39 |
ok(btn.attr('disabled'), 'btn is disabled')
|
info@54
|
40 |
ok(btn.hasClass('disabled'), 'btn has disabled class')
|
info@54
|
41 |
start()
|
info@54
|
42 |
stop()
|
info@54
|
43 |
btn.button('reset')
|
info@54
|
44 |
equal(btn.html(), 'mdo', 'btn text equals mdo')
|
info@54
|
45 |
setTimeout(function () {
|
info@54
|
46 |
ok(!btn.attr('disabled'), 'btn is not disabled')
|
info@54
|
47 |
ok(!btn.hasClass('disabled'), 'btn does not have disabled class')
|
info@54
|
48 |
start()
|
info@54
|
49 |
}, 0)
|
info@54
|
50 |
}, 0)
|
info@54
|
51 |
|
info@54
|
52 |
})
|
info@54
|
53 |
|
info@54
|
54 |
test("should toggle active", function () {
|
info@54
|
55 |
var btn = $('<button class="btn">mdo</button>')
|
info@54
|
56 |
ok(!btn.hasClass('active'), 'btn does not have active class')
|
info@54
|
57 |
btn.button('toggle')
|
info@54
|
58 |
ok(btn.hasClass('active'), 'btn has class active')
|
info@54
|
59 |
})
|
info@54
|
60 |
|
info@54
|
61 |
test("should toggle active when btn children are clicked", function () {
|
info@54
|
62 |
var btn = $('<button class="btn" data-toggle="button">mdo</button>')
|
info@54
|
63 |
, inner = $('<i></i>')
|
info@54
|
64 |
btn
|
info@54
|
65 |
.append(inner)
|
info@54
|
66 |
.appendTo($('#qunit-fixture'))
|
info@54
|
67 |
ok(!btn.hasClass('active'), 'btn does not have active class')
|
info@54
|
68 |
inner.click()
|
info@54
|
69 |
ok(btn.hasClass('active'), 'btn has class active')
|
info@54
|
70 |
})
|
info@54
|
71 |
|
info@54
|
72 |
test("should toggle active when btn children are clicked within btn-group", function () {
|
info@54
|
73 |
var btngroup = $('<div class="btn-group" data-toggle="buttons"></div>')
|
info@54
|
74 |
, btn = $('<button class="btn">fat</button>')
|
info@54
|
75 |
, inner = $('<i></i>')
|
info@54
|
76 |
btngroup
|
info@54
|
77 |
.append(btn.append(inner))
|
info@54
|
78 |
.appendTo($('#qunit-fixture'))
|
info@54
|
79 |
ok(!btn.hasClass('active'), 'btn does not have active class')
|
info@54
|
80 |
inner.click()
|
info@54
|
81 |
ok(btn.hasClass('active'), 'btn has class active')
|
info@54
|
82 |
})
|
info@54
|
83 |
|
info@54
|
84 |
test("should check for closest matching toggle", function () {
|
info@54
|
85 |
var group = '<div class="btn-group" data-toggle="buttons">' +
|
info@54
|
86 |
'<label class="btn btn-primary active">' +
|
info@54
|
87 |
'<input type="radio" name="options" id="option1" checked="true"> Option 1' +
|
info@54
|
88 |
'</label>' +
|
info@54
|
89 |
'<label class="btn btn-primary">' +
|
info@54
|
90 |
'<input type="radio" name="options" id="option2"> Option 2' +
|
info@54
|
91 |
'</label>' +
|
info@54
|
92 |
'<label class="btn btn-primary">' +
|
info@54
|
93 |
'<input type="radio" name="options" id="option3"> Option 3' +
|
info@54
|
94 |
'</label>' +
|
info@54
|
95 |
'</div>'
|
info@54
|
96 |
|
info@54
|
97 |
group = $(group)
|
info@54
|
98 |
|
info@54
|
99 |
var btn1 = $(group.children()[0])
|
info@54
|
100 |
var btn2 = $(group.children()[1])
|
info@54
|
101 |
var btn3 = $(group.children()[2])
|
info@54
|
102 |
|
info@54
|
103 |
group.appendTo($('#qunit-fixture'))
|
info@54
|
104 |
|
info@54
|
105 |
ok(btn1.hasClass('active'), 'btn1 has active class')
|
info@54
|
106 |
ok(btn1.find('input').prop('checked'), 'btn1 is checked')
|
info@54
|
107 |
ok(!btn2.hasClass('active'), 'btn2 does not have active class')
|
info@54
|
108 |
ok(!btn2.find('input').prop('checked'), 'btn2 is not checked')
|
info@54
|
109 |
btn2.find('input').click()
|
info@54
|
110 |
ok(!btn1.hasClass('active'), 'btn1 does not have active class')
|
info@54
|
111 |
ok(!btn1.find('input').prop('checked'), 'btn1 is checked')
|
info@54
|
112 |
ok(btn2.hasClass('active'), 'btn2 has active class')
|
info@54
|
113 |
ok(btn2.find('input').prop('checked'), 'btn2 is checked')
|
info@54
|
114 |
|
info@54
|
115 |
btn2.find('input').click() /* clicking an already checked radio should not un-check it */
|
info@54
|
116 |
ok(!btn1.hasClass('active'), 'btn1 does not have active class')
|
info@54
|
117 |
ok(!btn1.find('input').prop('checked'), 'btn1 is checked')
|
info@54
|
118 |
ok(btn2.hasClass('active'), 'btn2 has active class')
|
info@54
|
119 |
ok(btn2.find('input').prop('checked'), 'btn2 is checked')
|
info@54
|
120 |
})
|
info@54
|
121 |
|
info@54
|
122 |
})
|