jquery-ui/tests/unit/checkboxradio/options.js

207 lines
6.4 KiB
JavaScript
Raw Normal View History

define( [
2016-04-03 14:53:34 +00:00
"qunit",
"jquery",
"ui/widgets/checkboxradio"
2016-04-03 14:53:34 +00:00
], function( QUnit, $ ) {
2016-04-03 14:53:34 +00:00
QUnit.module( "Checkboxradio: options" );
function assertDisabled( checkbox, assert ) {
assert.hasClasses( checkbox.checkboxradio( "widget" ), "ui-state-disabled",
"label gets ui-state-disabled" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( checkbox.is( ":disabled" ), true, "checkbox is disabled" );
}
function assertEnabled( checkbox, assert ) {
assert.lacksClasses( checkbox.checkboxradio( "widget" ), "ui-state-disabled",
"label has ui-state-disabled removed when disabled set to false" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( checkbox.is( ":disabled" ), false,
"checkbox has disabled prop removed when disabled set to false" );
}
2016-04-03 14:53:34 +00:00
QUnit.test( "disabled", function( assert ) {
assert.expect( 6 );
2015-10-27 20:05:52 +00:00
var checkbox = $( "#checkbox-option-disabled" );
2015-09-11 14:48:20 +00:00
checkbox.checkboxradio( {
disabled: true
2015-09-11 14:48:20 +00:00
} );
assertDisabled( checkbox, assert );
checkbox.checkboxradio( "option", "disabled", false );
assertEnabled( checkbox, assert );
checkbox.checkboxradio( "option", "disabled", true );
assertDisabled( checkbox, assert );
2015-09-11 14:48:20 +00:00
} );
2015-10-27 20:05:52 +00:00
2016-04-03 14:53:34 +00:00
QUnit.test( "disabled - prop true on init", function( assert ) {
assert.expect( 2 );
var checkbox = $( "#checkbox-option-disabled" );
checkbox.prop( "disabled", true );
checkbox.checkboxradio();
assertDisabled( checkbox, assert );
2015-09-11 14:48:20 +00:00
} );
2015-10-27 20:05:52 +00:00
2016-04-03 14:53:34 +00:00
QUnit.test( "disabled - explicit null value, checks the DOM", function( assert ) {
assert.expect( 2 );
var checkbox = $( "#checkbox-option-disabled" );
checkbox.prop( "disabled", true );
2015-09-11 14:48:20 +00:00
checkbox.checkboxradio( {
disabled: null
2015-09-11 14:48:20 +00:00
} );
assertDisabled( checkbox, assert );
2015-09-11 14:48:20 +00:00
} );
2016-04-03 14:53:34 +00:00
function assertNoIcon( assert, checkbox ) {
assert.strictEqual( checkbox.checkboxradio( "widget" ).find( "span.ui-icon" ).length, 0,
"Label does not contain an icon" );
}
2015-10-27 20:05:52 +00:00
function assertIcon( checkbox, icon, assert ) {
var iconElement = checkbox.checkboxradio( "widget" ).find( ".ui-icon" );
icon = icon || "blank";
2016-04-03 14:53:34 +00:00
assert.strictEqual( iconElement.length, 1,
"Label contains icon" );
assert.hasClasses( iconElement, "ui-checkboxradio-icon ui-corner-all ui-icon " +
"ui-icon-background ui-icon-" + icon,
"Icon has proper classes" );
if ( icon === "blank" ) {
assert.lacksClasses( iconElement, "ui-icon-check ui-state-highlight" );
}
}
2015-10-27 20:05:52 +00:00
2016-04-03 14:53:34 +00:00
QUnit.test( "icon - false on init", function( assert ) {
var checkbox = $( "#checkbox-option-icon" );
2016-04-03 14:53:34 +00:00
assert.expect( 1 );
2015-09-11 14:48:20 +00:00
checkbox.checkboxradio( { icon: false } );
2016-04-03 14:53:34 +00:00
assertNoIcon( assert, checkbox );
2015-09-11 14:48:20 +00:00
} );
2015-10-27 20:05:52 +00:00
2016-04-03 14:53:34 +00:00
QUnit.test( "icon - default unchecked", function( assert ) {
var checkbox = $( "#checkbox-option-icon" );
2016-04-03 14:53:34 +00:00
assert.expect( 3 );
checkbox.checkboxradio();
assertIcon( checkbox, false, assert );
2015-09-11 14:48:20 +00:00
} );
2015-10-27 20:05:52 +00:00
2016-04-03 14:53:34 +00:00
QUnit.test( "icon - default checked", function( assert ) {
var checkbox = $( "#checkbox-option-icon" ).attr( "checked", true );
2016-04-03 14:53:34 +00:00
assert.expect( 2 );
checkbox.checkboxradio();
assertIcon( checkbox, "check ui-state-highlight", assert );
} );
2015-10-27 20:05:52 +00:00
2016-04-03 14:53:34 +00:00
QUnit.test( "icon", function( assert ) {
var checkbox = $( "#checkbox-option-icon" );
2016-04-03 14:53:34 +00:00
assert.expect( 9 );
checkbox.prop( "checked", true );
checkbox.checkboxradio();
assertIcon( checkbox, "check ui-state-highlight", assert );
checkbox.checkboxradio( "option", "icon", false );
2016-04-03 14:53:34 +00:00
assertNoIcon( assert, checkbox );
checkbox.checkboxradio( "option", "icon", true );
assertIcon( checkbox, "check ui-state-highlight", assert );
checkbox.checkboxradio( "option", "icon", false );
2016-04-03 14:53:34 +00:00
assertNoIcon( assert, checkbox );
checkbox.checkboxradio( "option", "icon", true );
checkbox.prop( "checked", false ).checkboxradio( "refresh" );
assertIcon( checkbox, false, assert );
2015-09-11 14:48:20 +00:00
} );
2016-04-03 14:53:34 +00:00
QUnit.test( "label - default", function( assert ) {
var checkbox = $( "#checkbox-option-label" ),
widget;
2016-04-03 14:53:34 +00:00
assert.expect( 2 );
checkbox.checkboxradio();
widget = checkbox.checkboxradio( "widget" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( checkbox.checkboxradio( "option", "label" ),
"checkbox label", "When no value passed on create text from dom is used for option" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( $.trim( widget.text() ),
"checkbox label", "When no value passed on create text from dom is used in dom" );
2015-09-11 14:48:20 +00:00
} );
2015-10-27 20:05:52 +00:00
2016-04-03 14:53:34 +00:00
QUnit.test( "label - explicit value", function( assert ) {
assert.expect( 5 );
2015-09-11 14:48:20 +00:00
var checkbox = $( "#checkbox-option-label" ).checkboxradio( {
label: "foo"
2015-09-11 14:48:20 +00:00
} ),
widget = checkbox.checkboxradio( "widget" ),
icon = widget.find( ".ui-icon" ),
iconSpace = widget.find( ".ui-checkboxradio-icon-space" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( checkbox.checkboxradio( "option", "label" ),
"foo", "When value is passed on create value is used for option" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( $.trim( widget.text() ),
"foo", "When value is passed on create value is used in dom" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( icon.length, 1,
"Icon is preserved when label is set on init when wrapped in label" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( iconSpace.length, 1,
"Icon space is preserved when label is set on init when wrapped in label" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( $( "#checkbox-option-label" ).length, 1,
"Element is preserved when label is set on init when wrapped in label" );
2015-09-11 14:48:20 +00:00
} );
2016-04-03 14:53:34 +00:00
QUnit.test( "label - explicit null value", function( assert ) {
var checkbox = $( "#checkbox-option-label" ),
widget;
2016-04-03 14:53:34 +00:00
assert.expect( 2 );
2015-10-27 20:05:52 +00:00
// The default null is a special value which means to check the DOM.
// We need to make sure that the option never return null.
// It should always be true or false after initialization.
2015-09-11 14:48:20 +00:00
checkbox.checkboxradio( {
label: null
2015-09-11 14:48:20 +00:00
} );
widget = checkbox.checkboxradio( "widget" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( checkbox.checkboxradio( "option", "label" ),
"checkbox label", "When null is passed on create text from dom is used for option" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( $.trim( widget.text() ),
"checkbox label", "When null is passed on create text from dom is used in dom" );
2015-09-11 14:48:20 +00:00
} );
2016-04-03 14:53:34 +00:00
QUnit.test( "label", function( assert ) {
assert.expect( 4 );
2015-10-27 20:05:52 +00:00
var checkbox = $( "#checkbox-option-label" ),
widget;
checkbox.checkboxradio();
widget = checkbox.checkboxradio( "widget" );
checkbox.checkboxradio( "option", "label", "bar" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( checkbox.checkboxradio( "option", "label" ),
"bar", "When value is passed value is used for option" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( $.trim( widget.text() ),
"bar", "When value is passed value is used in dom" );
checkbox.checkboxradio( "option", "label", null );
2016-04-03 14:53:34 +00:00
assert.strictEqual( checkbox.checkboxradio( "option", "label" ),
"bar", "When null is passed text from dom is used for option" );
2016-04-03 14:53:34 +00:00
assert.strictEqual( $.trim( widget.text() ),
"bar", "When null is passed text from dom is used in dom" );
2015-09-11 14:48:20 +00:00
} );
} );