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
|
# encoding: utf-8
# frozen_string_literal: true
require 'spec_helper'
describe "Round Tripping" do
it "should round trip a basic email" do
mail = Mail.new('Subject: FooBar')
mail.body "This is Text"
parsed_mail = Mail.new(mail.to_s)
expect(parsed_mail.subject.to_s).to eq "FooBar"
expect(parsed_mail.body.to_s).to eq "This is Text"
end
it "should round trip a html multipart email" do
mail = Mail.new('Subject: FooBar')
mail.text_part = Mail::Part.new do
body "This is Text"
end
mail.html_part = Mail::Part.new do
content_type "text/html; charset=US-ASCII"
body "<b>This is HTML</b>"
end
parsed_mail = Mail.new(mail.to_s)
expect(parsed_mail.mime_type).to eq 'multipart/alternative'
expect(parsed_mail.boundary).to eq mail.boundary
expect(parsed_mail.parts.length).to eq 2
expect(parsed_mail.parts[0].body.to_s).to eq "This is Text"
expect(parsed_mail.parts[1].body.to_s).to eq "<b>This is HTML</b>"
end
it "should round trip an email" do
initial = Mail.new do
to "mikel@test.lindsaar.net"
subject "testing round tripping"
body "Really testing round tripping."
from "system@test.lindsaar.net"
cc "nobody@test.lindsaar.net"
bcc "bob@test.lindsaar.net"
date Time.local(2009, 11, 6)
add_file :filename => "foo.txt", :content => "I have \ntwo lines\n\n"
end
expect(Mail.new(initial.encoded).encoded).to eq initial.encoded
end
it "should round trip attachment newlines" do
body = "I have \ntwo lines\n\n"
initial = Mail.new
initial.add_file :filename => "foo.txt", :content => body
expect(Mail.new(initial.encoded).attachments.first.decoded).to eq body
end
end
|