2014-12-29 15:39:59 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class EmailBuildTest < ActiveSupport::TestCase
|
|
|
|
test 'document complete check' do
|
|
|
|
|
|
|
|
html = '<b>test</b>'
|
2016-02-10 23:09:27 +00:00
|
|
|
result = Channel::EmailBuild.html_complete_check(html)
|
2014-12-29 15:39:59 +00:00
|
|
|
|
2016-02-10 23:09:27 +00:00
|
|
|
assert(result =~ /^<\!DOCTYPE/, 'test 1')
|
|
|
|
assert(result !~ /^.+?<\!DOCTYPE/, 'test 1')
|
|
|
|
assert(result =~ /<html>/, 'test 1')
|
|
|
|
assert(result =~ /font-family/, 'test 1')
|
|
|
|
assert(result =~ %r{<b>test</b>}, 'test 1')
|
2014-12-29 15:39:59 +00:00
|
|
|
|
|
|
|
html = 'invalid <!DOCTYPE html><html><b>test</b></html>'
|
2016-02-10 23:09:27 +00:00
|
|
|
result = Channel::EmailBuild.html_complete_check(html)
|
2014-12-29 15:39:59 +00:00
|
|
|
|
2016-02-10 23:09:27 +00:00
|
|
|
assert(result !~ /^<\!DOCTYPE/, 'test 2')
|
|
|
|
assert(result =~ /^.+?<\!DOCTYPE/, 'test 2')
|
|
|
|
assert(result =~ /<html>/, 'test 2')
|
|
|
|
assert(result !~ /font-family/, 'test 2')
|
|
|
|
assert(result =~ %r{<b>test</b>}, 'test 2')
|
2014-12-29 15:39:59 +00:00
|
|
|
|
|
|
|
end
|
2014-12-29 23:25:57 +00:00
|
|
|
|
2014-12-30 14:08:20 +00:00
|
|
|
test 'html email + attachment check' do
|
2014-12-29 23:25:57 +00:00
|
|
|
html = '<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
|
|
<head>
|
|
|
|
<body style="font-family:Geneva,Helvetica,Arial,sans-serif; font-size: 12px;">
|
2014-12-30 14:08:20 +00:00
|
|
|
<div>> Welcome!</div><div>></div><div>> Thank you for installing Zammad. äöüß</div><div>></div>
|
2014-12-29 23:25:57 +00:00
|
|
|
</body>
|
|
|
|
</html>'
|
|
|
|
mail = Channel::EmailBuild.build(
|
2015-04-27 13:42:53 +00:00
|
|
|
from: 'sender@example.com',
|
|
|
|
to: 'recipient@example.com',
|
|
|
|
body: html,
|
|
|
|
content_type: 'text/html',
|
|
|
|
attachments: [
|
2014-12-30 14:08:20 +00:00
|
|
|
{
|
2016-01-15 17:22:57 +00:00
|
|
|
'Mime-Type' => 'image/png',
|
2014-12-30 14:08:20 +00:00
|
|
|
:content => 'xxx',
|
|
|
|
:filename => 'somename.png',
|
|
|
|
},
|
|
|
|
],
|
2014-12-29 23:25:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
should = '> Welcome!
|
|
|
|
>
|
2014-12-30 14:08:20 +00:00
|
|
|
> Thank you for installing Zammad. äöüß
|
2015-01-08 14:27:44 +00:00
|
|
|
>'
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(should, mail.text_part.body.to_s)
|
|
|
|
assert_equal(html, mail.html_part.body.to_s)
|
2014-12-29 23:25:57 +00:00
|
|
|
|
2014-12-30 14:08:20 +00:00
|
|
|
parser = Channel::EmailParser.new
|
2016-02-10 23:09:27 +00:00
|
|
|
data = parser.parse(mail.to_s)
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
# check body
|
2017-03-10 06:49:01 +00:00
|
|
|
should = '<div>> Welcome!</div><div>></div><div>> Thank you for installing Zammad. äöüß</div><div>></div>'
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(should, data[:body])
|
2016-06-21 15:14:15 +00:00
|
|
|
assert_equal('text/html', data[:content_type])
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
# check count of attachments, only 2, because 3 part is text message and is already in body
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(2, data[:attachments].length)
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
# check attachments
|
|
|
|
if data[:attachments]
|
|
|
|
data[:attachments].each { |attachment|
|
|
|
|
if attachment[:filename] == 'message.html'
|
2017-03-24 10:02:13 +00:00
|
|
|
assert_nil(attachment[:preferences]['Content-ID'])
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(true, attachment[:preferences]['content-alternative'])
|
|
|
|
assert_equal('text/html', attachment[:preferences]['Mime-Type'])
|
|
|
|
assert_equal('UTF-8', attachment[:preferences]['Charset'])
|
2014-12-30 14:08:20 +00:00
|
|
|
elsif attachment[:filename] == 'somename.png'
|
2017-03-24 10:02:13 +00:00
|
|
|
assert_nil(attachment[:preferences]['Content-ID'])
|
|
|
|
assert_nil(attachment[:preferences]['content-alternative'])
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal('image/png', attachment[:preferences]['Mime-Type'])
|
|
|
|
assert_equal('UTF-8', attachment[:preferences]['Charset'])
|
2014-12-30 14:08:20 +00:00
|
|
|
else
|
2016-02-10 23:09:27 +00:00
|
|
|
assert(false, "invalid attachment, should not be there, #{attachment.inspect}")
|
2014-12-30 14:08:20 +00:00
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
2014-12-29 23:25:57 +00:00
|
|
|
end
|
|
|
|
|
2014-12-30 14:08:20 +00:00
|
|
|
test 'plain email + attachment check' do
|
|
|
|
text = '> Welcome!
|
|
|
|
>
|
|
|
|
> Thank you for installing Zammad. äöüß
|
2015-01-08 14:27:44 +00:00
|
|
|
>'
|
2014-12-30 14:08:20 +00:00
|
|
|
mail = Channel::EmailBuild.build(
|
2015-04-27 13:42:53 +00:00
|
|
|
from: 'sender@example.com',
|
|
|
|
to: 'recipient@example.com',
|
|
|
|
body: text,
|
|
|
|
attachments: [
|
2014-12-30 14:08:20 +00:00
|
|
|
{
|
2016-01-15 17:22:57 +00:00
|
|
|
'Mime-Type' => 'image/png',
|
2014-12-30 14:08:20 +00:00
|
|
|
:content => 'xxx',
|
|
|
|
:filename => 'somename.png',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
should = '> Welcome!
|
|
|
|
>
|
|
|
|
> Thank you for installing Zammad. äöüß
|
2015-01-08 14:27:44 +00:00
|
|
|
>'
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(should, mail.text_part.body.to_s)
|
2017-03-24 10:02:13 +00:00
|
|
|
assert_nil(mail.html_part)
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
parser = Channel::EmailParser.new
|
2016-02-10 23:09:27 +00:00
|
|
|
data = parser.parse(mail.to_s)
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
# check body
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(should, data[:body])
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
# check count of attachments, 2
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(1, data[:attachments].length)
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
# check attachments
|
|
|
|
if data[:attachments]
|
|
|
|
data[:attachments].each { |attachment|
|
|
|
|
if attachment[:filename] == 'somename.png'
|
2017-03-24 10:02:13 +00:00
|
|
|
assert_nil(attachment[:preferences]['Content-ID'])
|
|
|
|
assert_nil(attachment[:preferences]['content-alternative'])
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal('image/png', attachment[:preferences]['Mime-Type'])
|
|
|
|
assert_equal('UTF-8', attachment[:preferences]['Charset'])
|
2014-12-30 14:08:20 +00:00
|
|
|
else
|
2016-02-10 23:09:27 +00:00
|
|
|
assert(false, "invalid attachment, should not be there, #{attachment.inspect}")
|
2014-12-30 14:08:20 +00:00
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'plain email + without attachment check' do
|
|
|
|
text = '> Welcome!
|
|
|
|
>
|
|
|
|
> Thank you for installing Zammad. äöüß
|
2015-01-08 14:27:44 +00:00
|
|
|
>'
|
2014-12-30 14:08:20 +00:00
|
|
|
mail = Channel::EmailBuild.build(
|
2015-04-27 13:42:53 +00:00
|
|
|
from: 'sender@example.com',
|
|
|
|
to: 'recipient@example.com',
|
|
|
|
body: text,
|
2014-12-30 14:08:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
should = '> Welcome!
|
|
|
|
>
|
|
|
|
> Thank you for installing Zammad. äöüß
|
2015-01-08 14:27:44 +00:00
|
|
|
>'
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(should, mail.body.to_s)
|
2017-03-24 10:02:13 +00:00
|
|
|
assert_nil(mail.html_part)
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
parser = Channel::EmailParser.new
|
2016-02-10 23:09:27 +00:00
|
|
|
data = parser.parse(mail.to_s)
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
# check body
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(should, data[:body])
|
2014-12-30 14:08:20 +00:00
|
|
|
|
|
|
|
# check count of attachments, 0
|
2016-02-10 23:09:27 +00:00
|
|
|
assert_equal(0, data[:attachments].length)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'email - html email client fixes' do
|
|
|
|
|
|
|
|
# https://github.com/martini/zammad/issues/165
|
|
|
|
html_raw = '<blockquote type="cite">some
|
|
|
|
text
|
|
|
|
</blockquote>
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
|
<blockquote type="cite">some
|
|
|
|
text
|
|
|
|
</blockquote>'
|
|
|
|
html_with_fixes = Channel::EmailBuild.html_mail_client_fixes(html_raw)
|
|
|
|
assert_not_equal(html_with_fixes, html_raw)
|
|
|
|
|
2016-06-09 13:00:11 +00:00
|
|
|
html_should = '<blockquote type="cite" style="border-left: 2px solid blue; margin: 0 0 16px; padding: 8px 12px 8px 12px;">some
|
2016-02-10 23:09:27 +00:00
|
|
|
text
|
|
|
|
</blockquote>
|
|
|
|
|
|
|
|
123
|
|
|
|
|
2016-06-09 13:00:11 +00:00
|
|
|
<blockquote type="cite" style="border-left: 2px solid blue; margin: 0 0 16px; padding: 8px 12px 8px 12px;">some
|
2016-02-10 23:09:27 +00:00
|
|
|
text
|
|
|
|
</blockquote>'
|
|
|
|
assert_equal(html_should, html_with_fixes)
|
2014-12-30 14:08:20 +00:00
|
|
|
|
2016-05-20 12:16:36 +00:00
|
|
|
html_raw = '<p>some
|
|
|
|
text
|
|
|
|
</p>
|
|
|
|
<p>123</p>'
|
|
|
|
html_with_fixes = Channel::EmailBuild.html_mail_client_fixes(html_raw)
|
|
|
|
assert_not_equal(html_with_fixes, html_raw)
|
|
|
|
|
|
|
|
html_should = '<p style="margin: 0;">some
|
|
|
|
text
|
|
|
|
</p>
|
|
|
|
<p style="margin: 0;">123</p>'
|
|
|
|
assert_equal(html_should, html_with_fixes)
|
2016-06-21 15:14:15 +00:00
|
|
|
|
|
|
|
html_raw = '<p>sometext</p><hr><p>123</p>'
|
|
|
|
html_with_fixes = Channel::EmailBuild.html_mail_client_fixes(html_raw)
|
|
|
|
assert_not_equal(html_with_fixes, html_raw)
|
|
|
|
|
|
|
|
html_should = '<p style="margin: 0;">sometext</p><hr style="margin-top: 6px; margin-bottom: 6px; border: 0; border-top: 1px solid #dfdfdf;"><p style="margin: 0;">123</p>'
|
|
|
|
assert_equal(html_should, html_with_fixes)
|
2014-12-30 14:08:20 +00:00
|
|
|
end
|
2014-12-29 23:25:57 +00:00
|
|
|
|
2016-11-25 12:43:28 +00:00
|
|
|
test 'from checks' do
|
|
|
|
|
|
|
|
quoted_in_one_line = Channel::EmailBuild.recipient_line('Somebody @ "Company"', 'some.body@example.com')
|
|
|
|
assert_equal('"Somebody @ \"Company\"" <some.body@example.com>', quoted_in_one_line)
|
|
|
|
|
|
|
|
quoted_in_one_line = Channel::EmailBuild.recipient_line('Somebody', 'some.body@example.com')
|
|
|
|
assert_equal('Somebody <some.body@example.com>', quoted_in_one_line)
|
|
|
|
|
|
|
|
quoted_in_one_line = Channel::EmailBuild.recipient_line('Somebody | Some Org', 'some.body@example.com')
|
|
|
|
assert_equal('"Somebody | Some Org" <some.body@example.com>', quoted_in_one_line)
|
|
|
|
|
|
|
|
quoted_in_one_line = Channel::EmailBuild.recipient_line('Test Master Agent via Support', 'some.body@example.com')
|
|
|
|
assert_equal('"Test Master Agent via Support" <some.body@example.com>', quoted_in_one_line)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|