2015-04-27 19:24:14 +00:00
|
|
|
# rubocop:disable all
|
2018-06-05 06:40:40 +00:00
|
|
|
|
2012-05-04 11:33:05 +00:00
|
|
|
require 'test_helper'
|
2014-12-29 08:31:44 +00:00
|
|
|
|
2012-05-04 11:33:05 +00:00
|
|
|
class EmailParserTest < ActiveSupport::TestCase
|
2018-08-22 10:05:14 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
to write new .yml files for emails you can use the following code:
|
|
|
|
|
|
|
|
File.write('test/data/mail/mailXXX.yml', Channel::EmailParser.new.parse(File.read('test/data/mail/mailXXX.box')).slice(:from, :from_email, :from_display_name, :to, :cc, :subject, :body, :content_type, :'reply-to').to_yaml)
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2012-05-04 11:33:05 +00:00
|
|
|
test 'parse' do
|
2018-06-05 06:40:40 +00:00
|
|
|
msg_files = Dir.glob(Rails.root.join('test', 'data', 'mail', 'mail*.box')).sort
|
|
|
|
|
|
|
|
messages = msg_files.select { |f| File.exists?(f.ext('yml')) }
|
|
|
|
.map do |f|
|
|
|
|
{
|
|
|
|
source: File.basename(f),
|
|
|
|
content: YAML.load(File.read(f.ext('yml'))),
|
|
|
|
parsed: Channel::EmailParser.new.parse(File.read(f)),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
messages.each do |m|
|
|
|
|
# assert: raw content hash is a subset of parsed message hash
|
2018-07-04 15:03:04 +00:00
|
|
|
expected_msg = m[:content].except(:attachments)
|
|
|
|
parsed_msg = m[:parsed].slice(*expected_msg.keys)
|
2018-08-22 10:05:14 +00:00
|
|
|
|
|
|
|
expected_msg.each do |key, value|
|
|
|
|
assert_equal(value, parsed_msg[key], "parsed message data does not match test/data/mail/#{m[:source]}: #{key}")
|
|
|
|
end
|
2018-06-05 06:40:40 +00:00
|
|
|
|
|
|
|
# assert: attachments in parsed message hash match metadata in raw hash
|
|
|
|
next if m[:content][:attachments].blank?
|
|
|
|
|
|
|
|
# the formats of m[:content][:attachments] and m[:parsed][:attachments] don't match,
|
|
|
|
# so we have to convert one to the other
|
|
|
|
parsed_attachment_metadata = m[:parsed][:attachments].map do |a|
|
|
|
|
{
|
|
|
|
md5: Digest::MD5.hexdigest(a[:data]),
|
|
|
|
cid: a[:preferences]['Content-ID'],
|
|
|
|
filename: a[:filename],
|
|
|
|
}.with_indifferent_access
|
|
|
|
end
|
|
|
|
|
|
|
|
m[:content][:attachments].sort_by { |a| a[:md5] }
|
|
|
|
.zip(parsed_attachment_metadata.sort_by { |a| a[:md5] })
|
|
|
|
.each do |content, parsed|
|
|
|
|
assert_operator(content, :<=, parsed,
|
|
|
|
"parsed attachment data from #{m[:source]} does not match " \
|
|
|
|
"attachment metadata from #{m[:source].ext('yml')}")
|
2012-07-02 18:52:27 +00:00
|
|
|
end
|
2018-06-05 06:40:40 +00:00
|
|
|
end
|
2012-05-04 11:33:05 +00:00
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|