!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

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
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/pyshared/nevow/js/Nevow/Test/   drwxr-xr-x
Free 129.74 GB of 142.11 GB (91.29%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     TestHowtoListing00.js (3.16 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
// -*- test-case-name: nevow.test.test_howtolistings -*-

/**
 * This test case is for the EchoWidget module under part00 of the Nevow/Athena chat tutorial.
 */

// import Divmod.UnitTest
// import Divmod.Defer
// import Nevow.Test.WidgetUtil
// import EchoThing

Nevow.Test.TestHowtoListing00.TestableEchoWidget = EchoThing.EchoWidget.subclass(
    "Nevow.Test.TestHowtoListing00.TestableEchoWidget");

/**
 * Provide a testable version of the widget with less coupling with the
 * runtime and DOM.  (This should only override Athena methods, not methods
 * defined in EchoWidget itself, as that would be self-defeating.)
 */
Nevow.Test.TestHowtoListing00.TestableEchoWidget.methods(
    /**
     * Provide a mocked constructor which allows us to refer to a test case
     * from mock methods.
     */

    function __init__(self, node, testCase) {
        self.testCase = testCase;
        return Nevow.Test.TestHowtoListing00.TestableEchoWidget.upcall(self, "__init__", node);
    },
    /**
     * Provide a mocked version of nodeByAttribute which doesn't require
     * runtime features (such as XPath).
     */
    function nodeByAttribute(self, attribute, value) {
        return self.testCase.mockNodes[value];
    });

Nevow.Test.TestHowtoListing00.TestHowtoListing00 = Divmod.UnitTest.TestCase.subclass(
    'Nevow.Test.TestHowtoListing00.TestHowtoListing00');

Nevow.Test.TestHowtoListing00.TestHowtoListing00.methods(

    /**
     * Set up the tests to run.
     */
    function setUp(self) {
        self.node = Nevow.Test.WidgetUtil.makeWidgetNode();
        self.mockNodes = {};
        self.mockNodes["scrollArea"] = document.createElement("div");
        self.mockNodes['echoBox'] = document.createElement('div');
        self.mockNodes['message'] = document.createElement('input');

        self.echoWidget = Nevow.Test.TestHowtoListing00.TestableEchoWidget(self.node, self);
    },

    /**
     * Verify that the 'echo' function will manipulate the scrolling area in a
     * way which is visible to the user.
     */
    function test_echo(self) {
        var mockScroll = self.mockNodes['scrollArea'];
        self.echoWidget.addText("hello!");
        self.assertIdentical(mockScroll.childNodes.length, 1);
        self.assertIdentical(mockScroll.childNodes[0].nodeType, document.ELEMENT_NODE);
        self.assertIdentical(mockScroll.childNodes[0].childNodes.length, 1);
        self.assertIdentical(mockScroll.childNodes[0].childNodes[0].nodeValue, "hello!");
    },

    /**
     * Invoking the 'doSay' event handler ought to call a remote method to
     * tell the server that the given text has been said.
     */
    function test_saySomething(self) {
        self.mockNodes['message'].value = 'hello!';
        var d = Divmod.Defer.Deferred();
        var called = false;
        self.echoWidget.callRemote = function (method, argument) {
            called = true;
            self.assertIdentical(method, "say");
            self.assertIdentical(argument, "hello!");
            return d;
        }
        var eventResult = self.echoWidget.doSay();
        self.assertIdentical(eventResult, false);
        self.assert(called);
        self.assertIdentical(self.mockNodes['message'].value, '');
    });

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.017 ]--