-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMailTest.php
More file actions
285 lines (251 loc) · 7.1 KB
/
Copy pathMailTest.php
File metadata and controls
285 lines (251 loc) · 7.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<?php
/**
* @author : Jakiboy
* @package : FloatPHP
* @subpackage : Classes Http Component Tests
* @version : 1.5.x
* @copyright : (c) 2018 - 2025 Jihad Sinnaour <[email protected]>
* @link : https://floatphp.com
* @license : MIT
*
* This file if a part of FloatPHP Framework.
*/
declare(strict_types=1);
namespace FloatPHP\Tests\Classes\Http;
use PHPUnit\Framework\TestCase;
use FloatPHP\Classes\Http\Mail;
/**
* Mail class tests.
*/
final class MailTest extends TestCase
{
private Mail $mail;
protected function setUp(): void
{
}
/**
* Test mail initialization.
*/
public function testMailInitialization(): void
{
$mail = new Mail();
$this->assertInstanceOf(Mail::class, $mail);
}
/**
* Test mail initialization with sender.
*/
public function testMailInitializationWithSender(): void
{
$this->assertInstanceOf(Mail::class, $mail);
}
/**
* Test set receiver.
*/
public function testTo(): void
{
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set multiple receivers.
*/
public function testMultipleTo(): void
{
$result = $this->mail
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set sender.
*/
public function testFrom(): void
{
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set sender without name.
*/
public function testFromWithoutName(): void
{
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set reply-to.
*/
public function testReplyTo(): void
{
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set CC.
*/
public function testSetCc(): void
{
$result = $this->mail->setCc($cc);
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set BCC.
*/
public function testSetBcc(): void
{
$result = $this->mail->setBcc($bcc);
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test send as HTML.
*/
public function testAsHtml(): void
{
$result = $this->mail->asHtml();
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set subject.
*/
public function testSubject(): void
{
$result = $this->mail->setSubject('Test Subject');
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set body.
*/
public function testBody(): void
{
$result = $this->mail->setBody('Test email body content');
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test add header.
*/
public function testAddHeader(): void
{
$result = $this->mail->addHeader('X-Custom-Header', 'Custom Value');
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set parameters.
*/
public function testSetParams(): void
{
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set wrapper.
*/
public function testWrap(): void
{
$result = $this->mail->wrap(100);
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test set wrapper with invalid value.
*/
public function testWrapWithInvalidValue(): void
{
$result = $this->mail->wrap(0); // Should use default
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test attachment method exists.
*/
public function testAttachMethodExists(): void
{
$this->assertTrue(method_exists(Mail::class, 'attach'));
}
/**
* Test method chaining.
*/
public function testMethodChaining(): void
{
$result = $this->mail
->to('[email protected]')
->setSubject('Test Subject')
->setBody('Test Body')
->asHtml()
->wrap(120);
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test mail with complex setup.
*/
public function testComplexMailSetup(): void
{
$result = $mail
->setSubject('Complex Test Email')
->setBody('<h1>HTML Email</h1><p>This is a test email.</p>')
->asHtml()
->addHeader('X-Priority', '1')
->wrap(78);
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test empty subject handling.
*/
public function testEmptySubject(): void
{
$result = $this->mail->setSubject('');
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test empty body handling.
*/
public function testEmptyBody(): void
{
$result = $this->mail->setBody('');
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test special characters in subject.
*/
public function testSpecialCharactersInSubject(): void
{
$result = $this->mail->setSubject('Tëst Sübject with Spëcial Charäcters');
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test long body content.
*/
public function testLongBodyContent(): void
{
$longBody = str_repeat('This is a very long email body content. ', 100);
$result = $this->mail->setBody($longBody);
$this->assertInstanceOf(Mail::class, $result);
}
/**
* Test HTML body content.
*/
public function testHtmlBodyContent(): void
{
$htmlBody = '
<html>
<head><title>Test Email</title></head>
<body>
<h1>Test Email</h1>
<p>This is a <strong>test</strong> email with <em>HTML</em> content.</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</body>
</html>
';
$result = $this->mail->setBody($htmlBody)->asHtml();
$this->assertInstanceOf(Mail::class, $result);
}
}