net-sftp 2.1.2 → 2.1.3.rc2

Sign up to get free protection for your applications and to get access to all the features.
metadata.gz.sig CHANGED
Binary file
@@ -1,20 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIDNjCCAh6gAwIBAgIBADANBgkqhkiG9w0BAQUFADBBMQ8wDQYDVQQDDAZkZWxh
3
- bm8xGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZFgNj
4
- b20wHhcNMTMwMjA2MTE1NzQ1WhcNMTQwMjA2MTE1NzQ1WjBBMQ8wDQYDVQQDDAZk
5
- ZWxhbm8xGTAXBgoJkiaJk/IsZAEZFglzb2x1dGlvdXMxEzARBgoJkiaJk/IsZAEZ
6
- FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDg1hMtl0XsMuUK
7
- AKTgYWv3gjj7vuEsE2EjT+vyBg8/LpqVVwZziiaebJT9IZiQ+sCFqbiakj0b53pI
8
- hg1yOaBEmH6/W0L7rwzqaRV9sW1eJs9JxFYQCnd67zUnzj8nnRlOjG+hhIG+Vsij
9
- npsGbt28pefuNZJjO5q2clAlfSniIIHfIsU7/StEYu6FUGOjnwryZ0r5yJlr9RrE
10
- Gs+q0DW8QnZ9UpAfuDFQZuIqeKQFFLE7nMmCGaA+0BN1nLl3fVHNbLHq7Avk8+Z+
11
- ZuuvkdscbHlO/l+3xCNQ5nUnHwq0ADAbMLOlmiYYzqXoWLjmeI6me/clktJCfN2R
12
- oZG3UQvvAgMBAAGjOTA3MAkGA1UdEwQCMAAwHQYDVR0OBBYEFMSJOEtHzE4l0azv
13
- M0JK0kKNToK1MAsGA1UdDwQEAwIEsDANBgkqhkiG9w0BAQUFAAOCAQEAtOdE73qx
14
- OH2ydi9oT2hS5f9G0y1Z70Tlwh+VGExyfxzVE9XwC+iPpJxNraiHYgF/9/oky7ZZ
15
- R9q0/tJneuhAenZdiQkX7oi4O3v9wRS6YHoWBxMPFKVRLNTzvVJsbmfpCAlp5/5g
16
- ps4wQFy5mibElGVlOobf/ghqZ25HS9J6kd0/C/ry0AUtTogsL7TxGwT4kbCx63ub
17
- 3vywEEhsJUzfd97GCABmtQfRTldX/j7F1z/5wd8p+hfdox1iibds9ZtfaZA3KzKn
18
- kchWN9B6zg9r1XMQ8BM2Jz0XoPanPe354+lWwjpkRKbFow/ZbQHcCLCq24+N6b6g
19
- dgKfNDzwiDpqCA==
20
- -----END CERTIFICATE-----
@@ -1,184 +0,0 @@
1
- require 'test/unit'
2
- require 'mocha/setup'
3
- require 'stringio'
4
-
5
- begin
6
- require 'net/ssh'
7
- require 'net/ssh/version'
8
- raise LoadError, "wrong version" unless Net::SSH::Version::STRING >= '1.99.0'
9
- rescue LoadError
10
- begin
11
- gem 'net-ssh', ">= 2.0.0"
12
- require 'net/ssh'
13
- rescue LoadError => e
14
- abort "could not load net/ssh v2 (#{e.inspect})"
15
- end
16
- end
17
-
18
- $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
19
- require 'net/sftp'
20
- require 'net/sftp/constants'
21
- require 'net/ssh/test'
22
-
23
- class Net::SFTP::TestCase < Test::Unit::TestCase
24
- include Net::SFTP::Constants::PacketTypes
25
- include Net::SSH::Test
26
-
27
- def default_test
28
- # do nothing, this is just hacky-hack to work around Test::Unit's
29
- # insistence that all TestCase subclasses have at least one test
30
- # method defined.
31
- end
32
-
33
- protected
34
-
35
- def raw(*args)
36
- Net::SSH::Buffer.from(*args).to_s
37
- end
38
-
39
- def sftp(options={})
40
- @sftp ||= Net::SFTP::Session.new(connection(options))
41
- end
42
-
43
- def expect_sftp_session(opts={})
44
- story do |session|
45
- channel = session.opens_channel
46
- channel.sends_subsystem("sftp")
47
- channel.sends_packet(FXP_INIT, :long, opts[:client_version] || Net::SFTP::Session::HIGHEST_PROTOCOL_VERSION_SUPPORTED)
48
- channel.gets_packet(FXP_VERSION, :long, opts[:server_version] || Net::SFTP::Session::HIGHEST_PROTOCOL_VERSION_SUPPORTED)
49
- yield channel if block_given?
50
- end
51
- end
52
-
53
- def assert_scripted_command
54
- assert_scripted do
55
- sftp.connect!
56
- yield
57
- sftp.loop
58
- end
59
- end
60
-
61
- def assert_progress_reported_open(expect={})
62
- assert_progress_reported(:open, expect)
63
- end
64
-
65
- def assert_progress_reported_put(offset, data, expect={})
66
- assert_equal offset, current_event[3] if offset
67
- assert_equal data, current_event[4] if data
68
- assert_progress_reported(:put, expect)
69
- end
70
-
71
- def assert_progress_reported_get(offset, data, expect={})
72
- assert_equal offset, current_event[3] if offset
73
- if data.is_a?(Fixnum)
74
- assert_equal data, current_event[4].length
75
- elsif data
76
- assert_equal data, current_event[4]
77
- end
78
- assert_progress_reported(:get, expect)
79
- end
80
-
81
- def assert_progress_reported_close(expect={})
82
- assert_progress_reported(:close, expect)
83
- end
84
-
85
- def assert_progress_reported_mkdir(dir)
86
- assert_equal dir, current_event[2]
87
- assert_progress_reported(:mkdir)
88
- end
89
-
90
- def assert_progress_reported_finish
91
- assert_progress_reported(:finish)
92
- end
93
-
94
- def assert_progress_reported(event, expect={})
95
- assert_equal event, current_event[0]
96
- expect.each do |key, value|
97
- assert_equal value, current_event[2].send(key)
98
- end
99
- next_event!
100
- end
101
-
102
- def assert_no_more_reported_events
103
- assert @progress.empty?, "expected #{@progress.empty?} to be empty"
104
- end
105
-
106
- def prepare_progress!
107
- @progress = []
108
- end
109
-
110
- def record_progress(event)
111
- @progress << event
112
- end
113
-
114
- def current_event
115
- @progress.first
116
- end
117
-
118
- def next_event!
119
- @progress.shift
120
- end
121
- end
122
-
123
- class Net::SSH::Test::Channel
124
- def gets_packet(type, *args)
125
- gets_data(sftp_packet(type, *args))
126
- end
127
-
128
- def gets_packet_in_two(fragment_len, type, *args)
129
- fragment_len ||= 0
130
- whole_packet = sftp_packet(type, *args)
131
-
132
- if 0 < fragment_len && fragment_len < whole_packet.length
133
- gets_data(whole_packet[0, whole_packet.length - fragment_len])
134
- gets_data(whole_packet[-fragment_len..-1])
135
- else
136
- gets_data(whole_packet)
137
- end
138
- end
139
-
140
- def sends_packet(type, *args)
141
- sends_data(sftp_packet(type, *args))
142
- end
143
-
144
- private
145
-
146
- def sftp_packet(type, *args)
147
- data = Net::SSH::Buffer.from(*args)
148
- Net::SSH::Buffer.from(:long, data.length+1, :byte, type, :raw, data).to_s
149
- end
150
- end
151
-
152
- class ProgressHandler
153
- def initialize(progress_ref)
154
- @progress = progress_ref
155
- end
156
-
157
- def on_open(*args)
158
- @progress << [:open, *args]
159
- end
160
-
161
- def on_put(*args)
162
- @progress << [:put, *args]
163
- end
164
-
165
- def on_close(*args)
166
- @progress << [:close, *args]
167
- end
168
-
169
- def on_finish(*args)
170
- @progress << [:finish, *args]
171
- end
172
- end
173
-
174
- # "prime the pump", so to speak: predefine the modules we need so we can
175
- # define the test classes in a more elegant short-hand.
176
-
177
- module Protocol
178
- module V01; end
179
- module V02; end
180
- module V03; end
181
- module V04; end
182
- module V05; end
183
- module V06; end
184
- end
@@ -1,97 +0,0 @@
1
- require 'common'
2
-
3
- module Etc; end
4
-
5
- class Protocol::V01::TestAttributes < Net::SFTP::TestCase
6
- def test_from_buffer_should_correctly_parse_buffer_and_return_attribute_object
7
- attributes = attributes_factory.from_buffer(full_buffer)
8
-
9
- assert_equal 1234567890, attributes.size
10
- assert_equal 100, attributes.uid
11
- assert_equal 200, attributes.gid
12
- assert_equal 0755, attributes.permissions
13
- assert_equal 1234567890, attributes.atime
14
- assert_equal 2345678901, attributes.mtime
15
- assert_equal "second", attributes.extended["first"]
16
- end
17
-
18
- def test_from_buffer_should_correctly_parse_buffer_with_attribute_subset_and_return_attribute_object
19
- buffer = Net::SSH::Buffer.from(:long, 0x4, :long, 0755)
20
-
21
- attributes = attributes_factory.from_buffer(buffer)
22
-
23
- assert_equal 0755, attributes.permissions
24
-
25
- assert_nil attributes.size
26
- assert_nil attributes.uid
27
- assert_nil attributes.gid
28
- assert_nil attributes.atime
29
- assert_nil attributes.mtime
30
- assert_nil attributes.extended
31
- end
32
-
33
- def test_attributes_to_s_should_build_binary_representation
34
- attributes = attributes_factory.new(
35
- :size => 1234567890,
36
- :uid => 100, :gid => 200,
37
- :permissions => 0755,
38
- :atime => 1234567890, :mtime => 2345678901,
39
- :extended => { "first" => "second" })
40
-
41
- assert_equal full_buffer.to_s, attributes.to_s
42
- end
43
-
44
- def test_attributes_to_s_should_build_binary_representation_when_subset_is_present
45
- attributes = attributes_factory.new(:permissions => 0755)
46
- assert_equal Net::SSH::Buffer.from(:long, 0x4, :long, 0755).to_s, attributes.to_s
47
- end
48
-
49
- def test_attributes_to_s_with_owner_and_group_should_translate_to_uid_and_gid
50
- attributes = attributes_factory.new(:owner => "jamis", :group => "sftp")
51
- attributes.expects(:require).with("etc").times(2)
52
- Etc.expects(:getpwnam).with("jamis").returns(mock('user', :uid => 100))
53
- Etc.expects(:getgrnam).with("sftp").returns(mock('group', :gid => 200))
54
- assert_equal Net::SSH::Buffer.from(:long, 0x2, :long, 100, :long, 200).to_s, attributes.to_s
55
- end
56
-
57
- def test_owner_should_translate_from_uid
58
- attributes = attributes_factory.new(:uid => 100)
59
- attributes.expects(:require).with("etc")
60
- Etc.expects(:getpwuid).with(100).returns(mock('user', :name => "jamis"))
61
- assert_equal "jamis", attributes.owner
62
- end
63
-
64
- def test_group_should_translate_from_gid
65
- attributes = attributes_factory.new(:gid => 200)
66
- attributes.expects(:require).with("etc")
67
- Etc.expects(:getgrgid).with(200).returns(mock('group', :name => "sftp"))
68
- assert_equal "sftp", attributes.group
69
- end
70
-
71
- def test_type_should_infer_type_from_permissions
72
- assert_equal af::T_SOCKET, af.new(:permissions => 0140755).type
73
- assert_equal af::T_SYMLINK, af.new(:permissions => 0120755).type
74
- assert_equal af::T_REGULAR, af.new(:permissions => 0100755).type
75
- assert_equal af::T_BLOCK_DEVICE, af.new(:permissions => 060755).type
76
- assert_equal af::T_DIRECTORY, af.new(:permissions => 040755).type
77
- assert_equal af::T_CHAR_DEVICE, af.new(:permissions => 020755).type
78
- assert_equal af::T_FIFO, af.new(:permissions => 010755).type
79
- assert_equal af::T_UNKNOWN, af.new(:permissions => 0755).type
80
- assert_equal af::T_UNKNOWN, af.new.type
81
- end
82
-
83
- private
84
-
85
- def full_buffer
86
- Net::SSH::Buffer.from(:long, 0x8000000f,
87
- :int64, 1234567890, :long, 100, :long, 200,
88
- :long, 0755, :long, 1234567890, :long, 2345678901,
89
- :long, 1, :string, "first", :string, "second")
90
- end
91
-
92
- def attributes_factory
93
- Net::SFTP::Protocol::V01::Attributes
94
- end
95
-
96
- alias af attributes_factory
97
- end
@@ -1,210 +0,0 @@
1
- require 'common'
2
-
3
- # NOTE: these tests assume that the interface to Net::SFTP::Session#send_packet
4
- # will remain constant. If that interface ever changes, these tests will need
5
- # to be updated!
6
-
7
- class Protocol::V01::TestBase < Net::SFTP::TestCase
8
- include Net::SFTP::Constants
9
- include Net::SFTP::Constants::PacketTypes
10
- include Net::SFTP::Constants::OpenFlags
11
-
12
- def setup
13
- @session = stub('session', :logger => nil)
14
- @base = driver.new(@session)
15
- end
16
-
17
- def test_version
18
- assert_equal 1, @base.version
19
- end
20
-
21
- def test_parse_handle_packet_should_read_string_from_packet_and_return_handle_in_hash
22
- packet = Net::SSH::Buffer.from(:string, "here is a string")
23
- assert_equal({ :handle => "here is a string" }, @base.parse_handle_packet(packet))
24
- end
25
-
26
- def test_parse_status_packet_should_read_long_from_packet_and_return_code_in_hash
27
- packet = Net::SSH::Buffer.from(:long, 15)
28
- assert_equal({ :code => 15 }, @base.parse_status_packet(packet))
29
- end
30
-
31
- def test_parse_data_packet_should_read_string_from_packet_and_return_data_in_hash
32
- packet = Net::SSH::Buffer.from(:string, "here is a string")
33
- assert_equal({ :data => "here is a string" }, @base.parse_data_packet(packet))
34
- end
35
-
36
- def test_parse_attrs_packet_should_use_correct_attributes_class
37
- Net::SFTP::Protocol::V01::Attributes.expects(:from_buffer).with(:packet).returns(:result)
38
- assert_equal({ :attrs => :result }, @base.parse_attrs_packet(:packet))
39
- end
40
-
41
- def test_parse_name_packet_should_use_correct_name_class
42
- packet = Net::SSH::Buffer.from(:long, 2,
43
- :string, "name1", :string, "long1", :long, 0x4, :long, 0755,
44
- :string, "name2", :string, "long2", :long, 0x4, :long, 0550)
45
- names = @base.parse_name_packet(packet)[:names]
46
-
47
- assert_not_nil names
48
- assert_equal 2, names.length
49
- assert_instance_of Net::SFTP::Protocol::V01::Name, names.first
50
-
51
- assert_equal "name1", names.first.name
52
- assert_equal "long1", names.first.longname
53
- assert_equal 0755, names.first.attributes.permissions
54
-
55
- assert_equal "name2", names.last.name
56
- assert_equal "long2", names.last.longname
57
- assert_equal 0550, names.last.attributes.permissions
58
- end
59
-
60
- def test_open_with_numeric_flag_should_accept_IO_constants
61
- @session.expects(:send_packet).with(FXP_OPEN, :long, 0,
62
- :string, "/path/to/file",
63
- :long, FV1::READ | FV1::WRITE | FV1::CREAT | FV1::EXCL,
64
- :raw, attributes.new.to_s)
65
-
66
- assert_equal 0, @base.open("/path/to/file", IO::RDWR | IO::CREAT | IO::EXCL, {})
67
- end
68
-
69
- { "r" => FV1::READ,
70
- "rb" => FV1::READ,
71
- "r+" => FV1::READ | FV1::WRITE,
72
- "w" => FV1::WRITE | FV1::TRUNC | FV1::CREAT,
73
- "w+" => FV1::WRITE | FV1::READ | FV1::TRUNC | FV1::CREAT,
74
- "a" => FV1::APPEND | FV1::WRITE | FV1::CREAT,
75
- "a+" => FV1::APPEND | FV1::WRITE | FV1::READ | FV1::CREAT
76
- }.each do |flags, options|
77
- safe_name = flags.sub(/\+/, "_plus")
78
- define_method("test_open_with_#{safe_name}_should_translate_correctly") do
79
- @session.expects(:send_packet).with(FXP_OPEN, :long, 0,
80
- :string, "/path/to/file", :long, options, :raw, attributes.new.to_s)
81
-
82
- assert_equal 0, @base.open("/path/to/file", flags, {})
83
- end
84
- end
85
-
86
- def test_open_with_attributes_converts_hash_to_attribute_packet
87
- @session.expects(:send_packet).with(FXP_OPEN, :long, 0,
88
- :string, "/path/to/file", :long, FV1::READ, :raw, attributes.new(:permissions => 0755).to_s)
89
- @base.open("/path/to/file", "r", :permissions => 0755)
90
- end
91
-
92
- def test_close_should_send_close_packet
93
- @session.expects(:send_packet).with(FXP_CLOSE, :long, 0, :string, "handle")
94
- assert_equal 0, @base.close("handle")
95
- end
96
-
97
- def test_read_should_send_read_packet
98
- @session.expects(:send_packet).with(FXP_READ, :long, 0, :string, "handle", :int64, 1234, :long, 5678)
99
- assert_equal 0, @base.read("handle", 1234, 5678)
100
- end
101
-
102
- def test_write_should_send_write_packet
103
- @session.expects(:send_packet).with(FXP_WRITE, :long, 0, :string, "handle", :int64, 1234, :string, "data")
104
- assert_equal 0, @base.write("handle", 1234, "data")
105
- end
106
-
107
- def test_lstat_should_send_lstat_packet
108
- @session.expects(:send_packet).with(FXP_LSTAT, :long, 0, :string, "/path/to/file")
109
- assert_equal 0, @base.lstat("/path/to/file")
110
- end
111
-
112
- def test_lstat_should_ignore_flags_parameter
113
- @session.expects(:send_packet).with(FXP_LSTAT, :long, 0, :string, "/path/to/file")
114
- assert_equal 0, @base.lstat("/path/to/file", 12345)
115
- end
116
-
117
- def test_fstat_should_send_fstat_packet
118
- @session.expects(:send_packet).with(FXP_FSTAT, :long, 0, :string, "handle")
119
- assert_equal 0, @base.fstat("handle")
120
- end
121
-
122
- def test_fstat_should_ignore_flags_parameter
123
- @session.expects(:send_packet).with(FXP_FSTAT, :long, 0, :string, "handle")
124
- assert_equal 0, @base.fstat("handle", 12345)
125
- end
126
-
127
- def test_setstat_should_translate_hash_to_attributes_and_send_setstat_packet
128
- @session.expects(:send_packet).with(FXP_SETSTAT, :long, 0, :string, "/path/to/file", :raw, attributes.new(:atime => 1, :mtime => 2, :permissions => 0755).to_s)
129
- assert_equal 0, @base.setstat("/path/to/file", :atime => 1, :mtime => 2, :permissions => 0755)
130
- end
131
-
132
- def test_fsetstat_should_translate_hash_to_attributes_and_send_fsetstat_packet
133
- @session.expects(:send_packet).with(FXP_FSETSTAT, :long, 0, :string, "handle", :raw, attributes.new(:atime => 1, :mtime => 2, :permissions => 0755).to_s)
134
- assert_equal 0, @base.fsetstat("handle", :atime => 1, :mtime => 2, :permissions => 0755)
135
- end
136
-
137
- def test_opendir_should_send_opendir_packet
138
- @session.expects(:send_packet).with(FXP_OPENDIR, :long, 0, :string, "/path/to/dir")
139
- assert_equal 0, @base.opendir("/path/to/dir")
140
- end
141
-
142
- def test_readdir_should_send_readdir_packet
143
- @session.expects(:send_packet).with(FXP_READDIR, :long, 0, :string, "handle")
144
- assert_equal 0, @base.readdir("handle")
145
- end
146
-
147
- def test_remove_should_send_remove_packet
148
- @session.expects(:send_packet).with(FXP_REMOVE, :long, 0, :string, "/path/to/file")
149
- assert_equal 0, @base.remove("/path/to/file")
150
- end
151
-
152
- def test_mkdir_should_translate_hash_to_attributes_and_send_mkdir_packet
153
- @session.expects(:send_packet).with(FXP_MKDIR, :long, 0, :string, "/path/to/dir", :raw, attributes.new(:atime => 1, :mtime => 2, :permissions => 0755).to_s)
154
- assert_equal 0, @base.mkdir("/path/to/dir", :atime => 1, :mtime => 2, :permissions => 0755)
155
- end
156
-
157
- def test_rmdir_should_send_rmdir_packet
158
- @session.expects(:send_packet).with(FXP_RMDIR, :long, 0, :string, "/path/to/dir")
159
- assert_equal 0, @base.rmdir("/path/to/dir")
160
- end
161
-
162
- def test_realpath_should_send_realpath_packet
163
- @session.expects(:send_packet).with(FXP_REALPATH, :long, 0, :string, "/path/to/file")
164
- assert_equal 0, @base.realpath("/path/to/file")
165
- end
166
-
167
- def test_stat_should_send_stat_packet
168
- @session.expects(:send_packet).with(FXP_STAT, :long, 0, :string, "/path/to/file")
169
- assert_equal 0, @base.stat("/path/to/file")
170
- end
171
-
172
- def test_stat_should_ignore_flags_parameter
173
- @session.expects(:send_packet).with(FXP_STAT, :long, 0, :string, "/path/to/file")
174
- assert_equal 0, @base.stat("/path/to/file", 12345)
175
- end
176
-
177
- def test_rename_should_raise_not_implemented_error
178
- assert_raises(NotImplementedError) { @base.rename("/path/to/old", "/path/to/new") }
179
- end
180
-
181
- def test_readlink_should_raise_not_implemented_error
182
- assert_raises(NotImplementedError) { @base.readlink("/path/to/link") }
183
- end
184
-
185
- def test_symlink_should_raise_not_implemented_error
186
- assert_raises(NotImplementedError) { @base.symlink("/path/to/link", "/path/to/file") }
187
- end
188
-
189
- def test_link_should_raise_not_implemented_error
190
- assert_raises(NotImplementedError) { @base.link("/path/to/link", "/path/to/file", true) }
191
- end
192
-
193
- def test_block_should_raise_not_implemented_error
194
- assert_raises(NotImplementedError) { @base.block("handle", 100, 200, 0) }
195
- end
196
-
197
- def test_unblock_should_raise_not_implemented_error
198
- assert_raises(NotImplementedError) { @base.unblock("handle", 100, 200) }
199
- end
200
-
201
- private
202
-
203
- def driver
204
- Net::SFTP::Protocol::V01::Base
205
- end
206
-
207
- def attributes
208
- Net::SFTP::Protocol::V01::Attributes
209
- end
210
- end