mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/net/smtp.rb: Added Net::SMTP#rset method to implement the SMTP
RSET command. [ruby-trunk - Feature #5373] * NEWS: ditto. * test/net/smtp/test_smtp.rb: Test for the above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b1f2effda8
commit
f2a13e60d9
4 changed files with 42 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Tue Mar 12 02:25:19 2013 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
* lib/net/smtp.rb: Added Net::SMTP#rset method to implement the SMTP
|
||||||
|
RSET command. [ruby-trunk - Feature #5373]
|
||||||
|
* NEWS: ditto.
|
||||||
|
* test/net/smtp/test_smtp.rb: Test for the above.
|
||||||
|
|
||||||
Mon Mar 11 22:44:57 2013 Tanaka Akira <akr@fsij.org>
|
Mon Mar 11 22:44:57 2013 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* lib/resolv-replace.rb (TCPSocket#initialize): resolve the 3rd
|
* lib/resolv-replace.rb (TCPSocket#initialize): resolve the 3rd
|
||||||
|
|
4
NEWS
4
NEWS
|
@ -25,5 +25,9 @@ with all sufficient information, see the ChangeLog file.
|
||||||
The ancestors of a singleton class now include that singleton class.
|
The ancestors of a singleton class now include that singleton class.
|
||||||
|
|
||||||
=== Stdlib updates (outstanding ones only)
|
=== Stdlib updates (outstanding ones only)
|
||||||
|
|
||||||
|
* Net::SMTP
|
||||||
|
* Added Net::SMTP#rset to implement the RSET comamnd
|
||||||
|
|
||||||
=== Stdlib compatibility issues (excluding feature bug fixes)
|
=== Stdlib compatibility issues (excluding feature bug fixes)
|
||||||
=== C API updates
|
=== C API updates
|
||||||
|
|
|
@ -815,6 +815,12 @@ module Net
|
||||||
|
|
||||||
public
|
public
|
||||||
|
|
||||||
|
# Aborts the current mail transaction
|
||||||
|
|
||||||
|
def rset
|
||||||
|
getok('RSET')
|
||||||
|
end
|
||||||
|
|
||||||
def starttls
|
def starttls
|
||||||
getok('STARTTLS')
|
getok('STARTTLS')
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,8 +1,26 @@
|
||||||
require 'net/smtp'
|
require 'net/smtp'
|
||||||
|
require 'stringio'
|
||||||
require 'minitest/autorun'
|
require 'minitest/autorun'
|
||||||
|
|
||||||
module Net
|
module Net
|
||||||
class TestSMTP < MiniTest::Unit::TestCase
|
class TestSMTP < MiniTest::Unit::TestCase
|
||||||
|
class FakeSocket
|
||||||
|
def initialize out = "250 OK\n"
|
||||||
|
@write_io = StringIO.new
|
||||||
|
@read_io = StringIO.new out
|
||||||
|
end
|
||||||
|
|
||||||
|
def writeline line
|
||||||
|
@write_io.write "#{line}\r\n"
|
||||||
|
end
|
||||||
|
|
||||||
|
def readline
|
||||||
|
line = @read_io.gets
|
||||||
|
raise 'ran out of input' unless line
|
||||||
|
line.chop
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def test_esmtp
|
def test_esmtp
|
||||||
smtp = Net::SMTP.new 'localhost', 25
|
smtp = Net::SMTP.new 'localhost', 25
|
||||||
assert smtp.esmtp
|
assert smtp.esmtp
|
||||||
|
@ -12,5 +30,12 @@ module Net
|
||||||
assert_equal 'omg', smtp.esmtp
|
assert_equal 'omg', smtp.esmtp
|
||||||
assert_equal 'omg', smtp.esmtp?
|
assert_equal 'omg', smtp.esmtp?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_rset
|
||||||
|
smtp = Net::SMTP.new 'localhost', 25
|
||||||
|
smtp.instance_variable_set :@socket, FakeSocket.new
|
||||||
|
|
||||||
|
assert smtp.rset
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue