Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/share/pyshared/nevow/js/Divmod/Runtime/ drwxr-xr-x |
Viewing file: Select action/file-type: // import Nevow.Athena.Test // import Divmod.Runtime Divmod.Runtime.Tests.AppendNodeContent = Nevow.Athena.Test.TestCase.subclass('AppendNodeContent'); Divmod.Runtime.Tests.AppendNodeContent.methods( function test_appendNodeContent(self) { var html = '<div xmlns="http://www.w3.org/1999/xhtml">foo</div>'; Divmod.Runtime.theRuntime.appendNodeContent(self.node, html); self.assertEquals(self.node.lastChild.tagName.toLowerCase(), 'div'); self.assertEquals(self.node.lastChild.childNodes[0].nodeValue, 'foo'); self.node.removeChild(self.node.lastChild); }); Divmod.Runtime.Tests.SetNodeContent = Nevow.Athena.Test.TestCase.subclass('SetNodeContent'); Divmod.Runtime.Tests.SetNodeContent.methods( function test_setNodeContent(self) { var html = '<div xmlns="http://www.w3.org/1999/xhtml">foo</div>'; Divmod.Runtime.theRuntime.setNodeContent(self.node, html); self.assertEquals(self.node.childNodes.length, 1); self.assertEquals(self.node.firstChild.tagName.toLowerCase(), 'div'); self.assertEquals(self.node.firstChild.childNodes[0].nodeValue, 'foo'); }); Divmod.Runtime.Tests.AppendNodeContentScripts = Nevow.Athena.Test.TestCase.subclass('AppendNodeContentScripts'); Divmod.Runtime.Tests.AppendNodeContentScripts.methods( function test_appendNodeContentScripts(self) { Divmod.Runtime.Tests.AppendNodeContentScripts.runCount = 0; var html = ( '<div xmlns="http://www.w3.org/1999/xhtml">' + '<script type="text/javascript">Divmod.Runtime.Tests.AppendNodeContentScripts.runCount++;</script>' + '<script type="text/javascript">Divmod.Runtime.Tests.AppendNodeContentScripts.runCount++;</script>' + '<script type="text/javascript">Divmod.Runtime.Tests.AppendNodeContentScripts.runCount++;</script>' + '</div>'); Divmod.Runtime.theRuntime.appendNodeContent(self.node, html); self.assertEquals(Divmod.Runtime.Tests.AppendNodeContentScripts.runCount, 3); }); Divmod.Runtime.Tests.ElementSize = Nevow.Athena.Test.TestCase.subclass('ElementSize'); /* Tests for Runtime's getElementSize() method */ Divmod.Runtime.Tests.ElementSize.methods( function test_getElementSize(self) { var foo = self.nodeByAttribute("class", "foo"); var size = Divmod.Runtime.theRuntime.getElementSize(foo); self.assertEquals(size.w, 1); self.assertEquals(size.h, 126); var bar = self.nodeByAttribute("class", "bar"); size = Divmod.Runtime.theRuntime.getElementSize(bar); self.assertEquals(size.w, 2 + 70 + 4); self.assertEquals(size.h, 1 + 12 + 3); }); Divmod.Runtime.Tests.ElementsByTagNameShallow = Nevow.Athena.Test.TestCase.subclass('Divmod.Runtime.Tests.ElementsByTagNameShallow'); Divmod.Runtime.Tests.ElementsByTagNameShallow.methods( /** * C{Divmod.Runtime.theRuntime.getElementsByTagNameShallow} returns an * Array of tags with the specified name which are immediate children of * the specified root node. */ function test_getElementsByTagNameShallow(self) { var node = self.nodeByAttribute("class", "foo"); var tags = Divmod.Runtime.theRuntime.getElementsByTagNameShallow( node, "p"); self.assertEquals(tags.length, 1); self.assertEquals(tags[0].tagName, "P"); self.assertEquals(tags[0].firstChild.nodeValue, "foo"); }); Divmod.Runtime.Tests.PageSize = Nevow.Athena.Test.TestCase.subclass('PageSize'); /* Tests for Runtime's getPageSize() method */ Divmod.Runtime.Tests.PageSize.methods( function test_getPageSize(self) { /* resizeTo isn't going to work for this, because of button panels and stuff - we know the viewport size, but we are changing the window size */ var testWindow = window.open('', 'testWindow', 'width=480,height=640'); var wsize = Divmod.Runtime.theRuntime.getPageSize(testWindow); self.assertEquals(wsize.w, 480); self.assertEquals(wsize.h, 640); testWindow.resizeBy(-16, -43); var newsize = Divmod.Runtime.theRuntime.getPageSize(testWindow); self.assertEquals(newsize.w, wsize.w-16); self.assertEquals(newsize.h, wsize.h-43); testWindow.resizeBy(16, 43); newsize = Divmod.Runtime.theRuntime.getPageSize(testWindow); testWindow.close(); self.assertEquals(newsize.w, wsize.w); self.assertEquals(newsize.h, wsize.h); }); Divmod.Runtime.Tests.TraversalOrdering = Nevow.Athena.Test.TestCase.subclass('Divmod.Runtime.Tests.TraversalOrdering'); Divmod.Runtime.Tests.TraversalOrdering.methods( function test_traversalOrdering(self) { var classes = []; Divmod.Runtime.theRuntime.traverse( self.node, function(node) { if (node.className) { classes.push(node.className); } return Divmod.Runtime.Platform.DOM_DESCEND; }); self.assertEquals(classes[0], 'container'); self.assertEquals(classes[1], 'left_child'); self.assertEquals(classes[2], 'left_grandchild'); self.assertEquals(classes[3], 'right_child'); self.assertEquals(classes[4], 'right_grandchild'); }); Divmod.Runtime.Tests.Standalone = Nevow.Athena.Test.TestCase.subclass('Divmod.Runtime.Tests.Standalone'); Divmod.Runtime.Tests.Standalone.methods( /** * Ensure that explicitly namespaced attributes and attributes whose * names get rewritten by IE can be correctly retrieved and written, * and that they don't interfere with each other if the local names * are the same (e.g. "class" and "athena:class" on a single node) */ function test_getSetAttribute(self) { var node = document.createElement("div"); Divmod.Runtime.theRuntime.setAttribute( node, 'class', 'the class'); self.assertEquals( Divmod.Runtime.theRuntime.getAttribute(node, "class"), "the class"); Divmod.Runtime.theRuntime.setAttribute( node, 'class', 'the athena class', Nevow.Athena.XMLNS_URI, 'athena'); self.assertEquals( Divmod.Runtime.theRuntime.getAttribute(node, "class"), "the class"); self.assertEquals( Divmod.Runtime.theRuntime.getAttribute( node, "class", Nevow.Athena.XMLNS_URI, "athena"), "the athena class"); self.assertEquals( Divmod.Runtime.theRuntime.getAttribute(node, "athena:class"), "the athena class"); }, /** * Test that importNode() does something seemingly sensible; this * functionality is somewhat subtle at best, and thus hard to test * effectively. */ function test_importNode(self) { var doc = Divmod.Runtime.theRuntime.parseXHTMLString( '<div xmlns="http://www.w3.org/1999/xhtml">stuff</div>'); var srcElem = doc.documentElement; var destElem = Divmod.Runtime.theRuntime.importNode(srcElem, true); /* This might be a sensible thing to test, except for the fact that * it's not even true on most implementations... */ //self.assertEqual(document, destElem.ownerDocument); self.assertNotEqual(srcElem, destElem); document.documentElement.appendChild(destElem); self.assertEqual(document, destElem.ownerDocument); destElem.parentNode.removeChild(destElem); }); Divmod.Runtime.Tests.FindInRootNode = Nevow.Athena.Test.TestCase.subclass('Divmod.Runtime.Tests.FindInRootNode'); Divmod.Runtime.Tests.FindInRootNode.methods( function test_nodeByAttribute(self) { var node = Divmod.Runtime.theRuntime.nodeByAttribute( self.node, 'athena:class', 'Divmod.Runtime.Tests.FindInRootNode'); self.assertEquals(self.node.id, node.id); }, function test_firstNodeByAttribute(self) { var firstNode = Divmod.Runtime.theRuntime.firstNodeByAttribute( self.node, 'athena:class', 'Divmod.Runtime.Tests.FindInRootNode'); self.assertEquals(self.node.id, firstNode.id); }, function test_nodesByAttribute(self) { var nodes = Divmod.Runtime.theRuntime.nodesByAttribute( self.node, 'athena:class', 'Divmod.Runtime.Tests.FindInRootNode'); self.assertEquals(self.node.id, nodes[0].id); }, /** * Assert that using nodeByAttribute to look for a node with an attribute * value which is not present throws the proper error, NodeAttributeError. */ function test_nodeByAttributeMissing(self) { var error = self.assertThrows( Divmod.Runtime.NodeAttributeError, function() { Divmod.Runtime.theRuntime.nodeByAttribute( self.node, 'foo', 'bar'); }); self.assertEqual(error.root, self.node); self.assertEqual(error.attribute, 'foo'); self.assertEqual(error.value, 'bar'); }, /** * Assert that using firstNodeByAttribute to look for a node with an * attribute value which is not present throws the proper error, * NodeAttributeError. */ function test_firstNodeByAttributeMissing(self) { var error = self.assertThrows( Divmod.Runtime.NodeAttributeError, function() { Divmod.Runtime.theRuntime.firstNodeByAttribute( self.node, 'foo', 'bar'); }); self.assertEqual(error.root, self.node); self.assertEqual(error.attribute, 'foo'); self.assertEqual(error.value, 'bar'); }); Divmod.Runtime.Tests.ElementPosition = Nevow.Athena.Test.TestCase.subclass('Divmod.Runtime.Tests.ElementPosition'); /** * Tests for L{Divmod.Runtime}'s element position-getting methods */ Divmod.Runtime.Tests.ElementPosition.methods( /** * Test L{Divmod.Runtime.Platform.findPosX} */ function test_findPosX(self) { var div = document.createElement('div'); div.style.position = 'absolute'; div.style.left = '8px'; document.body.appendChild(div); self.assertEqual(parseInt(Divmod.Runtime.theRuntime.findPosX(div)), 8); }, /** * Test L{Divmod.Runtime.Platform.findPosY} */ function test_findPosY(self) { var div = document.createElement('div'); div.style.position = 'absolute'; div.style.top = '5px'; document.body.appendChild(div); self.assertEqual(parseInt(Divmod.Runtime.theRuntime.findPosY(div)), 5); }); Divmod.Runtime.Tests.LoadScript = Nevow.Athena.Test.TestCase.subclass('Divmod.Runtime.Tests.LoadScript'); /** * Tests for L{Divmod.Runtime.Platform.loadScript}. */ Divmod.Runtime.Tests.LoadScript.methods( /** * L{Divmod.Runtime.Platform.loadScript}'s deferred should errback if * there is an error loading the script. */ function test_loadScriptError(self) { var result = Divmod.Runtime.theRuntime.loadScript( '/test_loadScriptError'); // 404 result.addCallbacks( function(what) { self.fail('Should have failed: ' + what); }, function(err) { err.check(Divmod.Runtime.ScriptLoadingError); }); return result; }); |
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0069 ]-- |