1
0
Fork 0

Move slow integration test to separate fixtures directory and add to slow group

pull/8733/head
Nils Adermann 2020-10-22 10:14:17 +02:00
parent c37dce0bb3
commit c0236c5ed2
2 changed files with 20 additions and 1 deletions

View File

@ -184,6 +184,15 @@ class InstallerTest extends TestCase
return $cases; return $cases;
} }
/**
* @group slow
* @dataProvider getSlowIntegrationTests
*/
public function testSlowIntegration($file, $message, $condition, $composerConfig, $lock, $installed, $run, $expectLock, $expectInstalled, $expectOutput, $expect, $expectResult)
{
return $this->testIntegration($file, $message, $condition, $composerConfig, $lock, $installed, $run, $expectLock, $expectInstalled, $expectOutput, $expect, $expectResult);
}
/** /**
* @dataProvider getIntegrationTests * @dataProvider getIntegrationTests
*/ */
@ -379,9 +388,19 @@ class InstallerTest extends TestCase
} }
} }
public function getSlowIntegrationTests()
{
return $this->loadIntegrationTests('installer-slow/');
}
public function getIntegrationTests() public function getIntegrationTests()
{ {
$fixturesDir = realpath(__DIR__.'/Fixtures/installer/'); return $this->loadIntegrationTests('installer/');
}
public function loadIntegrationTests($path)
{
$fixturesDir = realpath(__DIR__.'/Fixtures/'.$path);
$tests = array(); $tests = array();
foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($fixturesDir), \RecursiveIteratorIterator::LEAVES_ONLY) as $file) { foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($fixturesDir), \RecursiveIteratorIterator::LEAVES_ONLY) as $file) {