!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

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

Safe-mode: OFF (not secure)

/var/www/html/wincloud_gateway/node_modules/loglevel/test/   drwxr-xr-x
Free 13.08 GB of 57.97 GB (22.57%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     method-factory-test.js (1.75 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";

define(['test/test-helpers'], function(testHelpers) {
    var it = testHelpers.itWithFreshLog;

    describe("Setting the methodFactory tests:", function() {

        it("methodFactory should be called once for each loggable level", function(log) {
            log.methodFactory = jasmine.createSpy("methodFactory");

            log.setLevel("trace");
            expect(log.methodFactory.calls.length).toEqual(5);
            expect(log.methodFactory.argsForCall[0]).toEqual(["trace", 0, undefined]);
            expect(log.methodFactory.argsForCall[1]).toEqual(["debug", 0, undefined]);
            expect(log.methodFactory.argsForCall[2]).toEqual(["info",  0, undefined]);
            expect(log.methodFactory.argsForCall[3]).toEqual(["warn",  0, undefined]);
            expect(log.methodFactory.argsForCall[4]).toEqual(["error", 0, undefined]);

            log.setLevel("error");
            expect(log.methodFactory.calls.length).toEqual(6);
            expect(log.methodFactory.argsForCall[5]).toEqual(["error", 4, undefined]);
        });

        it("functions returned by methodFactory should be used as logging functions", function(log) {
            var logFunction = function() {};
            log.methodFactory = function() { return logFunction; };
            log.setLevel("error");

            expect(log.warn).not.toEqual(logFunction);
            expect(log.error).toEqual(logFunction);
        });

        it("the third argument should be logger's name", function(log) {
            var logger = log.getLogger("newLogger");
            logger.methodFactory = jasmine.createSpy("methodFactory");

            logger.setLevel("error");
            expect(logger.methodFactory.argsForCall[0]).toEqual(["error", 4, "newLogger"]);
        });

    });
});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0288 ]--