widget.html revision 4de1c70b905d1ec094efa1406a5264e29ea112c9
<html>
<head>
<title>Widget Test Suite</title>
#console .yui3-console-entry {
padding:2px;
margin:0px;
min-height:0;
}
#console .yui3-console-entry-fail .yui3-console-entry-cat {
background-color:red;
}
#console .yui3-console-entry-pass .yui3-console-entry-cat {
background-color:green;
}
#console .yui3-console-entry-perf .yui3-console-entry-cat {
background-color:blue;
}
#console {
position:static;
}
html, body {
height:100%;
}
/** Extended Core Tests Need This. Custom CSS **/
.yui3-mywidget-hidden {
display:none;
}
/** Custom Widget Tests Need This. Custom CSS **/
.yui3-mycustomwidget-hidden {
visibility:hidden;
}
</style>
</head>
<body class="yui3-skin-sam">
<p><input type="button" value="Run Tests" id="btnRun" disabled=true></p>
<div id="testbed" class="yui3-skin-foo"></div>
<div id="widgetRenderContainer" style="height:300px;width:300px"></div>
<div id="customWidgetRenderContainer"></div>
<script>
YUI({
useBrowserConsole:false,
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
}).use('test', 'widget', 'node-event-simulate', 'console', function (Y) {
// Extended Core Tests
function MyWidget() {
MyWidget.superclass.constructor.apply(this, arguments);
}
MyWidget.NAME = "myWidget";
// Single Box Tests
function MySingleBoxWidget() {
MySingleBoxWidget.superclass.constructor.apply(this, arguments);
};
MySingleBoxWidget.NAME = "mySingleBoxWidget";
CONTENT_TEMPLATE:null
});
var suite = new Y.Test.Suite("Widget Tests");
var coreTests = {
name : "Core",
createWidget: function(cfg) {
return new Y.Widget(cfg);
},
"testInstantiation" : function() {
var w = this.createWidget();
Y.Assert.isTrue(w instanceof Y.Widget);
// Basic API
w.destroy();
},
"testInitState" : function() {
var w = this.createWidget();
Y.Assert.areEqual("div", w.get("boundingBox").get("tagName").toLowerCase());
Y.Assert.areEqual("div", w.get("contentBox").get("tagName").toLowerCase());
Y.Assert.isFalse(w.get("disabled"), "disabled should be false");
Y.Assert.isFalse(w.get("focused"), "focused should be false");
Y.Assert.areSame("", w.get("height"), "height should be empty string");
Y.Assert.areSame("", w.get("width"), "width should be empty string");
Y.Assert.isString(w.get("id"), "id should be a string");
Y.Assert.isTrue(w.get("initialized"), "initialized should be true");
Y.Assert.isFalse(w.get("destroyed"), "destroyed should be false");
Y.Assert.isFalse(w.get("rendered"), "rendered should be false");
Y.Assert.isTrue(w.get("visible"), "visible should be true");
Y.Assert.isNull(w.get("tabIndex"), "tabIndex should be null");
w.destroy();
},
"testNonRenderedStateUpdate" : function() {
var w = this.createWidget({
// WRITE ONCE
id: "foobar",
});
w.set("disabled", true);
w.set("height", 100);
w.set("width", 200);
w.set("visible", false);
w.set("tabIndex", 5);
Y.Assert.areEqual("span", w.get("boundingBox").get("tagName").toLowerCase());
Y.Assert.areEqual("span", w.get("contentBox").get("tagName").toLowerCase());
Y.Assert.areEqual("bb", w.get("boundingBox").get("id"));
Y.Assert.areEqual("cb", w.get("contentBox").get("id"));
Y.Assert.isTrue(w.get("disabled"), "disabled should be true");
Y.Assert.isFalse(w.get("focused"), "focused should be false"); // focused is READONLY
Y.Assert.areEqual("100", w.get("height"), "height should be 100px");
Y.Assert.areEqual("200", w.get("width"), "width should be 200px");
Y.Assert.areEqual("foobar", w.get("id"), "id should be foobar");
Y.Assert.isFalse(w.get("visible"), "visible should be false");
Y.Assert.areEqual(5, w.get("tabIndex"), "tabIndex should be 5");
w.destroy();
},
"testValidationReadonlyWriteonce" : function() {
var w = this.createWidget();
// READONLY
w.set("focused", true);
w.set("rendered", true);
// WRITE ONCE
w.set("render", true);
// INVALID
w.set("tabIndex", "foo");
// State should be the same as the initial state
Y.Assert.areEqual("div", w.get("boundingBox").get("tagName").toLowerCase());
Y.Assert.areEqual("div", w.get("contentBox").get("tagName").toLowerCase());
Y.Assert.isFalse(w.get("disabled"), "disabled should be false");
Y.Assert.isFalse(w.get("focused"), "focused should be false");
Y.Assert.areSame("", w.get("height"), "height should be empty string");
Y.Assert.areSame("", w.get("width"), "width should be empty string");
Y.Assert.isString(w.get("id"), "id should be a string");
Y.Assert.isTrue(w.get("initialized"), "initialized should be true");
Y.Assert.isFalse(w.get("destroyed"), "destroyed should be false");
Y.Assert.isFalse(w.get("rendered"), "rendered should be false");
Y.Assert.isTrue(w.get("visible"), "visible should be true");
Y.Assert.isNull(w.get("tabIndex"), "tabIndex should be null");
w.destroy();
},
"testStaticClassNameGeneration" : function() {
Y.Assert.areEqual("yui3-widget-foo-bar", Y.Widget.getClassName("foo", "bar"));
},
"testInstanceClassNameGeneration" : function() {
var w = this.createWidget();
Y.Assert.areEqual("yui3-widget-foo-bar", w.getClassName("foo", "bar"));
w.destroy();
},
"testCssPrefix" : function() {
var w = this.createWidget();
Y.Assert.areEqual("yui3-widget", w._cssPrefix, "Unexpected Prefix");
w.destroy();
},
"testRender" : function() {
var w = this.createWidget({
id: "widgetRender"
});
w.render();
var bbFromDom = Y.Node.one("#widgetRender");
Y.Assert.isTrue(w.get("boundingBox").compareTo(bbFromDom), "boundingBox not found in DOM");
Y.Assert.isTrue(bbFromDom.get("firstChild").compareTo(w.get("contentBox")), "contentBox not first child of boundingBox");
Y.Assert.isTrue(bbFromDom.compareTo(Y.Node.one("body").get("firstChild")), "widget not inserted to body");
Y.Assert.isTrue(w.get("rendered"), "Rendered flag not set");
w.destroy();
},
"testRenderTo" : function() {
var w = this.createWidget({
id: "widgetRender"
});
w.render("#widgetRenderContainer");
var bbFromDom = Y.Node.one("#widgetRender");
Y.Assert.isTrue(bbFromDom.get("parentNode").compareTo(Y.Node.one("#widgetRenderContainer")), "widget not rendered to container passed to render()");
Y.Assert.isTrue(w.get("boundingBox").compareTo(bbFromDom), "boundingBox not found in DOM");
Y.Assert.isTrue(bbFromDom.get("firstChild").compareTo(w.get("contentBox")), "contentBox not first child of boundingBox");
Y.Assert.isTrue(w.get("rendered"), "Rendered flag not set");
w.destroy();
},
"testBaseClassNames" : function() {
var w = this.createWidget();
w.render();
var bb = w.get("boundingBox");
var cb = w.get("contentBox");
Y.Assert.isTrue(bb.hasClass("yui3-widget"), "bb missing yui3-widget marker");
Y.Assert.isTrue(cb.hasClass("yui3-widget-content"), "cb missing yui3-widget-content marker");
w.destroy();
},
"testHeight" : function() {
var w = this.createWidget({
height:100,
render:"#widgetRenderContainer"
});
var bb = w.get("boundingBox"),
cb = w.get("contentBox");
Y.Assert.areEqual(100, bb.get("offsetHeight"), "100 height not set correctly in DOM");
Y.Assert.areEqual(100, cb.get("offsetHeight"), "100 height not set correctly in DOM");
w.set("height", "200px");
Y.Assert.areEqual(200, bb.get("offsetHeight"), "200px height not set correctly in DOM");
Y.Assert.areEqual(200, cb.get("offsetHeight"), "200px height not set correctly in DOM");
w.set("height", "50%");
Y.Assert.areEqual(150, bb.get("offsetHeight"), "% height not set correctly in DOM");
Y.Assert.areEqual(150, cb.get("offsetHeight"), "% height not set correctly in DOM");
w.destroy();
},
"testWidth" : function() {
var w = this.createWidget({
width:100,
render:"#widgetRenderContainer"
});
var bb = w.get("boundingBox"),
cb = w.get("contentBox");
Y.Assert.areEqual(100, bb.get("offsetWidth"), "100 width not set correctly in DOM");
Y.Assert.areEqual(100, cb.get("offsetWidth"), "100 width not set correctly in DOM");
w.set("width", "200px");
Y.Assert.areEqual(200, bb.get("offsetWidth"), "200px width not set correctly in DOM");
Y.Assert.areEqual(200, cb.get("offsetWidth"), "200px width not set correctly in DOM");
w.set("width", "50%");
Y.Assert.areEqual(150, bb.get("offsetWidth"), "% width not set correctly in DOM");
Y.Assert.areEqual(150, cb.get("offsetWidth"), "% width not set correctly in DOM");
w.destroy();
},
"testDisabled" : function() {
var w = this.createWidget({render:true});
var bb = w.get("boundingBox");
var className = w._cssPrefix + "-disabled";
Y.Assert.isFalse(w.get("disabled"), "disabled should be false by default");
Y.Assert.isFalse(bb.hasClass(className), "bb should not have a disabled marker class");
w.set("disabled", true);
Y.Assert.isTrue(w.get("disabled"), "disabled should be true");
Y.Assert.isTrue(bb.hasClass(className), "bb should have a disabled marker");
w.set("disabled", false);
Y.Assert.isFalse(w.get("disabled"), "disabled should be false");
Y.Assert.isFalse(bb.hasClass(className), "bb should not have a disabled marker class");
w.destroy();
},
"testDisableEnable" : function() {
var w = this.createWidget({render:true});
var bb = w.get("boundingBox");
var className = w._cssPrefix + "-disabled";
Y.Assert.isFalse(w.get("disabled"), "disabled should be false by default");
Y.Assert.isFalse(bb.hasClass(className), "bb should not have a disabled marker class");
w.disable();
Y.Assert.isTrue(w.get("disabled"), "disabled should be true");
Y.Assert.isTrue(bb.hasClass(className), "bb should have a disabled marker");
w.enable();
Y.Assert.isFalse(w.get("disabled"), "disabled should be false");
Y.Assert.isFalse(bb.hasClass(className), "bb should not have a disabled marker class");
w.destroy();
},
"testFocusBlur" : function() {
// The focused attribute is read-only, so we test through the public api
var w = this.createWidget({render:true});
var bb = w.get("boundingBox");
var className = w._cssPrefix + "-focused";
// TODO ENH REQUEST: This doesn't seem right. We should focus on render.
Y.Assert.isFalse(w.get("focused"), "focused should be false by default");
Y.Assert.isFalse(bb.hasClass(className), "bb should not have a disabled marker class");
w.focus();
Y.Assert.isTrue(w.get("focused"), "focused should be true");
Y.Assert.isTrue(bb.hasClass(className), "bb should have a focused marker");
w.blur();
Y.Assert.isFalse(w.get("focused"), "focused should be false");
Y.Assert.isFalse(bb.hasClass(className), "bb should not have a focused marker class");
w.destroy();
},
"testTabIndex" : function() {
var w = this.createWidget({render:true});
var bb = w.get("boundingBox");
Y.Assert.isNull(w.get("tabIndex"), "tabIndex should be null by default");
Y.Assert.isTrue(bb.get("tabIndex") <= 0, "tabIndex should not be set by default"); // default varies across browsers 0 or -1
w.destroy();
},
"testId" : function() {
var w = this.createWidget({
id: "testId",
render:true
});
// ID is writeOnce. Cannot reset ID
w.destroy();
},
"testVisible" : function() {
var className = w._cssPrefix + "-hidden";
Y.Assert.areEqual("none", bb.getStyle("display"), "Default CSS should hide widget using display:none");
w.destroy();
},
"testShowHide" : function() {
var className = w._cssPrefix + "-hidden";
w.hide();
Y.Assert.areEqual("none", bb.getStyle("display"), "Default CSS should hide widget using display:none");
w.show();
w.destroy();
},
"testBoundingBox" : function() {
container.append("<div id='bbTest'></div>");
var w = this.createWidget({
boundingBox: "#bbTest",
render:true
});
Y.Assert.isTrue(w.get("boundingBox").get("parentNode").compareTo(container), "boundingBox moved from it's place in the DOM");
w.destroy();
},
"testContentBox" : function() {
container.append("<div id='cbTest'></div>");
var w = this.createWidget({
contentBox: "#cbTest",
render:true
});
Y.Assert.isTrue(w.get("boundingBox").get("parentNode").compareTo(container), "contentBox moved from it's place in the DOM");
w.destroy();
},
"testBoundingBoxContentBox" : function() {
container.append("<div id='bbTest'></div>");
bb.append("<div id='cbTest'></div>");
var w = this.createWidget({
boundingBox: "#bbTest",
contentBox: "#cbTest",
render:true
});
Y.Assert.isTrue(w.get("boundingBox").get("parentNode").compareTo(container), "bb moved from it's place in the DOM");
w.destroy();
},
"testBoundingBoxRenderTo" : function() {
// NOTE: PE content sits in body, not container
var w = this.createWidget({
boundingBox: "#bbTest",
render:container
});
Y.Assert.isTrue(w.get("boundingBox").get("parentNode").compareTo(container), "boundingBox moved from it's place in the DOM");
w.destroy();
},
"testContentBoxRenderTo" : function() {
var w = this.createWidget({
contentBox: "#cbTest",
render:container
});
Y.Assert.isTrue(w.get("boundingBox").get("parentNode").compareTo(container), "contentBox moved from it's place in the DOM");
w.destroy();
},
"testBoundingBoxContentBoxRenderTo" : function() {
bb.append("<div id='cbTest'></div>");
var w = this.createWidget({
boundingBox: "#bbTest",
contentBox: "#cbTest",
render:container
});
Y.Assert.isTrue(w.get("boundingBox").get("parentNode").compareTo(container), "bb moved from it's place in the DOM");
w.destroy();
},
"testSrcNode" : function() {
container.append("<div id='srcNode'><div id='foo'></div></div>");
var w = this.createWidget({
srcNode: "#srcNode",
render:true
});
Y.Assert.isTrue(w.get("srcNode").compareTo(sn), "srcNode should still be accessible from srcNode attribute");
Y.Assert.isTrue(w.get("boundingBox").get("parentNode").compareTo(container), "srcNode moved from it's place in the DOM");
w.destroy(true);
},
"testGetByNode" : function() {
var o = this.createWidget({
id:"outer"
});
o.render();
ocb.append("<div><div id='outerContent'>Outer</div></div>");
var i = this.createWidget({
id:"inner"
});
i.render();
icb.append("<div><div id='innerContent'>Inner</div></div>");
Y.Assert.areSame(o, Y.Widget.getByNode(o.get("contentBox")), "Couldn't find outer widget from outer contentBox");
Y.Assert.areSame(o, Y.Widget.getByNode(o.get("boundingBox")), "Couldn't find outer widget from outer boundingBox");
Y.Assert.areSame(i, Y.Widget.getByNode(i.get("contentBox")), "Couldn't find inner widget from inner contentBox");
Y.Assert.areSame(i, Y.Widget.getByNode(i.get("boundingBox")), "Couldn't find inner widget from inner boundingBox");
i.destroy(true);
o.destroy(true);
},
"testStrings" : function() {
var w = this.createWidget();
w.set("strings", {
stringOne: "one",
stringTwo: "two"
});
// Strings get merged, not overwritten
w.set("strings", {
stringThree: "three",
stringFour: "four"
});
w.destroy();
},
"testLoadingMarker" : function() {
var w = this.createWidget({
srcNode:"#srcNode"
});
Y.Assert.isTrue(n.hasClass("yui3-widget-loading"), "yui3-widget-loading should not have been removed");
w.render();
w.destroy();
}
};
Y.mix(extendedCoreTests, {
name: "Extended Core",
createWidget : function(cfg) {
return (new MyWidget(cfg));
},
"testLoadingMarker" : function() {
var w = this.createWidget({
srcNode:"#srcNode"
});
Y.Assert.isTrue(n.hasClass("yui3-mywidget-loading"), "yui3-mywidget-loading should not have been removed");
w.render();
w.destroy();
},
"testBaseClassNames" : function() {
var myWidget = this.createWidget();
Y.Assert.isFalse(cb.hasClass("yui3-widget-content"), "cb shouldn't have yui3-widget-content marker");
},
"testCssPrefix" : function() {
var w = this.createWidget();
w.destroy();
},
"testInstanceClassNameGeneration" : function() {
var w = this.createWidget();
w.destroy();
}
}, true);
// Lifecycle Widget Tests
function MyLifecycleWidget(cfg) {
this.__test = cfg.__test;
this.__test.push("preconstructor");
this.__test.push("postconstructor");
}
renderUI: function() {
this.__test.push("renderUI");
},
bindUI: function() {
this.__test.push("bindUI");
},
syncUI : function() {
this.__test.push("syncUI");
},
initializer: function() {
this.__test.push("initializer");
// To trigger lazyAdd of attribute
},
destructor: function() {
this.__test.push("destructor");
}
}, {
ATTRS : {
"lazyAttr" : {
value: "lazyAttrValue",
setter: function(value) {
this.__test.push("lazySetter");
return value;
}
},
"nonLazyAttr" : {
value: "nonLazyAttrValue",
setter: function(value) {
this.__test.push("nonLazySetter");
return value;
},
lazyAdd: false
}
}
});
MyLifecycleWidget.NAME = "myLifecycleWidget";
name : "Widget Lifecycle",
"testNonRenderPhases" : function() {
var expected = [
"preconstructor",
"onInit",
"nonLazySetter",
"initializer",
"lazySetter",
"afterInit",
"postconstructor",
"onDestroy",
"destructor",
"afterDestroy"
];
w = new MyLifecycleWidget({
on: {
init: function() {
this.__test.push("onInit");
},
destroy: function() {
this.__test.push("onDestroy");
},
render: function() {
this.__test.push("onRender");
}
},
after: {
init: function() {
this.__test.push("afterInit");
},
destroy: function() {
this.__test.push("afterDestroy");
},
render: function() {
this.__test.push("afterRender");
}
},
__test:[]
});
w.destroy();
},
"testAllPhases" : function() {
var expected = [
"preconstructor",
"onInit",
"nonLazySetter",
"initializer",
"lazySetter",
"afterInit",
"postconstructor",
"onRender",
"renderUI",
"bindUI",
"syncUI",
"afterRender",
"onDestroy",
"destructor",
"afterDestroy"
];
w = new MyLifecycleWidget({
on: {
init: function() {
this.__test.push("onInit");
},
destroy: function() {
this.__test.push("onDestroy");
},
render: function() {
this.__test.push("onRender");
}
},
after: {
init: function() {
this.__test.push("afterInit");
},
destroy: function() {
this.__test.push("afterDestroy");
},
render: function() {
this.__test.push("afterRender");
}
},
__test:[]
});
w.render();
w.destroy();
}
}));
// Custom Widget Tests
function MyCustomWidget() {
}
DEF_PARENT_NODE: "#customWidgetRenderContainer",
BOUNDING_TEMPLATE: "<p>",
CONTENT_TEMPLATE: "<ul>"
}, {
ATTRS: {
// New attr
custAttr: {
value:"custAttrValue"
},
// Modify attr
visible: {
value:false
},
// Modify attr
strings: {
valueFn: function() {
return {
custStringOne:"one",
custStringTwo:"two"
}
}
},
label : {
value:"Default Label"
},
listNodes : {
value: null
},
titleNode: {
valueFn: function() {
}
}
},
HTML_PARSER : {
label : function(srcNode) {
// HTML_PARSER is called during widget initializer, when sub-class attrs aren't yet configured
// Moving all attribute set up to before all initializers, should allow us to do this.
var labelHolder = srcNode.one("> h1");
if (labelHolder) {
return labelHolder.get("text");
}
},
listNodes: ["> ul > li"],
titleNode: "> h1"
}
});
MyCustomWidget.NAME = "myCustomWidget";
suite.add(new Y.Test.Case({
name : "Custom Widget",
"testDefaultParentNode" : function() {
var w = new MyCustomWidget({
id: "customWidget"
});
w.render();
var bbFromDom = Y.Node.one("#customWidget");
Y.Assert.isTrue(bbFromDom.get("parentNode").compareTo(Y.Node.one("#customWidgetRenderContainer")), "Custom widget not rendered to container passed to render()");
Y.Assert.isTrue(w.get("boundingBox").compareTo(bbFromDom), "boundingBox not found in DOM");
Y.Assert.isTrue(bbFromDom.get("firstChild").compareTo(w.get("contentBox")), "contentBox not first child of boundingBox");
Y.Assert.isTrue(w.get("rendered"), "Rendered flag not set");
w.destroy();
},
"testDefaultParentNodeUsingRenderAttr" : function() {
var w = new MyCustomWidget({
id: "customWidget",
render: true
});
var bbFromDom = Y.Node.one("#customWidget");
Y.Assert.isTrue(bbFromDom.get("parentNode").compareTo(Y.Node.one("#customWidgetRenderContainer")), "Custom widget not rendered to container passed to render()");
Y.Assert.isTrue(w.get("boundingBox").compareTo(bbFromDom), "boundingBox not found in DOM");
Y.Assert.isTrue(bbFromDom.get("firstChild").compareTo(w.get("contentBox")), "contentBox not first child of boundingBox");
Y.Assert.isTrue(w.get("rendered"), "Rendered flag not set");
w.destroy();
},
"testBoundingBoxTemplate" : function() {
var w = new MyCustomWidget({
render:true
});
var bb = w.get("boundingBox");
Y.Assert.areEqual("p", bb.get("tagName").toLowerCase());
w.destroy();
},
"testContentBoxTemplate" : function() {
var w = new MyCustomWidget({
render:true
});
var bb = w.get("contentBox");
Y.Assert.areEqual("ul", bb.get("tagName").toLowerCase());
w.destroy();
},
"testModifyAttr-Visible" : function() {
var w = new MyCustomWidget();
Y.Assert.isFalse(w.get("visible"), "Custom widget should be hidden by default");
w.render();
var bb = w.get("boundingBox");
Y.Assert.isTrue(bb.hasClass("yui3-mycustomwidget-hidden"), "custom bb should have a hidden marker class");
Y.Assert.areEqual("hidden", bb.getStyle("visibility"), "custom widget should not be visibility:hidden");
w.destroy();
},
"testModifyAttr-Strings" : function() {
var w = new MyCustomWidget();
w.render();
var expected = {
custStringOne:"one",
custStringTwo:"two"
}
var actual = w.get("strings");
Y.ObjectAssert.areEqual(expected, actual, "Unexpected strings");
Y.ObjectAssert.areEqual(actual, expected, "Unexpected strings");
w.destroy();
},
"testNewAttr" : function() {
var w = new MyCustomWidget();
Y.Assert.areEqual("custAttrValue", w.get("custAttr"), "New attribute not added");
w.destroy();
},
"testHTMLParser" : function() {
// HTML to Parse
var markup = Y.Node.create('<div id="customWidgetContent"><h1>My Label</h1><ul><li>Item1</li><li>Item2</li></ul></div>');
Y.Node.one("body").append(markup);
var w = new MyCustomWidget({
srcNode: "#customWidgetContent"
});
Y.Assert.areEqual("My Label", w.get("label"), "label not picked up from markup");
Y.Assert.areEqual("h1", w.get("titleNode").get("tagName").toLowerCase(), "titleNode not picked up from markup");
Y.Assert.areEqual(2, w.get("listNodes").size(), "listNodes count does not match markup");
Y.Assert.areSame("li", w.get("listNodes").item(0).get("tagName").toLowerCase(), "listNode 0 not picked up from markup");
Y.Assert.areSame("li", w.get("listNodes").item(1).get("tagName").toLowerCase(), "listNode 1 not picked up from markup");
Y.Assert.areSame("Item1", w.get("listNodes").item(0).get("text"), "listNode 0 not picked up from markup");
Y.Assert.areSame("Item2", w.get("listNodes").item(1).get("text"), "listNode 1 not picked up from markup");
w.destroy();
}
}));
suite.add(new Y.Test.Case({
name : "Events"
}));
suite.add(new Y.Test.Case({
name : "getSkinName",
"getSkinName should return null if not rendered" : function () {
var w = new Y.Widget();
Y.Assert.isNull( w.getSkinName() );
},
"getSkinName should return name from BB if available": function () {
cb = bb.one( 'div' ),
w = new Y.Widget( {
boundingBox: bb,
contentBox: cb
} );
Y.Assert.areEqual( "foo", w.getSkinName() );
},
"getSkinName should return name from body or null": function () {
var w = new Y.Widget().render(),
body = Y.one( 'body' );
Y.Assert.areEqual( "sam", w.getSkinName() );
body.removeClass( "yui3-skin-sam" );
Y.Assert.isNull( w.getSkinName() );
body.addClass( "yui3-skin-sam" );
},
"getSkinName should return name from ancestor if both ancestor and body are classed": function () {
var w = new Y.Widget().render( '#testbed' ),
body = Y.one( 'body' );
body.addClass( "yui3-skin-sam" );
Y.Assert.areEqual( "foo", w.getSkinName() );
}
}));
suite.add(new Y.Test.Case({
name:"destroy",
testRenderedDestroy: function() {
var w = new Y.Widget({id:"foo"}).render();
try {
w.destroy();
Y.Assert.isNull(Y.Node.one("#foo"), "Bounding box still in DOM");
} catch(e) {
Y.Assert.fail("w.destroy() on a rendered widget threw an exception" + e);
}
},
testRenderedDeepDestroy: function() {
var w = new Y.Widget({id:"foo"}).render();
w.get("contentBox").appendChild(nref);
try {
w.destroy(true);
Y.Assert.isNull(Y.Node.one("#foo"), "Bounding box still in DOM");
Y.Assert.isNull(Y.Node.one("#deep"), "Deep content box still in DOM");
Y.Assert.isNull(Y.Node.getDOMNode(nref), "Deep content still in Node cache");
} catch(e) {
Y.Assert.fail("w.destroy(true) on a rendered widget threw an exception" + e);
}
},
testUnrenderedDestroy: function() {
var w = new Y.Widget();
try {
w.destroy();
} catch(e) {
Y.Assert.fail("w.destroy() on an unrendered widget threw an exception" + e);
}
},
testSingleBoxDestroy: function() {
var w = new MySingleBoxWidget({
id:"foo"
});
w.render();
try {
w.destroy();
Y.Assert.isNull(Y.Node.one("#foo"), "Bounding box still in DOM");
} catch(e) {
Y.Assert.fail("w.destroy() on a single box widget threw an exception" + e);
}
},
testSingleBoxDeepDestroy: function() {
var w = new MySingleBoxWidget({
id:"foo"
});
w.render();
w.get("contentBox").appendChild(nref);
try {
w.destroy(true);
Y.Assert.isNull(Y.Node.one("#foo"), "Bounding box still in DOM");
Y.Assert.isNull(Y.Node.one("#deep_single"), "Deep content box still in DOM");
Y.Assert.isNull(Y.Node.getDOMNode(nref), "Deep content still in Node cache");
} catch(e) {
Y.Assert.fail("w.destroy(true) on a single box widget threw an exception" + e);
}
}
}));
suite.add(new Y.Test.Case({
name:"UI Events",
testSingleSimple: function() {
var w, h, cb,
actualEvents = [],
expectedEvents = ["widget:click"];
w = new Y.Widget();
cb = w.get("contentBox");
h = function(e) { actualEvents.push(e.type); };
w.on("click", h);
w.render();
cb.one(".et").simulate("click");
Y.ArrayAssert.itemsAreEqual(expectedEvents, actualEvents);
w.destroy();
},
testSingleComplex: function() {
var w, h, cb
actualEvents = [],
expectedEvents = ["widget:render",
"widget:renderedChange",
"widget:render",
"widget:mousedown",
"widget:mouseup",
"widget:mouseup",
"widget:mouseup",
"widget:mouseup",
"widget:mouseup",
"widget:mouseup",
"widget:click"];
w = new Y.Widget();
cb = w.get("contentBox");
h = function(e) { actualEvents.push(e.type); };
w.on({
"click": h,
"render": h,
"renderedChange": h
});
w.on("widget:mouseup", h);
w.on("foo|widget:mouseup", h);
w.on("mouseup", h);
w.after("widget:mouseup", h);
w.after("foo|widget:mouseup", h);
w.after("mouseup", h);
w.after({
"mousedown" : h,
"render" : h
});
w.render();
cb.one(".et").simulate("mousedown");
cb.one(".et").simulate("mouseup");
cb.one(".et").simulate("click");
Y.ArrayAssert.itemsAreEqual(expectedEvents, actualEvents);
w.destroy();
},
testNested: function() {
var outer = new Y.Widget();
var inner = new Y.Widget();
var ocb = outer.get('contentBox');
var icb = inner.get('contentBox');
var expectedEvents = ["outerClick", "innerClick", "outerClick"];
var actualEvents = [];
outer.render();
inner.render(ocb);
inner.after('click', function() {actualEvents.push("innerClick");});
outer.after('click', function() {actualEvents.push("outerClick");});
// Only outer
ocb.one(".oet").simulate("click");
// One Inner, One Outer
ocb.one(".iet").simulate("click");
Y.ArrayAssert.itemsAreEqual(expectedEvents, actualEvents);
},
testMultipleInstances : function() {
var actualEvents = [],
expectedEvents = ["clickOuter", "clickInner", "clickOuter"],
w1,
w2;
YUI().use('widget', function (Y) {
w1 = new Y.Widget({render:true});
w1.on('click', function (e) {
actualEvents.push("clickOuter");
});
YUI().use('widget', function (Y1) {
w2 = new Y1.Widget({render:".w2-container"});
w2.on('click', function (e) {
actualEvents.push("clickInner");
});
});
});
Y.Node.one(".miouter").simulate("click"); // only outer, once.
Y.Node.one(".miinner").simulate("click"); // inner, bubbled to outer (once each, without JS errors)
Y.ArrayAssert.itemsAreEqual(expectedEvents, actualEvents);
w1.destroy();
w2.destroy();
}
}));
suite.add(new Y.Test.Case({
name:"clone",
testWidgetClone : function() {
var a = new Y.Widget();
var b = new Y.Widget();
var c = new Y.Widget();
var a1 = Y.clone(a);
var a2 = Y.clone(a1);
var a3 = Y.clone(a2);
Y.Assert.isTrue(a instanceof Y.Widget);
Y.Assert.isTrue(a1 instanceof Y.Widget);
Y.Assert.isTrue(a2 instanceof Y.Widget);
Y.Assert.isTrue(a3 instanceof Y.Widget);
var b1 = Y.clone(b);
var b2 = Y.clone(b1);
var b3 = Y.clone(b2);
Y.Assert.isTrue(b instanceof Y.Widget);
Y.Assert.isTrue(b1 instanceof Y.Widget);
Y.Assert.isTrue(b2 instanceof Y.Widget);
Y.Assert.isTrue(b3 instanceof Y.Widget);
var c1 = Y.clone(c);
var c2 = Y.clone(c1);
var c3 = Y.clone(c2);
Y.Assert.isTrue(c instanceof Y.Widget);
Y.Assert.isTrue(c1 instanceof Y.Widget);
Y.Assert.isTrue(c2 instanceof Y.Widget);
Y.Assert.isTrue(c3 instanceof Y.Widget);
},
testWidgetHashClone : function() {
// When Widget's are properties of an object it seems to break apart
// something not passed to the recursive call maybe?
var a = new Y.Widget();
var b = new Y.Widget();
var c = new Y.Widget();
var o = {
a : a,
b : b,
c : c
};
var o1 = Y.clone(o);
var o2 = Y.clone(o1);
var o3 = Y.clone(o2);
},
testBaseClone : function() {
var a = new Y.Base();
var b = new Y.Base();
var c = new Y.Base();
// Base works fine
var a1 = Y.clone(a);
var a2 = Y.clone(a1);
var a3 = Y.clone(a2);
Y.Assert.isTrue(a instanceof Y.Base);
Y.Assert.isTrue(a1 instanceof Y.Base);
Y.Assert.isTrue(a2 instanceof Y.Base);
Y.Assert.isTrue(a3 instanceof Y.Base);
var b1 = Y.clone(b);
var b2 = Y.clone(b1);
var b3 = Y.clone(b2);
Y.Assert.isTrue(b instanceof Y.Base);
Y.Assert.isTrue(b1 instanceof Y.Base);
Y.Assert.isTrue(b2 instanceof Y.Base);
Y.Assert.isTrue(b3 instanceof Y.Base);
var c1 = Y.clone(c);
var c2 = Y.clone(c1);
var c3 = Y.clone(c2);
Y.Assert.isTrue(c instanceof Y.Base);
Y.Assert.isTrue(c1 instanceof Y.Base);
Y.Assert.isTrue(c2 instanceof Y.Base);
Y.Assert.isTrue(c3 instanceof Y.Base);
},
testBaseHashClone : function() {
var a = new Y.Base();
var b = new Y.Base();
var c = new Y.Base();
var o = {
a : a,
b : b,
c : c
};
var o1 = Y.clone(o);
var o2 = Y.clone(o1);
var o3 = Y.clone(o2);
}
}));
Y.Test.Runner.setName("Widget Tests");
Y.Test.Runner.add(suite);
var console;
Y.one("#btnRun").set("disabled", false).on("click", function() {
if (!console) {
console = new Y.Console({
id:"console",
width:"100%",
height:"90%",
verbose : false,
printTimeout: 0,
newestOnTop : false,
entryTemplate: '<pre class="{entry_class} {cat_class} {src_class}">'+
'<span class="{entry_cat_class}">{label}</span>'+
'<span class="{entry_content_class}">{message}</span>'+
'</pre>'
}).render();
}
});
});
</script>
</body>
</html>