21
21
use yii \base \ExitException ;
22
22
use yii \base \Security ;
23
23
use yii \base \UserException ;
24
- use yii \mail \BaseMessage ;
24
+ use yii \mail \BaseMailer ;
25
+ use yii \mail \MailEvent ;
26
+ use yii \mail \MessageInterface ;
25
27
use yii \web \Application ;
26
28
use yii \web \IdentityInterface ;
27
29
use yii \web \Request as YiiRequest ;
@@ -36,20 +38,21 @@ class Yii2 extends Client
36
38
{
37
39
use Shared \PhpSuperGlobalsConverter;
38
40
39
- const MAIL_METHODS = [
41
+
42
+ public const array MAIL_METHODS = [
40
43
self ::MAIL_CATCH ,
41
44
self ::MAIL_EVENT_AFTER ,
42
45
self ::MAIL_EVENT_BEFORE ,
43
46
self ::MAIL_IGNORE
44
47
];
45
48
46
- public const MAIL_CATCH = 'catch ' ;
47
- public const MAIL_EVENT_AFTER = 'after ' ;
48
- public const MAIL_EVENT_BEFORE = 'before ' ;
49
- public const MAIL_IGNORE = 'ignore ' ;
49
+ public const string MAIL_CATCH = 'catch ' ;
50
+ public const string MAIL_EVENT_AFTER = 'after ' ;
51
+ public const string MAIL_EVENT_BEFORE = 'before ' ;
52
+ public const string MAIL_IGNORE = 'ignore ' ;
50
53
51
54
52
- const CLEAN_METHODS = [
55
+ const array CLEAN_METHODS = [
53
56
self ::CLEAN_RECREATE ,
54
57
self ::CLEAN_CLEAR ,
55
58
self ::CLEAN_FORCE_RECREATE ,
@@ -59,55 +62,55 @@ class Yii2 extends Client
59
62
* Clean the response object by recreating it.
60
63
* This might lose behaviors / event handlers / other changes that are done in the application bootstrap phase.
61
64
*/
62
- const CLEAN_RECREATE = 'recreate ' ;
65
+ const string CLEAN_RECREATE = 'recreate ' ;
63
66
/**
64
67
* Same as recreate but will not warn when behaviors / event handlers are lost.
65
68
*/
66
- const CLEAN_FORCE_RECREATE = 'force_recreate ' ;
69
+ const string CLEAN_FORCE_RECREATE = 'force_recreate ' ;
67
70
/**
68
71
* Clean the response object by resetting specific properties via its' `clear()` method.
69
72
* This will keep behaviors / event handlers, but could inadvertently leave some changes intact.
70
73
* @see \yii\web\Response::clear()
71
74
*/
72
- const CLEAN_CLEAR = 'clear ' ;
75
+ const string CLEAN_CLEAR = 'clear ' ;
73
76
74
77
/**
75
78
* Do not clean the response, instead the test writer will be responsible for manually resetting the response in
76
79
* between requests during one test
77
80
*/
78
- const CLEAN_MANUAL = 'manual ' ;
81
+ const string CLEAN_MANUAL = 'manual ' ;
79
82
80
83
81
84
/**
82
85
* @var string application config file
83
86
*/
84
- public $ configFile ;
87
+ public string $ configFile ;
85
88
86
89
/**
87
- * @var self::MAIL_CATCH|self::MAIL_IGNORE|self::MAIL_AFTER |self::MAIL_BEFORE $mailMethod method for handling mails
90
+ * @var self::MAIL_CATCH|self::MAIL_IGNORE|self::MAIL_EVENT_AFTER |self::MAIL_EVENT_BEFORE method for handling mails
88
91
*/
89
- public $ mailMethod ;
92
+ public string $ mailMethod ;
90
93
/**
91
94
* @var string method for cleaning the response object before each request
92
95
*/
93
- public $ responseCleanMethod ;
96
+ public string $ responseCleanMethod ;
94
97
95
98
/**
96
99
* @var string method for cleaning the request object before each request
97
100
*/
98
- public $ requestCleanMethod ;
101
+ public string $ requestCleanMethod ;
99
102
100
103
/**
101
104
* @var string[] List of component names that must be recreated before each request
102
105
*/
103
- public $ recreateComponents = [];
106
+ public array $ recreateComponents = [];
104
107
105
108
/**
106
109
* This option is there primarily for backwards compatibility.
107
110
* It means you cannot make any modification to application state inside your app, since they will get discarded.
108
111
* @var bool whether to recreate the whole application before each request
109
112
*/
110
- public $ recreateApplication = false ;
113
+ public bool $ recreateApplication = false ;
111
114
112
115
/**
113
116
* @var bool whether to close the session in between requests inside a single test, if recreateApplication is set to true
@@ -122,7 +125,7 @@ class Yii2 extends Client
122
125
123
126
124
127
/**
125
- * @var list<BaseMessage >
128
+ * @var list<MessageInterface >
126
129
*/
127
130
private array $ emails = [];
128
131
@@ -224,7 +227,7 @@ public function getInternalDomains(): array
224
227
225
228
/**
226
229
* @internal
227
- * @return list<BaseMessage > List of sent emails
230
+ * @return list<MessageInterface > List of sent emails
228
231
*/
229
232
public function getEmails (): array
230
233
{
@@ -303,7 +306,13 @@ public function startApp(?\yii\log\Logger $logger = null): void
303
306
unset($ config ['container ' ]);
304
307
}
305
308
306
- $ config = $ this ->mockMailer ($ config );
309
+ match ($ this ->mailMethod ) {
310
+ self ::MAIL_CATCH => $ config = $ this ->mockMailer ($ config ),
311
+ self ::MAIL_EVENT_AFTER => $ config ['components ' ]['mailer ' ]['on ' . BaseMailer::EVENT_AFTER_SEND ] = fn (MailEvent $ event ) => $ this ->emails [] = $ event ->message ,
312
+ self ::MAIL_EVENT_BEFORE => $ config ['components ' ]['mailer ' ]['on ' . BaseMailer::EVENT_BEFORE_SEND ] = fn (MailEvent $ event ) => $ this ->emails [] = $ event ->message ,
313
+ self ::MAIL_IGNORE => null // Do nothing
314
+ };
315
+
307
316
$ app = Yii::createObject ($ config );
308
317
if (!$ app instanceof \yii \base \Application) {
309
318
throw new ModuleConfigException ($ this , "Failed to initialize Yii2 app " );
@@ -468,7 +477,7 @@ protected function mockMailer(array $config): array
468
477
469
478
$ mailerConfig = [
470
479
'class ' => TestMailer::class,
471
- 'callback ' => function (BaseMessage $ message ): void {
480
+ 'callback ' => function (MessageInterface $ message ): void {
472
481
$ this ->emails [] = $ message ;
473
482
}
474
483
];
0 commit comments