Expand abbreviated option names.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56842 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2016-11-19 07:02:32 +00:00
parent 6839d47eb8
commit 77403c88cd
2 changed files with 23 additions and 21 deletions

View File

@ -176,18 +176,20 @@ module Net
#
# port:: Port number (default value is 21)
# ssl:: If options[:ssl] is true, then an attempt will be made
# to use SSL (now TLS) to connect to the server. For this to
# work OpenSSL [OSSL] and the Ruby OpenSSL [RSSL] extensions
# need to be installed. If options[:ssl] is a hash, it's
# passed to OpenSSL::SSL::SSLContext#set_params as parameters.
# to use SSL (now TLS) to connect to the server. For this
# to work OpenSSL [OSSL] and the Ruby OpenSSL [RSSL]
# extensions need to be installed. If options[:ssl] is a
# hash, it's passed to OpenSSL::SSL::SSLContext#set_params
# as parameters.
# private_data_connection:: If true, TLS is used for data connections.
# Default: +true+ when options[:ssl] is true.
# user:: Username for login. If options[:user] is the string
# username:: Username for login. If options[:user] is the string
# "anonymous" and the options[:password] is +nil+,
# "anonymous@" is used as a password.
# passwd:: Password for login.
# acct:: Account information for ACCT.
# passive:: When +true+, the connection is in passive mode. Default: +true+.
# password:: Password for login.
# account:: Account information for ACCT.
# passive:: When +true+, the connection is in passive mode. Default:
# +true+.
# debug_mode:: When +true+, all traffic to and from the server is
# written to +$stdout+. Default: +false+.
#
@ -198,9 +200,9 @@ module Net
rescue NoMethodError
# for backward compatibility
options = {}
options[:user] = user_or_options
options[:passwd] = passwd
options[:acct] = acct
options[:username] = user_or_options
options[:password] = passwd
options[:account] = acct
end
@host = nil
if options[:ssl]
@ -250,8 +252,8 @@ module Net
# the number of arguments passed to connect....
connect(host)
end
if options[:user]
login(options[:user], options[:passwd], options[:acct])
if options[:username]
login(options[:username], options[:password], options[:account])
end
end
end

View File

@ -239,9 +239,9 @@ class FTPTest < Test::Unit::TestCase
begin
ftp = Net::FTP.new(SERVER_ADDR,
port: server.port,
user: "foo",
passwd: "bar",
acct: "baz")
username: "foo",
password: "bar",
account: "baz")
assert_equal("USER foo\r\n", commands.shift)
assert_equal("PASS bar\r\n", commands.shift)
assert_equal("ACCT baz\r\n", commands.shift)
@ -267,7 +267,7 @@ class FTPTest < Test::Unit::TestCase
sock.print("200 Switching to Binary mode.\r\n")
}
begin
Net::FTP.open(SERVER_ADDR, port: server.port, user: "anonymous") do
Net::FTP.open(SERVER_ADDR, port: server.port, username: "anonymous") do
end
assert_equal("USER anonymous\r\n", commands.shift)
assert_equal("PASS anonymous@\r\n", commands.shift)