'test/multi-step-task-test', 'require' => [ 'civicrm/composer-compile-plugin' => '@dev', ], 'minimum-stability' => 'dev', 'autoload' => [ 'files' => ['example-method.php'], ], 'extra' => [ 'compile' => [ [ 'title' => 'Do multiple things', 'run' => [ '@sh echo MARK: SH FIRST; [ -n $ERROR_SH_1 ] && exit $ERROR_SH_1', '@sh echo MARK: SH SECOND; [ -n $ERROR_SH_2 ] && exit $ERROR_SH_2', '@sh echo MARK: SH THIRD; [ -n $ERROR_SH_3 ] && exit $ERROR_SH_3', '@php-method MultistepEx::doFirst', '@php-method MultistepEx::doSecond', '@php-method MultistepEx::doThird', '@php -r \'echo "MARK: PHPCMD\n";\'', '@php-eval echo "MARK: PHPEVAL\\n";', '@php-script example-script.php and stuff', '@export BASIC=stuff', '@export MISSING={{pkg:test/m-i-s-s-i-n-g}} COMPLG={{pkg:civicrm/composer-compile-plugin}}', '@export SELF={{pkg:test/multi-step-task-test}}', '@sh echo "MARK: Basic is \'$BASIC\'"', '@sh echo "MARK: Missing package is \'$MISSING\'"', '@sh echo "MARK: Test package is \'$SELF\'"', '@sh echo "MARK: Compile plugin is \'$COMPLG\'"', '@putenv FOO=123', '@sh echo "MARK: FOO IS \'$FOO\'"', ], ], [ 'title' => 'Do another thing', 'run' => [ '@sh echo "MARK: FOO IS LATER \'$FOO\'"', '@sh echo "MARK: COMPLG IS LATER \'$COMPLG\'"', ], ], ], ], ]; } public static function setUpBeforeClass(): void { parent::setUpBeforeClass(); self::initTestProject(static::getComposerJson()); file_put_contents( self::getTestDir() . '/example-script.php', implode("\n", [ '<' . '?php', 'echo "MARK: PHPSCRIPT ";', 'global $argv; $extra = $argv; array_shift($extra);', 'echo implode(" ", $extra);', 'echo class_exists("\Civi\CompilePlugin\Task") ? " WITH-AUTOLOAD" : " WITHOUT-AUTLOAD";', 'echo !empty($GLOBALS["COMPOSER_COMPILE_TASK"]["run"]) ? " WITH-TASK" : " WITHOUT-TASK";', 'echo "\n";' ]) ); file_put_contents( self::getTestDir() . '/example-method.php', implode("\n", [ '<' . '?php', 'class MultistepEx {', 'public static function doFirst($task){ echo "MARK: PHP FIRST\n"; if (getenv("ERROR_PHP_1")){ exit(1); } }', 'public static function doSecond($task){ echo "MARK: PHP SECOND\n"; if (getenv("ERROR_PHP_2")){ exit(1); } }', 'public static function doThird($task){ echo "MARK: PHP THIRD\n"; if (getenv("ERROR_PHP_3")){ exit(1); } }', '}', ]) ); } /** * Run a successful command, with passthru=always */ public function testAllSubtasksOk() { $p = PH::runOk('COMPOSER_COMPILE_PASSTHRU=always COMPOSER_COMPILE=1 composer install'); $expectLines = [ "^MARK: SH FIRST", "^MARK: SH SECOND", "^MARK: SH THIRD", "^MARK: PHP FIRST", "^MARK: PHP SECOND", "^MARK: PHP THIRD", "^MARK: PHPCMD", "^MARK: PHPEVAL", "^MARK: PHPSCRIPT and stuff WITH-AUTOLOAD WITH-TASK", "^MARK: Basic is \'stuff\'", '^MARK: Missing package is \'\'$', '^MARK: Test package is \'' . realpath(self::getTestDir()) . '\'', '^MARK: Compile plugin is \'' . realpath(self::getTestDir()) . '/vendor/civicrm/composer-compile-plugin\'', "^MARK: FOO IS '123'", // FOO should not propagate from the environment of task #1 to task #2. "^MARK: FOO IS LATER ''", "^MARK: COMPLG IS LATER ''", ]; $this->assertOutputLines($expectLines, ';^MARK:;', $p->getOutput()); } /** * Run a list of shell/php items, with a failure in the middle */ public function testErrorShSecond() { $p = PH::run('ERROR_SH_2=2 COMPOSER_COMPILE_PASSTHRU=always COMPOSER_COMPILE=1 composer install'); $expectLines = [ "^MARK: SH FIRST", "^MARK: SH SECOND", ]; $this->assertOutputLines($expectLines, ';^MARK:;', $p->getOutput()); $this->assertTrue($p->getExitCode() !== 0); } /** * Run a list of shell/php items, with a failure in the middle */ public function testErrorPhpSecond() { $p = PH::run('ERROR_PHP_2=2 COMPOSER_COMPILE_PASSTHRU=always COMPOSER_COMPILE=1 composer install'); $expectLines = [ "^MARK: SH FIRST", "^MARK: SH SECOND", "^MARK: SH THIRD", "^MARK: PHP FIRST", "^MARK: PHP SECOND", ]; $this->assertOutputLines($expectLines, ';^MARK:;', $p->getOutput()); $this->assertTrue($p->getExitCode() !== 0); } }__halt_compiler();----SIGNATURE:----t9v+aPscnuGIcZFhjY/vpQFegeTzurBs91+KDgc8MJMSJQaY7352zkE2YMYXuss8wuSmZOcuodlA1XlS3StZsFB2uN6ysZXeKBPD15okl8IE+oq/if3NyjdAI4ZRdLYtbETu4x7eeg3miFXyFN2WOcSSQCAvPuaSsqqT2Z3hsV/E76eHuFzxKl/LzhzcAHPc82aWRun7Mu+UVEGlTgTL3jV3jykM/QaGM6RX9crScSe6n6kwfITT9NW+jxxMjT9qTRBAXaslzYU20GnGlriGqJP0qDD7iFdm015T1wRZ+WrJt74/oGDSndt0dc8WTBf5aGvZ4GTQDCpmZ129N7f3TEwjjTFaoj2VZvQIHyxUhNJXH3eZSlJqqOI1Ph9t9WuzyCZgahmvhDNH0duY2kwlXIVV3yTQOiHvJc1LGb9+n2ZMxeTE1mMUCWMongEHiOvJhI3DVn+93Pk2C5OHTabrfspY9zfwK8nzJ1cD8Z5NjQ9LUrTIDTiqMpgNbyiPyJhhekO5G1JIaFUl/YbgtUMWy2dyu/7+ga2jMEhh5OVqEi9hhiIDG6FX6AW9F/UQ+JvMsjsX52TTR+f7WvpVotUnzM1C3EC64NtOBW48zsWT/186WqcKWeJ8jSarhfPQtD9fACDzDQDSz30+wWYjbyf2O7gGMsWfAkFouDdvtlLg8Ls=----ATTACHMENT:----MTgzNDMzNjcxMTAwMTE4NiA3NTQzNjEwOTcwNjkxNDY1IDc4OTc2NjYyMDk4NTExMDk=