示例#1
0
 public static function minify_images()
 {
     $path = Cli::addOption("path", WWW_PATH, "Path where to find images");
     $norun = Cli::addSwitch("n", "Do not run the scripts, only print files to process");
     Cli::enableHelp();
     Cli::pinfo("Minify images");
     foreach (self::globRecursive($path . "/*.[pP][nN][gG]", GLOB_NOSORT) as $png) {
         Cli::pinfo(" * {$png}");
         $output = "";
         $return_var = -1;
         $cmd = "pngcrush -ow -brute -reduce {$png}";
         if ($norun) {
             Logger::Debug("   > {$cmd}");
         } else {
             exec("{$cmd} 2>& 1", $output, $return_var);
             if ($return_var != 0) {
                 Cli::perr(implode($output, "\n"));
             } else {
                 Logger::Debug(implode($output, "\n"));
             }
         }
     }
     foreach (self::globRecursive($path . "/{*.[jJ][pP][gG], *.[jJ][pP][eE][gG]}", GLOB_BRACE | GLOB_NOSORT) as $jpg) {
         Cli::pinfo(" * {$jpg}");
         $output = "";
         $return_var = -1;
         $cmd = "jpegoptim -s -v -v {$jpg}";
         if ($norun) {
             Logger::Debug("   > {$cmd}");
         } else {
             exec("{$cmd} 2>& 1", $output, $return_var);
             if ($return_var != 0) {
                 Cli::perr(implode($output, "\n"));
             } else {
                 Logger::Debug(implode($output, "\n"));
             }
         }
     }
 }
示例#2
0
        // Test for empty set of tests
        //
        $cc = new Colors\Color();
        if (count($testClasses) == 0) {
            echo $cc("WARNING ")->red()->bold();
            echo $cc("  No classes have been named to be test Suites (Test????) - ")->reset();
            echo $cc(" is this correct !!")->white()->bold();
            echo "\n";
        } else {
            foreach ($runner->get_test_cases() as $obj) {
                $arr = $obj->get_tests();
                if (count($arr) == 0) {
                    echo $cc("WARNING")->red()->bold();
                    echo $cc(" class ")->reset();
                    echo $cc(get_class($obj))->cyan()->bold();
                    echo $cc(" has no tests method (test_???) - ")->reset();
                    echo $cc(" is this correct ")->white()->bold();
                    echo "\n ";
                }
            }
        }
        $runner->print_results();
    }
}
$cli = new Cli();
$cli->addOption()->shortName('c')->longname(LiteTestCommand::CONFIG_FILE)->key(LiteTestCommand::CONFIG_FILE)->valueRequired(true)->setIsFile()->description("json config file");
$cli->addOption()->shortName('b')->longname(LiteTestCommand::BOOTSTRAP_FILE)->key(LiteTestCommand::BOOTSTRAP_FILE)->valueRequired(true)->setIsFile()->description("php bootstrap file");
$cli->addOption()->shortName("v")->key('verbose')->valueRequired(false)->description("verbose")->valueRequired(false);
$cli->addOption()->shortName("d")->key('debug')->valueRequired(false)->description("debug")->valueRequired(false);
$cli->command(new LiteTestCommand())->name("LiteTest")->description("Run php test cases using LiteTest framework")->usage("[options] [arguments]")->help("Runs php test cases with LiteTest framework");
$cli->run($argv);