investtools-ftpd 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (219) hide show
  1. checksums.yaml +7 -0
  2. data/.travis.yml +5 -0
  3. data/.yardopts +7 -0
  4. data/Changelog.md +310 -0
  5. data/Gemfile +15 -0
  6. data/Gemfile.lock +93 -0
  7. data/LICENSE.md +9 -0
  8. data/README.md +371 -0
  9. data/Rakefile +14 -0
  10. data/VERSION +1 -0
  11. data/doc/benchmarks.md +82 -0
  12. data/doc/references.md +66 -0
  13. data/doc/rfc-compliance.md +292 -0
  14. data/examples/example.rb +275 -0
  15. data/examples/example_spec.rb +93 -0
  16. data/examples/hello_world.rb +32 -0
  17. data/features/example/eplf.feature +14 -0
  18. data/features/example/example.feature +18 -0
  19. data/features/example/read_only.feature +63 -0
  20. data/features/example/step_definitions/example_server.rb +11 -0
  21. data/features/ftp_server/abort.feature +13 -0
  22. data/features/ftp_server/allo.feature +33 -0
  23. data/features/ftp_server/append.feature +94 -0
  24. data/features/ftp_server/cdup.feature +36 -0
  25. data/features/ftp_server/command_errors.feature +13 -0
  26. data/features/ftp_server/concurrent_sessions.feature +14 -0
  27. data/features/ftp_server/delay_after_failed_login.feature +23 -0
  28. data/features/ftp_server/delete.feature +60 -0
  29. data/features/ftp_server/directory_navigation.feature +59 -0
  30. data/features/ftp_server/disconnect_after_failed_logins.feature +25 -0
  31. data/features/ftp_server/eprt.feature +55 -0
  32. data/features/ftp_server/epsv.feature +36 -0
  33. data/features/ftp_server/features.feature +38 -0
  34. data/features/ftp_server/file_structure.feature +43 -0
  35. data/features/ftp_server/get.feature +80 -0
  36. data/features/ftp_server/get_ipv6.feature +43 -0
  37. data/features/ftp_server/get_tls.feature +23 -0
  38. data/features/ftp_server/help.feature +21 -0
  39. data/features/ftp_server/implicit_tls.feature +23 -0
  40. data/features/ftp_server/invertability.feature +15 -0
  41. data/features/ftp_server/list.feature +94 -0
  42. data/features/ftp_server/list_tls.feature +29 -0
  43. data/features/ftp_server/logging.feature +11 -0
  44. data/features/ftp_server/login_auth_level_account.feature +51 -0
  45. data/features/ftp_server/login_auth_level_password.feature +59 -0
  46. data/features/ftp_server/login_auth_level_user.feature +31 -0
  47. data/features/ftp_server/max_connections.feature +39 -0
  48. data/features/ftp_server/mdtm.feature +53 -0
  49. data/features/ftp_server/mkdir.feature +70 -0
  50. data/features/ftp_server/mode.feature +43 -0
  51. data/features/ftp_server/name_list.feature +77 -0
  52. data/features/ftp_server/name_list_tls.feature +30 -0
  53. data/features/ftp_server/noop.feature +17 -0
  54. data/features/ftp_server/options.feature +17 -0
  55. data/features/ftp_server/pasv.feature +23 -0
  56. data/features/ftp_server/port.feature +49 -0
  57. data/features/ftp_server/put.feature +79 -0
  58. data/features/ftp_server/put_tls.feature +23 -0
  59. data/features/ftp_server/put_unique.feature +56 -0
  60. data/features/ftp_server/quit.feature +23 -0
  61. data/features/ftp_server/reinitialize.feature +13 -0
  62. data/features/ftp_server/rename.feature +97 -0
  63. data/features/ftp_server/rmdir.feature +71 -0
  64. data/features/ftp_server/site.feature +13 -0
  65. data/features/ftp_server/size.feature +69 -0
  66. data/features/ftp_server/status.feature +18 -0
  67. data/features/ftp_server/step_definitions/logging.rb +8 -0
  68. data/features/ftp_server/step_definitions/test_server.rb +65 -0
  69. data/features/ftp_server/structure_mount.feature +13 -0
  70. data/features/ftp_server/syntax_errors.feature +18 -0
  71. data/features/ftp_server/syst.feature +18 -0
  72. data/features/ftp_server/timeout.feature +26 -0
  73. data/features/ftp_server/type.feature +59 -0
  74. data/features/step_definitions/append.rb +15 -0
  75. data/features/step_definitions/client.rb +24 -0
  76. data/features/step_definitions/client_and_server_files.rb +24 -0
  77. data/features/step_definitions/client_files.rb +14 -0
  78. data/features/step_definitions/command.rb +5 -0
  79. data/features/step_definitions/connect.rb +37 -0
  80. data/features/step_definitions/delete.rb +15 -0
  81. data/features/step_definitions/directory_navigation.rb +26 -0
  82. data/features/step_definitions/error_replies.rb +115 -0
  83. data/features/step_definitions/features.rb +21 -0
  84. data/features/step_definitions/file_structure.rb +16 -0
  85. data/features/step_definitions/generic_send.rb +9 -0
  86. data/features/step_definitions/get.rb +16 -0
  87. data/features/step_definitions/help.rb +18 -0
  88. data/features/step_definitions/invalid_commands.rb +11 -0
  89. data/features/step_definitions/line_endings.rb +7 -0
  90. data/features/step_definitions/list.rb +73 -0
  91. data/features/step_definitions/login.rb +82 -0
  92. data/features/step_definitions/mkdir.rb +9 -0
  93. data/features/step_definitions/mode.rb +15 -0
  94. data/features/step_definitions/mtime.rb +23 -0
  95. data/features/step_definitions/noop.rb +15 -0
  96. data/features/step_definitions/options.rb +9 -0
  97. data/features/step_definitions/passive.rb +3 -0
  98. data/features/step_definitions/pending.rb +3 -0
  99. data/features/step_definitions/port.rb +5 -0
  100. data/features/step_definitions/put.rb +29 -0
  101. data/features/step_definitions/quit.rb +15 -0
  102. data/features/step_definitions/rename.rb +11 -0
  103. data/features/step_definitions/rmdir.rb +9 -0
  104. data/features/step_definitions/server_files.rb +61 -0
  105. data/features/step_definitions/server_title.rb +12 -0
  106. data/features/step_definitions/size.rb +20 -0
  107. data/features/step_definitions/status.rb +9 -0
  108. data/features/step_definitions/success_replies.rb +7 -0
  109. data/features/step_definitions/system.rb +7 -0
  110. data/features/step_definitions/timing.rb +19 -0
  111. data/features/step_definitions/type.rb +15 -0
  112. data/features/support/env.rb +4 -0
  113. data/features/support/example_server.rb +67 -0
  114. data/features/support/file_templates/ascii_unix +4 -0
  115. data/features/support/file_templates/ascii_windows +4 -0
  116. data/features/support/file_templates/binary +0 -0
  117. data/features/support/test_client.rb +250 -0
  118. data/features/support/test_file_templates.rb +33 -0
  119. data/features/support/test_server.rb +293 -0
  120. data/features/support/test_server_files.rb +57 -0
  121. data/ftpd.gemspec +283 -0
  122. data/insecure-test-cert.pem +29 -0
  123. data/investtools-ftpd.gemspec +284 -0
  124. data/lib/ftpd.rb +86 -0
  125. data/lib/ftpd/auth_levels.rb +9 -0
  126. data/lib/ftpd/cmd_abor.rb +13 -0
  127. data/lib/ftpd/cmd_allo.rb +20 -0
  128. data/lib/ftpd/cmd_appe.rb +24 -0
  129. data/lib/ftpd/cmd_auth.rb +21 -0
  130. data/lib/ftpd/cmd_cdup.rb +16 -0
  131. data/lib/ftpd/cmd_cwd.rb +20 -0
  132. data/lib/ftpd/cmd_dele.rb +21 -0
  133. data/lib/ftpd/cmd_eprt.rb +23 -0
  134. data/lib/ftpd/cmd_epsv.rb +30 -0
  135. data/lib/ftpd/cmd_feat.rb +44 -0
  136. data/lib/ftpd/cmd_help.rb +29 -0
  137. data/lib/ftpd/cmd_list.rb +33 -0
  138. data/lib/ftpd/cmd_login.rb +60 -0
  139. data/lib/ftpd/cmd_mdtm.rb +27 -0
  140. data/lib/ftpd/cmd_mkd.rb +23 -0
  141. data/lib/ftpd/cmd_mode.rb +27 -0
  142. data/lib/ftpd/cmd_nlst.rb +27 -0
  143. data/lib/ftpd/cmd_noop.rb +14 -0
  144. data/lib/ftpd/cmd_opts.rb +14 -0
  145. data/lib/ftpd/cmd_pasv.rb +28 -0
  146. data/lib/ftpd/cmd_pbsz.rb +23 -0
  147. data/lib/ftpd/cmd_port.rb +28 -0
  148. data/lib/ftpd/cmd_prot.rb +34 -0
  149. data/lib/ftpd/cmd_pwd.rb +15 -0
  150. data/lib/ftpd/cmd_quit.rb +18 -0
  151. data/lib/ftpd/cmd_rein.rb +13 -0
  152. data/lib/ftpd/cmd_rename.rb +32 -0
  153. data/lib/ftpd/cmd_rest.rb +13 -0
  154. data/lib/ftpd/cmd_retr.rb +24 -0
  155. data/lib/ftpd/cmd_rmd.rb +22 -0
  156. data/lib/ftpd/cmd_site.rb +13 -0
  157. data/lib/ftpd/cmd_size.rb +29 -0
  158. data/lib/ftpd/cmd_smnt.rb +13 -0
  159. data/lib/ftpd/cmd_stat.rb +15 -0
  160. data/lib/ftpd/cmd_stor.rb +25 -0
  161. data/lib/ftpd/cmd_stou.rb +25 -0
  162. data/lib/ftpd/cmd_stru.rb +27 -0
  163. data/lib/ftpd/cmd_syst.rb +16 -0
  164. data/lib/ftpd/cmd_type.rb +28 -0
  165. data/lib/ftpd/command_handler.rb +90 -0
  166. data/lib/ftpd/command_handler_factory.rb +51 -0
  167. data/lib/ftpd/command_handlers.rb +60 -0
  168. data/lib/ftpd/command_loop.rb +80 -0
  169. data/lib/ftpd/command_sequence_checker.rb +58 -0
  170. data/lib/ftpd/config.rb +13 -0
  171. data/lib/ftpd/connection_throttle.rb +56 -0
  172. data/lib/ftpd/connection_tracker.rb +82 -0
  173. data/lib/ftpd/data_connection_helper.rb +123 -0
  174. data/lib/ftpd/disk_file_system.rb +434 -0
  175. data/lib/ftpd/error.rb +21 -0
  176. data/lib/ftpd/exception_translator.rb +32 -0
  177. data/lib/ftpd/exceptions.rb +62 -0
  178. data/lib/ftpd/file_info.rb +115 -0
  179. data/lib/ftpd/file_system_helper.rb +67 -0
  180. data/lib/ftpd/ftp_server.rb +214 -0
  181. data/lib/ftpd/gets_peer_address.rb +41 -0
  182. data/lib/ftpd/insecure_certificate.rb +16 -0
  183. data/lib/ftpd/list_format/eplf.rb +74 -0
  184. data/lib/ftpd/list_format/ls.rb +154 -0
  185. data/lib/ftpd/list_path.rb +28 -0
  186. data/lib/ftpd/null_logger.rb +22 -0
  187. data/lib/ftpd/protocols.rb +60 -0
  188. data/lib/ftpd/read_only_disk_file_system.rb +22 -0
  189. data/lib/ftpd/server.rb +139 -0
  190. data/lib/ftpd/session.rb +220 -0
  191. data/lib/ftpd/session_config.rb +111 -0
  192. data/lib/ftpd/stream.rb +80 -0
  193. data/lib/ftpd/telnet.rb +114 -0
  194. data/lib/ftpd/temp_dir.rb +22 -0
  195. data/lib/ftpd/tls_server.rb +111 -0
  196. data/lib/ftpd/translate_exceptions.rb +68 -0
  197. data/rake_tasks/cucumber.rake +9 -0
  198. data/rake_tasks/default.rake +1 -0
  199. data/rake_tasks/jeweler.rake +52 -0
  200. data/rake_tasks/spec.rake +3 -0
  201. data/rake_tasks/test.rake +2 -0
  202. data/rake_tasks/yard.rake +3 -0
  203. data/spec/command_sequence_checker_spec.rb +83 -0
  204. data/spec/connection_throttle_spec.rb +99 -0
  205. data/spec/connection_tracker_spec.rb +97 -0
  206. data/spec/disk_file_system_spec.rb +320 -0
  207. data/spec/exception_translator_spec.rb +36 -0
  208. data/spec/file_info_spec.rb +59 -0
  209. data/spec/ftp_server_error_spec.rb +13 -0
  210. data/spec/list_format/eplf_spec.rb +61 -0
  211. data/spec/list_format/ls_spec.rb +270 -0
  212. data/spec/list_path_spec.rb +21 -0
  213. data/spec/null_logger_spec.rb +24 -0
  214. data/spec/protocols_spec.rb +139 -0
  215. data/spec/server_spec.rb +81 -0
  216. data/spec/spec_helper.rb +15 -0
  217. data/spec/telnet_spec.rb +75 -0
  218. data/spec/translate_exceptions_spec.rb +40 -0
  219. metadata +404 -0
@@ -0,0 +1,97 @@
1
+ require File.expand_path('spec_helper', File.dirname(__FILE__))
2
+
3
+ module Ftpd
4
+
5
+ describe ConnectionTracker do
6
+
7
+ before(:all) do
8
+ Thread.abort_on_exception = true
9
+ end
10
+
11
+ # Create a mock socket with the given peer address
12
+
13
+ def socket_bound_to(source_ip)
14
+ socket = double TCPSocket
15
+ peeraddr = Socket.pack_sockaddr_in(0, source_ip)
16
+ allow(socket).to receive(:getpeername) {peeraddr}
17
+ socket
18
+ end
19
+
20
+ subject(:connection_tracker) {ConnectionTracker.new}
21
+
22
+ describe '#connections' do
23
+
24
+ let(:socket) {socket_bound_to('127.0.0.1')}
25
+
26
+ context '(session ends normally)' do
27
+
28
+ it 'should track the total number of connection' do
29
+ expect(connection_tracker.connections).to eq 0
30
+ connection_tracker.start_track socket
31
+ expect(connection_tracker.connections).to eq 1
32
+ connection_tracker.stop_track socket
33
+ expect(connection_tracker.connections).to eq 0
34
+ end
35
+
36
+ end
37
+
38
+ end
39
+
40
+ describe '#connections_for' do
41
+
42
+ it 'should track the number of connections for an ip' do
43
+ socket1 = socket_bound_to('127.0.0.1')
44
+ socket2 = socket_bound_to('127.0.0.2')
45
+ expect(connection_tracker.connections_for(socket1)).to eq 0
46
+ expect(connection_tracker.connections_for(socket2)).to eq 0
47
+ connection_tracker.start_track socket1
48
+ expect(connection_tracker.connections_for(socket1)).to eq 1
49
+ expect(connection_tracker.connections_for(socket2)).to eq 0
50
+ connection_tracker.stop_track socket1
51
+ expect(connection_tracker.connections_for(socket1)).to eq 0
52
+ expect(connection_tracker.connections_for(socket2)).to eq 0
53
+ end
54
+
55
+ end
56
+
57
+ describe '#known_ip_count' do
58
+
59
+ let(:socket) {socket_bound_to('127.0.0.1')}
60
+
61
+ it 'should forget about an IP that has no connection' do
62
+ expect(connection_tracker.known_ip_count).to eq 0
63
+ connection_tracker.start_track socket
64
+ expect(connection_tracker.known_ip_count).to eq 1
65
+ connection_tracker.stop_track socket
66
+ expect(connection_tracker.known_ip_count).to eq 0
67
+ end
68
+
69
+ end
70
+
71
+ describe '#track' do
72
+
73
+ let(:socket) {socket_bound_to('127.0.0.1')}
74
+
75
+ context '(session ends normally)' do
76
+ specify do
77
+ expect(connection_tracker.connections_for(socket)).to eq 0
78
+ connection_tracker.track(socket) do
79
+ expect(connection_tracker.connections_for(socket)).to eq 1
80
+ end
81
+ expect(connection_tracker.connections_for(socket)).to eq 0
82
+ end
83
+ end
84
+
85
+ context '(session ends with exception)' do
86
+ specify do
87
+ expect(connection_tracker.connections_for(socket)).to eq 0
88
+ connection_tracker.track(socket) { raise } rescue
89
+ expect(connection_tracker.connections_for(socket)).to eq 0
90
+ end
91
+ end
92
+
93
+ end
94
+
95
+ end
96
+
97
+ end
@@ -0,0 +1,320 @@
1
+ require File.expand_path('spec_helper', File.dirname(__FILE__))
2
+
3
+ module Ftpd
4
+ describe DiskFileSystem do
5
+
6
+ let(:data_dir) {Ftpd::TempDir.make}
7
+ let(:disk_file_system) {DiskFileSystem.new(data_dir)}
8
+ let(:missing_file_error) do
9
+ [Ftpd::PermanentFileSystemError, /No such file or directory/]
10
+ end
11
+ let(:is_a_directory_error) do
12
+ [Ftpd::PermanentFileSystemError, /Is a directory/]
13
+ end
14
+ let(:missing_path) {'missing_path'}
15
+
16
+ def data_path(path)
17
+ File.join(data_dir, path)
18
+ end
19
+
20
+ def make_directory(path)
21
+ Dir.mkdir data_path(path)
22
+ end
23
+
24
+ def write_file(path)
25
+ File.open(data_path(path), 'wb') do |file|
26
+ file.write canned_contents(path)
27
+ end
28
+ end
29
+
30
+ def read_file(path)
31
+ File.open(data_path(path), 'rb', &:read)
32
+ end
33
+
34
+ def directory?(path)
35
+ File.directory?(data_path(path))
36
+ end
37
+
38
+ def exists?(path)
39
+ File.exists?(data_path(path))
40
+ end
41
+
42
+ def canned_contents(path)
43
+ "Contents of #{path}"
44
+ end
45
+
46
+ def add_symlink(target_path, symlink_path)
47
+ FileUtils.ln_s data_path(target_path), data_path(symlink_path)
48
+ end
49
+
50
+ before(:each) do
51
+ write_file 'file'
52
+ make_directory 'dir'
53
+ write_file 'dir/file_in_dir'
54
+ make_directory 'unwritable_dir'
55
+ write_file 'unwritable_dir/file'
56
+ add_symlink 'file', 'symlink'
57
+ end
58
+
59
+ describe '#accessible?' do
60
+
61
+ context '(within tree)' do
62
+ specify do
63
+ expect(disk_file_system.accessible?('file')).to be_truthy
64
+ end
65
+ end
66
+
67
+ context '(outside tree)' do
68
+ specify do
69
+ expect(disk_file_system.accessible?('../outside')).to be_falsey
70
+ end
71
+ end
72
+
73
+ end
74
+
75
+ describe '#exists?' do
76
+
77
+ context '(exists)' do
78
+ specify do
79
+ expect(disk_file_system.exists?('file')).to be_truthy
80
+ end
81
+ end
82
+
83
+ context '(does not exist)' do
84
+ specify do
85
+ expect(disk_file_system.exists?('missing')).to be_falsey
86
+ end
87
+ end
88
+
89
+ end
90
+
91
+ describe '#directory?' do
92
+
93
+ context '(directory)' do
94
+ specify do
95
+ expect(disk_file_system.directory?('file')).to be_falsey
96
+ end
97
+ end
98
+
99
+ context '(file)' do
100
+ specify do
101
+ expect(disk_file_system.directory?('dir')).to be_truthy
102
+ end
103
+ end
104
+
105
+ end
106
+
107
+ describe '#delete' do
108
+
109
+ context '(success)' do
110
+ specify do
111
+ disk_file_system.delete('file')
112
+ expect(exists?('file')).to be_falsey
113
+ end
114
+ end
115
+
116
+ context '(error)' do
117
+ specify do
118
+ expect {
119
+ disk_file_system.delete(missing_path)
120
+ }.to raise_error *missing_file_error
121
+ end
122
+ end
123
+
124
+ end
125
+
126
+ describe '#read' do
127
+
128
+ context '(success)' do
129
+ let(:path) {'file'}
130
+ specify do
131
+ disk_file_system.read(path) do |file|
132
+ expect(file).to be_a(IO)
133
+ expect(file.read).to eq canned_contents(path)
134
+ end
135
+ end
136
+ end
137
+
138
+ context '(error)' do
139
+ specify do
140
+ expect {
141
+ disk_file_system.read(missing_path) {}
142
+ }.to raise_error *missing_file_error
143
+ end
144
+ end
145
+
146
+ end
147
+
148
+ describe '#write' do
149
+
150
+ let(:contents) {'file contents'}
151
+ let(:stream) {Ftpd::Stream.new(StringIO.new(contents), nil)}
152
+
153
+ context '(success)' do
154
+ let(:path) {'file_path'}
155
+ specify do
156
+ disk_file_system.write(path, stream)
157
+ expect(read_file(path)).to eq contents
158
+ end
159
+ end
160
+
161
+ context '(error)' do
162
+ specify do
163
+ expect {
164
+ disk_file_system.write('dir', stream)
165
+ }.to raise_error *is_a_directory_error
166
+ end
167
+ end
168
+
169
+ end
170
+
171
+ describe '#append' do
172
+
173
+ let(:contents) {'file contents'}
174
+ let(:stream) {Ftpd::Stream.new(StringIO.new(contents), nil)}
175
+
176
+ context '(destination missing)' do
177
+ let(:path) {'file_path'}
178
+ specify do
179
+ disk_file_system.append(path, stream)
180
+ expect(read_file(path)).to eq contents
181
+ end
182
+ end
183
+
184
+ context '(destination exists)' do
185
+ let(:path) {'file'}
186
+ specify do
187
+ disk_file_system.append(path, stream)
188
+ expect(read_file(path)).to eq canned_contents(path) + contents
189
+ end
190
+ end
191
+
192
+ context '(error)' do
193
+ specify do
194
+ expect {
195
+ disk_file_system.append('dir', stream)
196
+ }.to raise_error *is_a_directory_error
197
+ end
198
+ end
199
+
200
+ end
201
+
202
+ describe '#mkdir' do
203
+
204
+ context '(success)' do
205
+ let(:path) {'another_subdir'}
206
+ specify do
207
+ disk_file_system.mkdir(path)
208
+ expect(directory?(path)).to be_truthy
209
+ end
210
+ end
211
+
212
+ context '(error)' do
213
+ specify do
214
+ expect {
215
+ disk_file_system.mkdir('file')
216
+ }.to raise_error PermanentFileSystemError, /^File exists/
217
+ end
218
+ end
219
+
220
+ end
221
+
222
+ describe '#rename' do
223
+
224
+ let(:from_path) {'file'}
225
+ let(:to_path) {'renamed_file'}
226
+
227
+ context '(success)' do
228
+ specify do
229
+ disk_file_system.rename(from_path, to_path)
230
+ expect(exists?(from_path)).to be_falsey
231
+ expect(exists?(to_path)).to be_truthy
232
+ end
233
+ end
234
+
235
+ context '(error)' do
236
+ specify do
237
+ expect {
238
+ disk_file_system.rename(missing_path, to_path)
239
+ }.to raise_error *missing_file_error
240
+ end
241
+ end
242
+
243
+ end
244
+
245
+ describe '#file_info' do
246
+
247
+ let(:identifier) {"#{stat.dev}.#{stat.ino}"}
248
+ let(:owner) {Etc.getpwuid(stat.uid).name}
249
+ let(:group) {Etc.getgrgid(stat.gid).name}
250
+ let(:stat) {File.stat(data_path(path))}
251
+ subject {disk_file_system.file_info(path)}
252
+
253
+ shared_examples 'file info' do
254
+ its(:ftype) {should == stat.ftype}
255
+ its(:group) {should == group}
256
+ its(:mode) {should == stat.mode}
257
+ its(:mtime) {should == stat.mtime}
258
+ its(:nlink) {should == stat.nlink}
259
+ its(:owner) {should == owner}
260
+ its(:size) {should == stat.size}
261
+ its(:path) {should == path}
262
+ its(:identifier) {should == identifier}
263
+ end
264
+
265
+ context '(file)' do
266
+ let(:path) {'file'}
267
+ it_behaves_like 'file info'
268
+ end
269
+
270
+ context '(symlink)' do
271
+ let(:path) {'symlink'}
272
+ it_behaves_like 'file info'
273
+ end
274
+
275
+ end
276
+
277
+ describe '#dir' do
278
+
279
+ subject(:dir) do
280
+ disk_file_system.dir(path)
281
+ end
282
+
283
+ context '(no such file)' do
284
+ let(:path) {'missing'}
285
+ it {should be_empty}
286
+ end
287
+
288
+ context '(file)' do
289
+ let(:path) {'file'}
290
+ it {should include '/file'}
291
+ end
292
+
293
+ context '(directory)' do
294
+ let(:path) {'dir'}
295
+ it {should include '/dir'}
296
+ it {should_not include '/dir/file_in_dir'}
297
+ end
298
+
299
+ context '(directory + wildcard)' do
300
+ let(:path) {'dir/*'}
301
+ it {should_not include '/dir'}
302
+ it {should include '/dir/file_in_dir'}
303
+ end
304
+
305
+ context '(wildcard)' do
306
+ let(:path) {'*'}
307
+ it {should include '/unwritable_dir'}
308
+ it {should include '/file'}
309
+ it {should include '/dir'}
310
+ end
311
+
312
+ context '(no such directory)' do
313
+ let(:path) {'foo/*'}
314
+ it {should be_empty}
315
+ end
316
+
317
+ end
318
+
319
+ end
320
+ end
@@ -0,0 +1,36 @@
1
+ require File.expand_path('spec_helper', File.dirname(__FILE__))
2
+
3
+ module Ftpd
4
+ describe ExceptionTranslator do
5
+
6
+ class FooError < StandardError ; end
7
+ class BarError < StandardError ; end
8
+
9
+ subject(:translator) {ExceptionTranslator.new}
10
+ let(:message) {'An error happened'}
11
+
12
+ context '(registered exception)' do
13
+ before(:each) do
14
+ translator.register_exception FooError
15
+ end
16
+ it 'should translate the exception' do
17
+ expect {
18
+ subject.translate_exceptions do
19
+ raise FooError, message
20
+ end
21
+ }.to raise_error PermanentFileSystemError, message
22
+ end
23
+ end
24
+
25
+ context '(unregistered exception)' do
26
+ it 'should pass the exception' do
27
+ expect {
28
+ subject.translate_exceptions do
29
+ raise BarError, message
30
+ end
31
+ }.to raise_error BarError, message
32
+ end
33
+ end
34
+
35
+ end
36
+ end