-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathSMTPTest.php
More file actions
241 lines (201 loc) · 6.71 KB
/
SMTPTest.php
File metadata and controls
241 lines (201 loc) · 6.71 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
<?php
namespace Utopia\Tests\Adapter\Email;
use Utopia\Messaging\Adapter\Email\SMTP;
use Utopia\Messaging\Messages\Email;
use Utopia\Messaging\Messages\Email\Attachment;
use Utopia\Tests\Adapter\Base;
class SMTPTest extends Base
{
public function testSendEmail(): void
{
$sender = new SMTP(
host: 'maildev',
port: 1025,
);
$to = 'tester@localhost.test';
$subject = 'Test Subject';
$content = 'Test Content';
$fromName = 'Test Sender';
$fromEmail = 'sender@localhost.test';
$message = new Email(
to: [$to],
subject: $subject,
content: $content,
fromName: $fromName,
fromEmail: $fromEmail,
);
$response = $sender->send($message);
$lastEmail = $this->getLastEmail();
$this->assertResponse($response);
$this->assertEquals($to, $lastEmail['to'][0]['address']);
$this->assertEquals($fromEmail, $lastEmail['from'][0]['address']);
$this->assertEquals($subject, $lastEmail['subject']);
$this->assertEquals($content, \trim($lastEmail['text']));
}
public function testSendEmailWithAttachment(): void
{
$sender = new SMTP(
host: 'maildev',
port: 1025,
);
$to = 'tester@localhost.test';
$subject = 'Test Subject';
$content = 'Test Content';
$fromName = 'Test Sender';
$fromEmail = 'sender@localhost.test';
$message = new Email(
to: [$to],
subject: $subject,
content: $content,
fromName: $fromName,
fromEmail: $fromEmail,
attachments: [new Attachment(
name: 'image.png',
path: __DIR__ . '/../../../assets/image.png',
type: 'image/png'
)],
);
$response = $sender->send($message);
$lastEmail = $this->getLastEmail();
$this->assertResponse($response);
$this->assertEquals($to, $lastEmail['to'][0]['address']);
$this->assertEquals($fromEmail, $lastEmail['from'][0]['address']);
$this->assertEquals($subject, $lastEmail['subject']);
$this->assertEquals($content, \trim($lastEmail['text']));
}
public function testSendEmailOnlyBCC(): void
{
$sender = new SMTP(
host: 'maildev',
port: 1025,
);
$subject = 'Test Subject';
$content = 'Test Content';
$fromName = 'Test Sender';
$fromEmail = 'sender@localhost.test';
$bcc = [
[
'email' => 'tester2@localhost.test',
'name' => 'Test Recipient 2',
],
];
$message = new Email(
to: [],
subject: $subject,
content: $content,
fromName: $fromName,
fromEmail: $fromEmail,
bcc: $bcc,
);
$response = $sender->send($message);
$lastEmail = $this->getLastEmail();
$this->assertResponse($response);
$this->assertEquals($fromEmail, $lastEmail['from'][0]['address']);
$this->assertEquals($subject, $lastEmail['subject']);
$this->assertEquals($content, \trim($lastEmail['text']));
}
public function testAttachmentWithStringContent(): void
{
$content = 'Hello, this is raw file content.';
$attachment = new Attachment(
name: 'readme.txt',
path: '',
type: 'text/plain',
content: $content,
);
$this->assertEquals('readme.txt', $attachment->getName());
$this->assertEquals('', $attachment->getPath());
$this->assertEquals('text/plain', $attachment->getType());
$this->assertEquals($content, $attachment->getContent());
}
public function testAttachmentWithoutStringContentDefaultsToNull(): void
{
$attachment = new Attachment(
name: 'image.png',
path: '/tmp/image.png',
type: 'image/png',
);
$this->assertNull($attachment->getContent());
}
public function testSMTPConstructorWithKeepAliveAndTimelimit(): void
{
$sender = new SMTP(
host: 'maildev',
port: 1025,
keepAlive: true,
timelimit: 60,
);
$this->assertInstanceOf(SMTP::class, $sender);
$this->assertEquals('SMTP', $sender->getName());
}
public function testSMTPConstructorDefaultsAreBackwardsCompatible(): void
{
// Existing call signature still works without new params
$sender = new SMTP(
host: 'maildev',
port: 1025,
);
$this->assertInstanceOf(SMTP::class, $sender);
}
public function testSendEmailWithStringAttachment(): void
{
$sender = new SMTP(
host: 'maildev',
port: 1025,
);
$to = 'tester@localhost.test';
$subject = 'String Attachment Test';
$content = 'Test with string attachment';
$fromName = 'Test Sender';
$fromEmail = 'sender@localhost.test';
$message = new Email(
to: [$to],
subject: $subject,
content: $content,
fromName: $fromName,
fromEmail: $fromEmail,
attachments: [new Attachment(
name: 'note.txt',
path: '',
type: 'text/plain',
content: 'This is inline content',
)],
);
$response = $sender->send($message);
$lastEmail = $this->getLastEmail();
$this->assertResponse($response);
$this->assertEquals($to, $lastEmail['to'][0]['address']);
$this->assertEquals($subject, $lastEmail['subject']);
}
public function testSendEmailWithKeepAlive(): void
{
$sender = new SMTP(
host: 'maildev',
port: 1025,
keepAlive: true,
timelimit: 15,
);
$to = 'tester@localhost.test';
$fromEmail = 'sender@localhost.test';
// Send first message
$message1 = new Email(
to: [$to],
subject: 'KeepAlive Test 1',
content: 'First message',
fromName: 'Test',
fromEmail: $fromEmail,
);
$response1 = $sender->send($message1);
$this->assertResponse($response1);
// Send second message — should reuse the PHPMailer instance
$message2 = new Email(
to: [$to],
subject: 'KeepAlive Test 2',
content: 'Second message',
fromName: 'Test',
fromEmail: $fromEmail,
);
$response2 = $sender->send($message2);
$this->assertResponse($response2);
}
}