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
|
# encoding: utf-8
# frozen_string_literal: true
require 'spec_helper'
describe "AddressListsParser" do
it "should parse an address" do
text = 'Mikel Lindsaar <test@lindsaar.net>, Friends: test2@lindsaar.net, Ada <test3@lindsaar.net>;'
a = Mail::Parsers::AddressListsParser.new
expect(a.parse(text)).not_to be_nil
end
it "should parse an address list separated by semicolons" do
text = 'Mikel Lindsaar <test@lindsaar.net>; Friends: test2@lindsaar.net; Ada <test3@lindsaar.net>;'
a = Mail::Parsers::AddressListsParser.new
expect(a.parse(text)).not_to be_nil
end
context "parsing an address with a space at the end" do
it "only finds a single address" do
text = 'Mikel Lindsaar <test@lindsaar.net> '
a = Mail::Parsers::AddressListsParser.new
expect(a.parse(text).addresses.size).to eq 1
end
end
context "parsing an address which begins with a comment" do
it "extracts local string correctly" do
text = '(xxxx xxxxxx xxxx)ababab@example.com'
a = Mail::Parsers::AddressListsParser.new
expect(a.parse(text).addresses.size).to eq 1
expect(a.parse(text).addresses.first.local).to eq 'ababab'
end
end
end
|