!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/@surma/rollup-plugin-off-main-thread/   drwxr-xr-x
Free 13.29 GB of 57.97 GB (22.93%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     run_tests.js (3.34 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/**
 * Copyright 2018 Google Inc. All Rights Reserved.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *     http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

const rollup = require("rollup");
const path = require("path");
const omt = require(".");
const fs = require("fs");
const chalk = require("chalk");

const karma = require("karma");
const myKarmaConfig = require("./karma.conf.js");

async function fileExists(file) {
  try {
    const stat = await fs.promises.stat(file);
    return stat.isFile();
  } catch (e) {
    return false;
  }
}

async function init() {
  await Promise.all(
    [
      "./tests/fixtures/simple-bundle/entry.js",
      "./tests/fixtures/import-meta/entry.js",
      "./tests/fixtures/dynamic-import/entry.js",
      "./tests/fixtures/public-path/entry.js",
      "./tests/fixtures/worker/entry.js",
      "./tests/fixtures/module-worker/entry.js",
      "./tests/fixtures/more-workers/entry.js",
      "./tests/fixtures/amd-function-name/entry.js",
      "./tests/fixtures/single-default/entry.js",
      "./tests/fixtures/import-worker-url/entry.js",
      "./tests/fixtures/import-meta-worker/entry.js",
      "./tests/fixtures/import-worker-url-custom-scheme/entry.js",
      "./tests/fixtures/assets-in-worker/entry.js",
      "./tests/fixtures/url-import-meta-worker/entry.js"
    ].map(async input => {
      const pathName = path.dirname(input);
      const outputOptions = {
        dir: path.join(pathName, "build"),
        format: "amd"
      };
      let rollupConfig = {
        input,
        strictDeprecations: true,
        // Copied / adapted from default `onwarn` in Rollup CLI.
        onwarn: warning => {
          console.warn(`⚠️   ${chalk.bold(warning.message)}`);

          if (warning.url) {
            console.warn(chalk.cyan(warning.url));
          }

          if (warning.loc) {
            console.warn(
              `${warning.loc.file} (${warning.loc.line}:${warning.loc.column})`
            );
          }

          if (warning.frame) {
            console.warn(chalk.dim(warning.frame));
          }

          console.warn("");
        }
      };
      const rollupConfigPath = "./" + path.join(pathName, "rollup.config.js");
      const configPath = "./" + path.join(pathName, "config.json");
      if (await fileExists(rollupConfigPath)) {
        require(rollupConfigPath)(rollupConfig, outputOptions, omt);
      } else if (await fileExists(configPath)) {
        rollupConfig.plugins = [omt(require(configPath))];
      } else {
        rollupConfig.plugins = [omt()];
      }
      const bundle = await rollup.rollup(rollupConfig);
      await bundle.write(outputOptions);
    })
  );

  const karmaConfig = { port: 9876 };
  myKarmaConfig({
    set(config) {
      Object.assign(karmaConfig, config);
    }
  });
  const server = new karma.Server(karmaConfig, code => {
    console.log(`Karma exited with code ${code}`);
    process.exit(code);
  });
  server.start();
}
init();

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