2017-01-11 09:48:51 -05:00
|
|
|
# frozen_string_literal: true
|
2012-11-06 00:30:17 -05:00
|
|
|
require "test/unit"
|
|
|
|
require "net/protocol"
|
|
|
|
require "stringio"
|
|
|
|
|
|
|
|
class TestProtocol < Test::Unit::TestCase
|
2014-05-23 08:36:30 -04:00
|
|
|
def test_should_properly_dot_stuff_period_with_no_endline
|
|
|
|
bug9627 = '[ruby-core:61441] [Bug #9627]'
|
2017-01-14 04:38:56 -05:00
|
|
|
sio = StringIO.new("".dup)
|
2014-05-23 08:36:30 -04:00
|
|
|
imio = Net::InternetMessageIO.new(sio)
|
|
|
|
email = "To: bob@aol.com\nlook, a period with no endline\n."
|
|
|
|
imio.write_message(email)
|
|
|
|
assert_equal("To: bob@aol.com\r\nlook, a period with no endline\r\n..\r\n.\r\n", sio.string, bug9627)
|
|
|
|
end
|
|
|
|
|
2012-11-06 00:30:17 -05:00
|
|
|
def test_each_crlf_line
|
|
|
|
assert_output('', '') do
|
2017-01-14 04:38:56 -05:00
|
|
|
sio = StringIO.new("".dup)
|
2012-11-08 05:04:24 -05:00
|
|
|
imio = Net::InternetMessageIO.new(sio)
|
|
|
|
assert_equal(23, imio.write_message("\u3042\r\u3044\n\u3046\r\n\u3048"))
|
|
|
|
assert_equal("\u3042\r\n\u3044\r\n\u3046\r\n\u3048\r\n.\r\n", sio.string)
|
|
|
|
|
2017-01-14 04:38:56 -05:00
|
|
|
sio = StringIO.new("".dup)
|
2012-11-08 05:04:24 -05:00
|
|
|
imio = Net::InternetMessageIO.new(sio)
|
|
|
|
assert_equal(8, imio.write_message("\u3042\r"))
|
|
|
|
assert_equal("\u3042\r\n.\r\n", sio.string)
|
2012-11-06 00:30:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|