Don't use a regex to parse installer tests to allow for longer tests
parent
825b4b9c63
commit
5e5eb069dc
|
@ -241,10 +241,10 @@ class InstallerTest extends TestCase
|
||||||
}
|
}
|
||||||
|
|
||||||
$installationManager = $composer->getInstallationManager();
|
$installationManager = $composer->getInstallationManager();
|
||||||
$this->assertSame($expect, implode("\n", $installationManager->getTrace()));
|
$this->assertSame(rtrim($expect), implode("\n", $installationManager->getTrace()));
|
||||||
|
|
||||||
if ($expectOutput) {
|
if ($expectOutput) {
|
||||||
$this->assertEquals($expectOutput, $output);
|
$this->assertEquals(rtrim($expectOutput), rtrim($output));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -258,21 +258,7 @@ class InstallerTest extends TestCase
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$test = file_get_contents($file->getRealpath());
|
$testData = $this->readTestFile($file, $fixturesDir);
|
||||||
|
|
||||||
$content = '(?:.(?!--[A-Z]))+';
|
|
||||||
$pattern = '{^
|
|
||||||
--TEST--\s*(?P<test>.*?)\s*
|
|
||||||
(?:--CONDITION--\s*(?P<condition>'.$content.'))?\s*
|
|
||||||
--COMPOSER--\s*(?P<composer>'.$content.')\s*
|
|
||||||
(?:--LOCK--\s*(?P<lock>'.$content.'))?\s*
|
|
||||||
(?:--INSTALLED--\s*(?P<installed>'.$content.'))?\s*
|
|
||||||
--RUN--\s*(?P<run>.*?)\s*
|
|
||||||
(?:--EXPECT-LOCK--\s*(?P<expectLock>'.$content.'))?\s*
|
|
||||||
(?:--EXPECT-OUTPUT--\s*(?P<expectOutput>'.$content.'))?\s*
|
|
||||||
(?:--EXPECT-EXIT-CODE--\s*(?P<expectExitCode>\d+))?\s*
|
|
||||||
--EXPECT--\s*(?P<expect>.*?)\s*
|
|
||||||
$}xs';
|
|
||||||
|
|
||||||
$installed = array();
|
$installed = array();
|
||||||
$installedDev = array();
|
$installedDev = array();
|
||||||
|
@ -280,48 +266,44 @@ class InstallerTest extends TestCase
|
||||||
$expectLock = array();
|
$expectLock = array();
|
||||||
$expectExitCode = 0;
|
$expectExitCode = 0;
|
||||||
|
|
||||||
if (preg_match($pattern, $test, $match)) {
|
try {
|
||||||
try {
|
$message = $testData['TEST'];
|
||||||
$message = $match['test'];
|
$condition = !empty($testData['CONDITION']) ? $testData['CONDITION'] : null;
|
||||||
$condition = !empty($match['condition']) ? $match['condition'] : null;
|
$composer = JsonFile::parseJson($testData['COMPOSER']);
|
||||||
$composer = JsonFile::parseJson($match['composer']);
|
|
||||||
|
|
||||||
if (isset($composer['repositories'])) {
|
if (isset($composer['repositories'])) {
|
||||||
foreach ($composer['repositories'] as &$repo) {
|
foreach ($composer['repositories'] as &$repo) {
|
||||||
if ($repo['type'] !== 'composer') {
|
if ($repo['type'] !== 'composer') {
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
|
|
||||||
// Change paths like file://foobar to file:///path/to/fixtures
|
|
||||||
if (preg_match('{^file://[^/]}', $repo['url'])) {
|
|
||||||
$repo['url'] = 'file://' . strtr($fixturesDir, '\\', '/') . '/' . substr($repo['url'], 7);
|
|
||||||
}
|
|
||||||
|
|
||||||
unset($repo);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($match['lock'])) {
|
// Change paths like file://foobar to file:///path/to/fixtures
|
||||||
$lock = JsonFile::parseJson($match['lock']);
|
if (preg_match('{^file://[^/]}', $repo['url'])) {
|
||||||
if (!isset($lock['hash'])) {
|
$repo['url'] = 'file://' . strtr($fixturesDir, '\\', '/') . '/' . substr($repo['url'], 7);
|
||||||
$lock['hash'] = md5(json_encode($composer));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unset($repo);
|
||||||
}
|
}
|
||||||
if (!empty($match['installed'])) {
|
|
||||||
$installed = JsonFile::parseJson($match['installed']);
|
|
||||||
}
|
|
||||||
$run = $match['run'];
|
|
||||||
if (!empty($match['expectLock'])) {
|
|
||||||
$expectLock = JsonFile::parseJson($match['expectLock']);
|
|
||||||
}
|
|
||||||
$expectOutput = $match['expectOutput'];
|
|
||||||
$expect = $match['expect'];
|
|
||||||
$expectExitCode = (int) $match['expectExitCode'];
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
die(sprintf('Test "%s" is not valid: '.$e->getMessage(), str_replace($fixturesDir.'/', '', $file)));
|
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
die(sprintf('Test "%s" is not valid, did not match the expected format.', str_replace($fixturesDir.'/', '', $file)));
|
if (!empty($testData['LOCK'])) {
|
||||||
|
$lock = JsonFile::parseJson($testData['LOCK']);
|
||||||
|
if (!isset($lock['hash'])) {
|
||||||
|
$lock['hash'] = md5(json_encode($composer));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!empty($testData['INSTALLED'])) {
|
||||||
|
$installed = JsonFile::parseJson($testData['INSTALLED']);
|
||||||
|
}
|
||||||
|
$run = $testData['RUN'];
|
||||||
|
if (!empty($testData['EXPECT-LOCK'])) {
|
||||||
|
$expectLock = JsonFile::parseJson($testData['EXPECT-LOCK']);
|
||||||
|
}
|
||||||
|
$expectOutput = isset($testData['EXPECT-OUTPUT']) ? $testData['EXPECT-OUTPUT'] : null;
|
||||||
|
$expect = $testData['EXPECT'];
|
||||||
|
$expectExitCode = isset($testData['EXPECT-EXIT-CODE']) ? (int) $testData['EXPECT-EXIT-CODE'] : 0;
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
die(sprintf('Test "%s" is not valid: '.$e->getMessage(), str_replace($fixturesDir.'/', '', $file)));
|
||||||
}
|
}
|
||||||
|
|
||||||
$tests[basename($file)] = array(str_replace($fixturesDir.'/', '', $file), $message, $condition, $composer, $lock, $installed, $run, $expectLock, $expectOutput, $expect, $expectExitCode);
|
$tests[basename($file)] = array(str_replace($fixturesDir.'/', '', $file), $message, $condition, $composer, $lock, $installed, $run, $expectLock, $expectOutput, $expect, $expectExitCode);
|
||||||
|
@ -329,4 +311,59 @@ class InstallerTest extends TestCase
|
||||||
|
|
||||||
return $tests;
|
return $tests;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function readTestFile(\SplFileInfo $file, $fixturesDir)
|
||||||
|
{
|
||||||
|
$tokens = preg_split('#(?:^|\n*)--([A-Z-]+)--\n#', file_get_contents($file->getRealPath()), null, PREG_SPLIT_DELIM_CAPTURE);
|
||||||
|
|
||||||
|
$sectionInfo = array(
|
||||||
|
'TEST' => true,
|
||||||
|
'CONDITION' => false,
|
||||||
|
'COMPOSER' => true,
|
||||||
|
'LOCK' => false,
|
||||||
|
'INSTALLED' => false,
|
||||||
|
'RUN' => true,
|
||||||
|
'EXPECT-LOCK' => false,
|
||||||
|
'EXPECT-OUTPUT' => false,
|
||||||
|
'EXPECT-EXIT-CODE' => false,
|
||||||
|
'EXPECT' => true,
|
||||||
|
);
|
||||||
|
|
||||||
|
$section = null;
|
||||||
|
foreach ($tokens as $i => $token)
|
||||||
|
{
|
||||||
|
if (null === $section && empty($token)) {
|
||||||
|
continue; // skip leading blank
|
||||||
|
}
|
||||||
|
|
||||||
|
if (null === $section) {
|
||||||
|
if (!isset($sectionInfo[$token])) {
|
||||||
|
throw new \RuntimeException(sprintf(
|
||||||
|
'The test file "%s" must not contain a section named "%s".',
|
||||||
|
str_replace($fixturesDir.'/', '', $file),
|
||||||
|
$token
|
||||||
|
));
|
||||||
|
}
|
||||||
|
$section = $token;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$sectionData = $token;
|
||||||
|
|
||||||
|
$data[$section] = $sectionData;
|
||||||
|
$section = $sectionData = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($sectionInfo as $section => $required) {
|
||||||
|
if ($required && !isset($data[$section])) {
|
||||||
|
throw new \RuntimeException(sprintf(
|
||||||
|
'The test file "%s" must have a section named "%s".',
|
||||||
|
str_replace($fixturesDir.'/', '', $file),
|
||||||
|
$section
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue