init
This commit is contained in:
89
vendor/codeception/base/src/Codeception/Suite.php
vendored
Normal file
89
vendor/codeception/base/src/Codeception/Suite.php
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
<?php
|
||||
namespace Codeception;
|
||||
|
||||
use Codeception\Test\Descriptor;
|
||||
use Codeception\Test\Interfaces\Dependent;
|
||||
|
||||
class Suite extends \PHPUnit\Framework\TestSuite
|
||||
{
|
||||
protected $modules;
|
||||
protected $baseName;
|
||||
|
||||
public function reorderDependencies()
|
||||
{
|
||||
$tests = [];
|
||||
foreach ($this->tests as $test) {
|
||||
$tests = array_merge($tests, $this->getDependencies($test));
|
||||
}
|
||||
|
||||
$queue = [];
|
||||
$hashes = [];
|
||||
foreach ($tests as $test) {
|
||||
if (in_array(spl_object_hash($test), $hashes)) {
|
||||
continue;
|
||||
}
|
||||
$hashes[] = spl_object_hash($test);
|
||||
$queue[] = $test;
|
||||
}
|
||||
$this->tests = $queue;
|
||||
}
|
||||
|
||||
protected function getDependencies($test)
|
||||
{
|
||||
if (!$test instanceof Dependent) {
|
||||
return [$test];
|
||||
}
|
||||
$tests = [];
|
||||
foreach ($test->fetchDependencies() as $requiredTestName) {
|
||||
$required = $this->findMatchedTest($requiredTestName);
|
||||
if (!$required) {
|
||||
continue;
|
||||
}
|
||||
$tests = array_merge($tests, $this->getDependencies($required));
|
||||
}
|
||||
$tests[] = $test;
|
||||
return $tests;
|
||||
}
|
||||
|
||||
protected function findMatchedTest($testSignature)
|
||||
{
|
||||
foreach ($this->tests as $test) {
|
||||
$signature = Descriptor::getTestSignature($test);
|
||||
if ($signature === $testSignature) {
|
||||
return $test;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getModules()
|
||||
{
|
||||
return $this->modules;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $modules
|
||||
*/
|
||||
public function setModules($modules)
|
||||
{
|
||||
$this->modules = $modules;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getBaseName()
|
||||
{
|
||||
return $this->baseName;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $baseName
|
||||
*/
|
||||
public function setBaseName($baseName)
|
||||
{
|
||||
$this->baseName = $baseName;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user