forked from craftcms/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppTest.php
More file actions
57 lines (51 loc) · 1.52 KB
/
Copy pathAppTest.php
File metadata and controls
57 lines (51 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace crafttests\unit;
use Codeception\Test\Unit;
use Craft;
use craft\helpers\ArrayHelper;
use craft\mail\Mailer;
use craft\test\TestCase;
use craft\test\TestSetup;
use yii\base\InvalidConfigException;
/**
* Unit tests for App
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @author Global Network Group | Giel Tettelaar <giel@yellowflash.net>
* @since 3.2
*/
class AppTest extends TestCase
{
/**
* @dataProvider craftAppGetMethodsDataProvider
* @param string $instance
* @param array $map
* @throws InvalidConfigException
*/
public function testCraftAppGetMethods(string $instance, array $map): void
{
$func = $map[0];
self::assertInstanceOf($instance, Craft::$app->$func());
self::assertInstanceOf($instance, Craft::$app->get($map[1]));
// http://www.php.net/manual/en/language.variables.variable.php#example-107
self::assertInstanceOf($instance, Craft::$app->{$map[1]});
}
/**
* @return array
*/
public static function craftAppGetMethodsDataProvider(): array
{
$content = TestSetup::getCraftServiceMap();
// Dont test mailer. The test get's all fussy about it being a mock.
/** @noinspection PhpParamsInspection */
ArrayHelper::removeValue(
$content, [Mailer::class, ['getMailer', 'mailer']]
);
return $content;
}
}