!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/pmb/node_modules/tsconfig-paths/lib/__tests__/   drwxr-xr-x
Free 13.1 GB of 57.97 GB (22.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     try-path.test.js (6.77 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var try_path_1 = require("../try-path");
var path_1 = require("path");
describe("mapping-entry", function () {
    var abosolutePathMappings = [
        {
            pattern: "longest/pre/fix/*",
            paths: [(0, path_1.join)("/absolute", "base", "url", "foo2", "bar")],
        },
        { pattern: "pre/fix/*", paths: [(0, path_1.join)("/absolute", "base", "url", "foo3")] },
        { pattern: "*", paths: [(0, path_1.join)("/absolute", "base", "url", "foo1")] },
    ];
    var abosolutePathMappingsStarstWithSlash = [
        {
            pattern: "/opt/*",
            paths: [(0, path_1.join)("/absolute", "src", "aws-layer")],
        },
        {
            pattern: "*",
            paths: [(0, path_1.join)("/absolute", "src")],
        },
    ];
    it("should return no paths for relative requested module", function () {
        var result = (0, try_path_1.getPathsToTry)([".ts", "tsx"], abosolutePathMappings, "./requested-module");
        // assert.deepEqual(result, undefined);
        expect(result).toBeUndefined();
    });
    it("should return no paths if no pattern match the requested module", function () {
        var result = (0, try_path_1.getPathsToTry)([".ts", "tsx"], [
            {
                pattern: "longest/pre/fix/*",
                paths: [(0, path_1.join)("/absolute", "base", "url", "foo2", "bar")],
            },
            {
                pattern: "pre/fix/*",
                paths: [(0, path_1.join)("/absolute", "base", "url", "foo3")],
            },
        ], "requested-module");
        expect(result).toBeUndefined();
    });
    it("should get all paths that matches requested module", function () {
        var result = (0, try_path_1.getPathsToTry)([".ts", ".tsx"], abosolutePathMappings, "longest/pre/fix/requested-module");
        // assert.deepEqual(result, [
        //   // "longest/pre/fix/*"
        //   { type: "file", path: join("/absolute", "base", "url", "foo2", "bar") },
        //   {
        //     type: "extension",
        //     path: join("/absolute", "base", "url", "foo2", "bar.ts"),
        //   },
        //   {
        //     type: "extension",
        //     path: join("/absolute", "base", "url", "foo2", "bar.tsx"),
        //   },
        //   {
        //     type: "package",
        //     path: join("/absolute", "base", "url", "foo2", "bar", "package.json"),
        //   },
        //   {
        //     type: "index",
        //     path: join("/absolute", "base", "url", "foo2", "bar", "index.ts"),
        //   },
        //   {
        //     type: "index",
        //     path: join("/absolute", "base", "url", "foo2", "bar", "index.tsx"),
        //   },
        //   // "*"
        //   { type: "file", path: join("/absolute", "base", "url", "foo1") },
        //   { type: "extension", path: join("/absolute", "base", "url", "foo1.ts") },
        //   { type: "extension", path: join("/absolute", "base", "url", "foo1.tsx") },
        //   {
        //     type: "package",
        //     path: join("/absolute", "base", "url", "foo1", "package.json"),
        //   },
        //   {
        //     type: "index",
        //     path: join("/absolute", "base", "url", "foo1", "index.ts"),
        //   },
        //   {
        //     type: "index",
        //     path: join("/absolute", "base", "url", "foo1", "index.tsx"),
        //   },
        // ]);
        expect(result).toEqual([
            // "longest/pre/fix/*"
            { type: "file", path: (0, path_1.join)("/absolute", "base", "url", "foo2", "bar") },
            {
                type: "extension",
                path: (0, path_1.join)("/absolute", "base", "url", "foo2", "bar.ts"),
            },
            {
                type: "extension",
                path: (0, path_1.join)("/absolute", "base", "url", "foo2", "bar.tsx"),
            },
            {
                type: "package",
                path: (0, path_1.join)("/absolute", "base", "url", "foo2", "bar", "package.json"),
            },
            {
                type: "index",
                path: (0, path_1.join)("/absolute", "base", "url", "foo2", "bar", "index.ts"),
            },
            {
                type: "index",
                path: (0, path_1.join)("/absolute", "base", "url", "foo2", "bar", "index.tsx"),
            },
            // "*"
            { type: "file", path: (0, path_1.join)("/absolute", "base", "url", "foo1") },
            { type: "extension", path: (0, path_1.join)("/absolute", "base", "url", "foo1.ts") },
            { type: "extension", path: (0, path_1.join)("/absolute", "base", "url", "foo1.tsx") },
            {
                type: "package",
                path: (0, path_1.join)("/absolute", "base", "url", "foo1", "package.json"),
            },
            {
                type: "index",
                path: (0, path_1.join)("/absolute", "base", "url", "foo1", "index.ts"),
            },
            {
                type: "index",
                path: (0, path_1.join)("/absolute", "base", "url", "foo1", "index.tsx"),
            },
        ]);
    });
    it("should resolve paths starting with a slash", function () {
        var result = (0, try_path_1.getPathsToTry)([".ts"], abosolutePathMappingsStarstWithSlash, "/opt/utils");
        expect(result).toEqual([
            // "opt/*"
            {
                path: (0, path_1.join)("/absolute", "src", "aws-layer"),
                type: "file",
            },
            {
                path: (0, path_1.join)("/absolute", "src", "aws-layer.ts"),
                type: "extension",
            },
            {
                path: (0, path_1.join)("/absolute", "src", "aws-layer", "package.json"),
                type: "package",
            },
            {
                path: (0, path_1.join)("/absolute", "src", "aws-layer", "index.ts"),
                type: "index",
            },
            // "*"
            {
                path: (0, path_1.join)("/absolute", "src"),
                type: "file",
            },
            {
                path: (0, path_1.join)("/absolute", "src.ts"),
                type: "extension",
            },
            {
                path: (0, path_1.join)("/absolute", "src", "package.json"),
                type: "package",
            },
            {
                path: (0, path_1.join)("/absolute", "src", "index.ts"),
                type: "index",
            },
        ]);
    });
});
// describe("match-star", () => {
//   it("should match star in last position", () => {
//     const result = matchStar("lib/*", "lib/mylib");
//     assert.equal(result, "mylib");
//   });
//   it("should match star in first position", () => {
//     const result = matchStar("*/lib", "mylib/lib");
//     assert.equal(result, "mylib");
//   });
// });
//# sourceMappingURL=try-path.test.js.map

:: 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.0381 ]--