From 422c8baeb9639cc51a9f7d458c521f9bd4d98969 Mon Sep 17 00:00:00 2001 From: shugo Date: Mon, 26 Mar 2012 14:39:16 +0000 Subject: * lib/net/ftp.rb (parse_pasv_port): refactored. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/net/ftp.rb | 5 +++-- test/net/ftp/test_ftp.rb | 8 ++++++++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1975c04ee3..f68193c483 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Mar 26 23:19:03 2012 Shugo Maeda + + * lib/net/ftp.rb (parse_pasv_port): refactored. + Mon Mar 26 19:49:49 2012 Shugo Maeda * test/net/ftp/test_ftp.rb: add the test, which was forgotten in the diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb index 4fc7fabee3..a92a792b35 100644 --- a/lib/net/ftp.rb +++ b/lib/net/ftp.rb @@ -963,8 +963,9 @@ module Net private :parse_pasv_ipv6_host def parse_pasv_port(s) - high, low = s.split(/,/).map(&:to_i) - return (high << 8) + low + return s.split(/,/).map(&:to_i).inject { |x, y| + (x << 8) + y + } end private :parse_pasv_port diff --git a/test/net/ftp/test_ftp.rb b/test/net/ftp/test_ftp.rb index 242394063c..209250d675 100644 --- a/test/net/ftp/test_ftp.rb +++ b/test/net/ftp/test_ftp.rb @@ -99,4 +99,12 @@ class FTPTest < Test::Unit::TestCase ftp.send(:parse229, "229 ) foo bar (") end end + + def test_parse_pasv_port + ftp = Net::FTP.new + assert_equal(12, ftp.send(:parse_pasv_port, "12")) + assert_equal(3106, ftp.send(:parse_pasv_port, "12,34")) + assert_equal(795192, ftp.send(:parse_pasv_port, "12,34,56")) + assert_equal(203569230, ftp.send(:parse_pasv_port, "12,34,56,78")) + end end -- cgit v1.2.3