taskServer(8000)->host("localhost")->dir(self::BASE_TEST."docroot")->rawArg("-n")->arg(self::BASE_TEST."server.php")->background()->run(); // run tests return $this->taskPHPUnit()->configFile(self::BASE_TEST."phpunit.xml")->args($args)->run(); } public function coverage(array $args): Result { // run the test suite with code coverage reporting enabled return $this->test(["--coverage-html",self::BASE_TEST."coverage"]); } public function package(array $args): Result { // establish which commit to package $version = $args ? $args[0] : $this->askDefault("Commit to package:", "head"); $archive = self::BASE."arsse-$version.tar.gz"; // start a collection $t = $this->collectionBuilder(); // create a temporary directory $dir = $t->tmpDir().\DIRECTORY_SEPARATOR; // create a Git worktree for the selected commit in the temp location $t->taskExec("git worktree add ".escapeshellarg($dir)." ".escapeshellarg($version)); // perform Composer installation in the temp location $t->taskComposerInstall()->dir($dir)->noDev()->optimizeAutoloader()->arg("--no-scripts"); // delete unwanted files $t->taskFilesystemStack()->remove([ $dir.".git", $dir.".gitignore", $dir.".gitattributes", $dir."composer.json", $dir."composer.lock", $dir.".php_cs.dist", $dir."phpdoc.dist.xml", $dir."build.xml", $dir."RoboFile.php", $dir."CONTRIBUTING.md", $dir."tests", $dir."vendor-bin", ]); // generate a sample configuration file $t->taskExec("php arsse.php conf save-defaults config.defaults.php")->dir($dir); // package it all up $t->taskPack($archive)->addDir("arsse", $dir); // execute the collection $out = $t->run(); // clean the Git worktree list $this->_exec("git worktree prune"); return $out; } }