X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fattributes.js;h=06920762b7244539c45e376ea15ee5a905b20f44;hb=66975de2d249643779e2b3daad0457f7f5f92508;hp=a95b3f9c57daa7f23b8ffad87b25588b77781810;hpb=da51cd0e43d6d61e0d3d6c197cef1e658bad29bc;p=jquery.git diff --git a/test/unit/attributes.js b/test/unit/attributes.js index a95b3f9..0692076 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -5,8 +5,8 @@ var functionReturningObj = function(value) { return (function() { return value; test("attr(String)", function() { expect(28); - - // This one sometimes fails randomally ?! + + // This one sometimes fails randomly ?! equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' ); equals( jQuery('#text1').attr('value', "Test2").attr('defaultValue'), "Test", 'Check for defaultValue attribute' ); @@ -21,7 +21,8 @@ test("attr(String)", function() { equals( jQuery('#name').attr('name'), "name", 'Check for name attribute' ); equals( jQuery('#text1').attr('name'), "action", 'Check for name attribute' ); ok( jQuery('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' ); - ok( jQuery('#form').attr('action','newformaction').attr('action').indexOf("newformaction") >= 0, 'Check that action attribute was changed' ); + // Temporarily disabled. See: #4299 + // ok( jQuery('#form').attr('action','newformaction').attr('action').indexOf("newformaction") >= 0, 'Check that action attribute was changed' ); equals( jQuery('#text1').attr('maxlength'), '30', 'Check for maxlength attribute' ); equals( jQuery('#text1').attr('maxLength'), '30', 'Check for maxLength attribute' ); equals( jQuery('#area1').attr('maxLength'), '30', 'Check for maxLength attribute' ); @@ -54,6 +55,12 @@ test("attr(String)", function() { ok( $body.attr('foo') === undefined, 'Make sure the expando is preferred over the dom attribute, even if undefined' ); body.removeAttribute('foo'); // Cleanup + + var select = document.createElement("select"), optgroup = document.createElement("optgroup"), option = document.createElement("option"); + optgroup.appendChild( option ); + select.appendChild( optgroup ); + + equals( jQuery(option).attr("selected"), true, "Make sure that a single option is selected, even when in an optgroup." ); }); if ( !isLocal ) { @@ -70,7 +77,7 @@ if ( !isLocal ) { test("attr(String, Function)", function() { expect(2); - equals( jQuery('#text1').attr('value', function() { return this.id })[0].value, "text1", "Set value from id" ); + equals( jQuery('#text1').attr('value', function() { return this.id ;})[0].value, "text1", "Set value from id" ); equals( jQuery('#text1').attr('title', function(i) { return i }).attr('title'), "0", "Set value with an index"); }); @@ -81,8 +88,8 @@ test("attr(Hash)", function() { if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false; }); ok( pass, "Set Multiple Attributes" ); - equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" ); - equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2"); + equals( jQuery('#text1').attr({'value': function() { return this.id; }})[0].value, "text1", "Set attribute to computed value #1" ); + equals( jQuery('#text1').attr({'title': function(i) { return i; }}).attr('title'), "0", "Set attribute to computed value #2"); }); @@ -184,42 +191,30 @@ test("attr(String, Object)", function() { }); test("attr(jquery_method)", function(){ - expect(10); + expect(7); var $elem = jQuery("
"), elem = $elem[0]; // one at a time - $elem.attr('html', 'foo'); + $elem.attr({'html': 'foo'}, true); equals( elem.innerHTML, 'foo', 'attr(html)'); - $elem.attr('text', 'bar'); + $elem.attr({'text': 'bar'}, true); equals( elem.innerHTML, 'bar', 'attr(text)'); - $elem.attr('addClass', 'css'); - equals( elem.className, 'css', 'attr(addClass)'); - - $elem.attr('removeClass', 'css'); - equals( jQuery.trim(elem.className), '', 'attr(removeClass)'); - - $elem.attr('css', {color:'red'}); + $elem.attr({'css': {color:'red'}}, true); ok( /^(#ff0000|red)$/i.test(elem.style.color), 'attr(css)'); - $elem.attr('height', 10); + $elem.attr({'height': 10}, true); equals( elem.style.height, '10px', 'attr(height)'); - $elem.attr('each', function(){ - return function(){ - ok(true, 'attr(each)'); - }; - }); - // Multiple attributes $elem.attr({ width:10, css:{ paddingLeft:1, paddingRight:1 } - }); + }, true); equals( elem.style.width, '10px', 'attr({...})'); equals( elem.style.paddingLeft, '1px', 'attr({...})'); @@ -311,14 +306,14 @@ var testAddClass = function(valueObj) { var j = jQuery("#nonnodes").contents(); j.addClass( valueObj("asdf") ); ok( j.hasClass("asdf"), "Check node,textnode,comment for addClass" ); -} +}; test("addClass(String)", function() { - testAddClass(bareObj); + testAddClass(bareObj); }); test("addClass(Function)", function() { - testAddClass(functionReturningObj); + testAddClass(functionReturningObj); }); var testRemoveClass = function(valueObj) { @@ -355,11 +350,11 @@ var testRemoveClass = function(valueObj) { }; test("removeClass(String) - simple", function() { - testRemoveClass(bareObj); + testRemoveClass(bareObj); }); test("removeClass(Function) - simple", function() { - testRemoveClass(functionReturningObj); + testRemoveClass(functionReturningObj); }); var testToggleClass = function(valueObj) { @@ -415,11 +410,11 @@ var testToggleClass = function(valueObj) { }; test("toggleClass(String|boolean|undefined[, boolean])", function() { - testToggleClass(bareObj); + testToggleClass(bareObj); }); test("toggleClass(Function[, boolean])", function() { - testToggleClass(functionReturningObj); + testToggleClass(functionReturningObj); }); var testRemoveAttr = function(valueObj) { @@ -428,31 +423,45 @@ var testRemoveAttr = function(valueObj) { }; test("removeAttr(String)", function() { - testRemoveAttr(bareObj); + testRemoveAttr(bareObj); }); test("removeAttr(Function)", function() { - testRemoveAttr(functionReturningObj); + testRemoveAttr(functionReturningObj); }); test("addClass, removeClass, hasClass", function() { - expect(6); - + expect(14); + var jq = jQuery("

Hi

"), x = jq[0]; - + jq.addClass("hi"); equals( x.className, "hi", "Check single added class" ); - + jq.addClass("foo bar"); equals( x.className, "hi foo bar", "Check more added classes" ); - + jq.removeClass(); equals( x.className, "", "Remove all classes" ); - + jq.addClass("hi foo bar"); jq.removeClass("foo"); equals( x.className, "hi bar", "Check removal of one class" ); - + ok( jq.hasClass("hi"), "Check has1" ); ok( jq.hasClass("bar"), "Check has2" ); + + var jq = jQuery("

"); + ok( jq.hasClass("class1"), "Check hasClass with carriage return" ); + ok( jq.is(".class1"), "Check is with carriage return" ); + ok( jq.hasClass("class2"), "Check hasClass with tab" ); + ok( jq.is(".class2"), "Check is with tab" ); + ok( jq.hasClass("cla.ss3"), "Check hasClass with dot" ); + + jq.removeClass("class2"); + ok( jq.hasClass("class2")==false, "Check the class has been properly removed" ); + jq.removeClass("cla"); + ok( jq.hasClass("cla.ss3"), "Check the dotted class has not been removed" ); + jq.removeClass("cla.ss3"); + ok( jq.hasClass("cla.ss3")==false, "Check the dotted class has been removed" ); });