first commit
This commit is contained in:
113
vendor/yiisoft/yii2-bootstrap5/tests/TestCase.php
vendored
Normal file
113
vendor/yiisoft/yii2-bootstrap5/tests/TestCase.php
vendored
Normal file
@ -0,0 +1,113 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace yiiunit\extensions\bootstrap5;
|
||||
|
||||
use Yii;
|
||||
use yii\base\Action;
|
||||
use yii\base\Module;
|
||||
use yii\di\Container;
|
||||
use yii\helpers\ArrayHelper;
|
||||
use yii\web\Controller;
|
||||
|
||||
/**
|
||||
* This is the base class for all yii framework unit tests.
|
||||
*/
|
||||
class TestCase extends \PHPUnit\Framework\TestCase
|
||||
{
|
||||
/**
|
||||
* Asserting two strings equality ignoring line endings
|
||||
*/
|
||||
public function assertEqualsWithoutLE(string $expected, string $actual)
|
||||
{
|
||||
$expected = str_replace("\r\n", "\n", $expected);
|
||||
$actual = str_replace("\r\n", "\n", $actual);
|
||||
|
||||
$this->assertEquals($expected, $actual);
|
||||
}
|
||||
|
||||
/**
|
||||
* Asserting two strings equality ignoring line endings
|
||||
*/
|
||||
public function assertContainsWithoutLE(string $needle, string $haystack)
|
||||
{
|
||||
$needle = str_replace("\r\n", "\n", $needle);
|
||||
$haystack = str_replace("\r\n", "\n", $haystack);
|
||||
|
||||
$this->assertStringContainsString($needle, $haystack);
|
||||
}
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
$this->mockWebApplication();
|
||||
}
|
||||
|
||||
protected function tearDown(): void
|
||||
{
|
||||
parent::tearDown();
|
||||
$this->destroyApplication();
|
||||
}
|
||||
|
||||
protected function mockWebApplication(array $config = [], string $appClass = '\yii\web\Application')
|
||||
{
|
||||
new $appClass(ArrayHelper::merge([
|
||||
'id' => 'testapp',
|
||||
'basePath' => __DIR__,
|
||||
'vendorPath' => dirname(__DIR__) . '/vendor',
|
||||
'language' => 'en-US',
|
||||
'aliases' => [
|
||||
'@bower' => '@vendor/bower-asset',
|
||||
'@npm' => '@vendor/npm-asset',
|
||||
],
|
||||
'components' => [
|
||||
'i18n' => [
|
||||
'translations' => [
|
||||
'yii/bootstrap5*' => [
|
||||
'class' => 'yii\i18n\GettextMessageSource',
|
||||
'sourceLanguage' => 'en-US',
|
||||
'basePath' => '@yii/bootstrap5/messages',
|
||||
],
|
||||
],
|
||||
],
|
||||
'request' => [
|
||||
'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
|
||||
'scriptFile' => __DIR__ . '/index.php',
|
||||
'scriptUrl' => '/index.php',
|
||||
],
|
||||
],
|
||||
], $config));
|
||||
}
|
||||
|
||||
/**
|
||||
* Mocks controller action with parameters
|
||||
*/
|
||||
protected function mockAction(string $controllerId, string $actionID, ?string $moduleID = null, array $params = [])
|
||||
{
|
||||
Yii::$app->controller = $controller = new Controller($controllerId, Yii::$app);
|
||||
$controller->actionParams = $params;
|
||||
$controller->action = new Action($actionID, $controller);
|
||||
|
||||
if ($moduleID !== null) {
|
||||
$controller->module = new Module($moduleID);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes controller
|
||||
*/
|
||||
protected function removeMockedAction()
|
||||
{
|
||||
Yii::$app->controller = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Destroys application in Yii::$app by setting it to null.
|
||||
*/
|
||||
protected function destroyApplication()
|
||||
{
|
||||
Yii::$app = null;
|
||||
Yii::$container = new Container();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user