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
|
# encoding: utf-8
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
a.parse(text).should_not 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
a.parse(text).should_not 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
a.parse(text).addresses.size.should 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
a.parse(text).addresses.size.should eq 1
a.parse(text).addresses.first.local.should eq 'ababab'
end
end
end
|