Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F162706
mailer_test.exs
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
mailer_test.exs
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Emails.MailerTest
do
use
Pleroma.DataCase
alias
Pleroma.Emails.Mailer
import
Swoosh.TestAssertions
@email
%
Swoosh.Email
{
from
:
{
"Pleroma"
,
"noreply@example.com"
},
html_body
:
"Test email"
,
subject
:
"Pleroma test email"
,
to
:
[{
"Test User"
,
"user1@example.com"
}]
}
setup
do
:
clear_config
([
Pleroma.Emails.Mailer
,
:enabled
],
true
)
test
"not send email when mailer is disabled"
do
clear_config
([
Pleroma.Emails.Mailer
,
:enabled
],
false
)
Mailer
.
deliver
(
@email
)
:timer
.
sleep
(
100
)
refute_email_sent
(
from
:
{
"Pleroma"
,
"noreply@example.com"
},
to
:
[{
"Test User"
,
"user1@example.com"
}],
html_body
:
"Test email"
,
subject
:
"Pleroma test email"
)
end
test
"send email"
do
Mailer
.
deliver
(
@email
)
:timer
.
sleep
(
100
)
assert_email_sent
(
from
:
{
"Pleroma"
,
"noreply@example.com"
},
to
:
[{
"Test User"
,
"user1@example.com"
}],
html_body
:
"Test email"
,
subject
:
"Pleroma test email"
)
end
test
"perform"
do
Mailer
.
perform
(
:deliver_async
,
@email
,
[])
:timer
.
sleep
(
100
)
assert_email_sent
(
from
:
{
"Pleroma"
,
"noreply@example.com"
},
to
:
[{
"Test User"
,
"user1@example.com"
}],
html_body
:
"Test email"
,
subject
:
"Pleroma test email"
)
end
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Feb 21, 5:42 PM (13 h, 11 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
66784
Default Alt Text
mailer_test.exs (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment