123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?php
- namespace Composer\Test;
- use Symfony\Component\Process\Process;
- use Composer\Util\Filesystem;
- use Symfony\Component\Finder\Finder;
- /**
- * @group slow
- */
- class AllFunctionalTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @dataProvider getTestFiles
- */
- public function testIntegration(\SplFileInfo $testFile)
- {
- $testData = $this->parseTestFile($testFile);
- $cmd = 'php '.__DIR__.'/../../../bin/composer --no-ansi '.$testData['RUN'];
- $proc = new Process($cmd);
- $exitcode = $proc->run();
- if (isset($testData['EXPECT'])) {
- $this->assertEquals($testData['EXPECT'], $this->cleanOutput($proc->getOutput()), 'Error Output: '.$proc->getErrorOutput());
- }
- if (isset($testData['EXPECT-REGEX'])) {
- $this->assertRegExp($testData['EXPECT-REGEX'], $this->cleanOutput($proc->getOutput()), 'Error Output: '.$proc->getErrorOutput());
- }
- if (isset($testData['EXPECT-ERROR'])) {
- $this->assertEquals($testData['EXPECT-ERROR'], $this->cleanOutput($proc->getErrorOutput()));
- }
- if (isset($testData['EXPECT-ERROR-REGEX'])) {
- $this->assertRegExp($testData['EXPECT-ERROR-REGEX'], $this->cleanOutput($proc->getErrorOutput()));
- }
- if (isset($testData['EXPECT-EXIT-CODE'])) {
- $this->assertSame($testData['EXPECT-EXIT-CODE'], $exitcode);
- }
- // Clean up.
- $fs = new Filesystem();
- if (isset($testData['test_dir']) && is_dir($testData['test_dir'])) {
- $fs->removeDirectory($testData['test_dir']);
- }
- }
- public function getTestFiles()
- {
- $tests = array();
- foreach (Finder::create()->in(__DIR__.'/Fixtures/functional')->name('*.test')->files() as $file) {
- $tests[] = array($file);
- }
- return $tests;
- }
- private function parseTestFile(\SplFileInfo $file)
- {
- $tokens = preg_split('#(?:^|\n*)--([A-Z-]+)--\n#', file_get_contents($file->getRealPath()), null, PREG_SPLIT_DELIM_CAPTURE);
- $data = array();
- $section = null;
- $testDir = sys_get_temp_dir().'/composer_functional_test'.uniqid(mt_rand(), true);
- $varRegex = '#%([a-zA-Z_-]+)%#';
- $variableReplacer = function($match) use (&$data, $testDir) {
- list(, $var) = $match;
- switch ($var) {
- case 'testDir':
- $data['test_dir'] = $testDir;
- return $testDir;
- default:
- throw new \InvalidArgumentException(sprintf('Unknown variable "%s". Supported variables: "testDir"', $var));
- }
- };
- for ($i = 0, $c = count($tokens); $i < $c; $i++) {
- if ('' === $tokens[$i] && null === $section) {
- continue;
- }
- // Handle section headers.
- if (null === $section) {
- $section = $tokens[$i];
- continue;
- }
- $sectionData = $tokens[$i];
- // Allow sections to validate, or modify their section data.
- switch ($section) {
- case 'RUN':
- $sectionData = preg_replace_callback($varRegex, $variableReplacer, $sectionData);
- break;
- case 'EXPECT-EXIT-CODE':
- $sectionData = (integer) $sectionData;
- case 'EXPECT':
- case 'EXPECT-REGEX':
- case 'EXPECT-ERROR':
- case 'EXPECT-ERROR-REGEX':
- $sectionData = preg_replace_callback($varRegex, $variableReplacer, $sectionData);
- break;
- default:
- throw new \RuntimeException(sprintf(
- 'Unknown section "%s". Allowed sections: "RUN", "EXPECT", "EXPECT-ERROR", "EXPECT-EXIT-CODE", "EXPECT-REGEX", "EXPECT-ERROR-REGEX". '
- .'Section headers must be written as "--HEADER_NAME--".',
- $section
- ));
- }
- $data[$section] = $sectionData;
- $section = $sectionData = null;
- }
- // validate data
- if (!isset($data['RUN'])) {
- throw new \RuntimeException('The test file must have a section named "RUN".');
- }
- if (!isset($data['EXPECT']) && !isset($data['EXPECT-ERROR']) && !isset($data['EXPECT-REGEX']) && !isset($data['EXPECT-ERROR-REGEX'])) {
- throw new \RuntimeException('The test file must have a section named "EXPECT", "EXPECT-ERROR", "EXPECT-REGEX", or "EXPECT-ERROR-REGEX".');
- }
- return $data;
- }
- private function cleanOutput($output)
- {
- $processed = '';
- for ($i = 0; $i < strlen($output); $i++) {
- if ($output[$i] === "\x08") {
- $processed = substr($processed, 0, -1);
- } elseif ($output[$i] !== "\r") {
- $processed .= $output[$i];
- }
- }
- return $processed;
- }
- }
|