Browse Source

additional test for mail by Pavel Rosický (#24616)

git-svn-id: http://svn.redmine.org/redmine/trunk@16274 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.4.0
Toshi MARUYAMA 7 years ago
parent
commit
3ac569c4d8
2 changed files with 24 additions and 0 deletions
  1. 14
    0
      test/fixtures/mail_handler/invalid_utf8.eml
  2. 10
    0
      test/unit/mail_handler_test.rb

+ 14
- 0
test/fixtures/mail_handler/invalid_utf8.eml View File

@@ -0,0 +1,14 @@
From: John Smith <JSmith@somenet.foo>
To: "redmine@somenet.foo" <redmine@somenet.foo>
Subject: This is a test
Content-Type: multipart/alternative;
boundary="_c20d9cfa-d16a-43a3-a7e5-71da7877ab23_"

--_c20d9cfa-d16a-43a3-a7e5-71da7877ab23_
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable

=D0=97=D0=B4=D1=80=D0=B0=D0=B2=D1=81=D1=82=D0=B2=D1=83=D0=B9=D1=82=D0=B5=AA

--_c20d9cfa-d16a-43a3-a7e5-71da7877ab23_--


+ 10
- 0
test/unit/mail_handler_test.rb View File

@@ -538,6 +538,16 @@ class MailHandlerTest < ActiveSupport::TestCase
assert_equal 'd8e8fca2dc0f896fd7cb4cb0031ba249', attachment.digest
end

def test_invalid_utf8
issue = submit_email(
'invalid_utf8.eml',
:issue => {:project => 'ecookbook'}
)
assert_kind_of Issue, issue
description = "\xD0\x97\xD0\xB4\xD1\x80\xD0\xB0\xD0\xB2\xD1\x81\xD1\x82\xD0\xB2\xD1\x83\xD0\xB9\xD1\x82\xD0\xB5?".force_encoding('UTF-8')
assert_equal description, issue.description
end

def test_gmail_with_attachment_ja
issue = submit_email(
'gmail_with_attachment_ja.eml',

Loading…
Cancel
Save