redcar 0.3.7.1 → 0.3.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (246) hide show
  1. data/CHANGES +16 -0
  2. data/README.md +5 -0
  3. data/ROADMAP.md +7 -9
  4. data/Rakefile +55 -22
  5. data/lib/redcar.rb +12 -6
  6. data/lib/redcar/installer.rb +119 -44
  7. data/plugins/application/features/step_definitions/speedbar_steps.rb +62 -0
  8. data/plugins/application/features/step_definitions/tree_steps.rb +3 -3
  9. data/plugins/application/features/support/env.rb +2 -1
  10. data/plugins/application/lib/application/notebook.rb +53 -7
  11. data/plugins/application/lib/application/speedbar.rb +12 -0
  12. data/plugins/application/lib/application/tab.rb +16 -5
  13. data/plugins/application/lib/application/treebook.rb +21 -1
  14. data/plugins/application_swt/lib/application_swt.rb +12 -2
  15. data/plugins/application_swt/lib/application_swt/html_tab.rb +4 -0
  16. data/plugins/application_swt/lib/application_swt/notebook.rb +5 -3
  17. data/plugins/application_swt/lib/application_swt/speedbar.rb +15 -27
  18. data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +1 -0
  19. data/plugins/application_swt/lib/application_swt/tab.rb +1 -0
  20. data/plugins/application_swt/lib/application_swt/treebook.rb +36 -8
  21. data/plugins/application_swt/lib/application_swt/window.rb +24 -18
  22. data/plugins/auto_completer/lib/auto_completer.rb +5 -20
  23. data/plugins/core/lib/core.rb +7 -4
  24. data/plugins/core/lib/core/observable_struct.rb +2 -2
  25. data/plugins/declarations/lib/declarations.rb +3 -17
  26. data/plugins/document_search/features/search.feature +163 -0
  27. data/plugins/document_search/features/support/env.rb +4 -0
  28. data/plugins/document_search/lib/document_search.rb +121 -0
  29. data/plugins/document_search/plugin.rb +8 -0
  30. data/plugins/edit_view/features/line_delimiter.feature +7 -0
  31. data/plugins/edit_view/features/step_definitions/editing_steps.rb +49 -1
  32. data/plugins/edit_view/features/step_definitions/tab_steps.rb +10 -11
  33. data/plugins/edit_view/features/switch_tabs.feature +61 -10
  34. data/plugins/edit_view/lib/edit_view.rb +4 -0
  35. data/plugins/edit_view/lib/edit_view/document.rb +56 -0
  36. data/plugins/edit_view/lib/edit_view/document/command.rb +1 -1
  37. data/plugins/edit_view/lib/edit_view/edit_tab.rb +0 -8
  38. data/plugins/edit_view_swt/lib/edit_view_swt.rb +4 -0
  39. data/plugins/html_view/lib/html_controller.rb +19 -1
  40. data/plugins/html_view/lib/html_view.rb +28 -1
  41. data/plugins/html_view/lib/html_view/html_tab.rb +10 -1
  42. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +3 -1
  43. data/plugins/project/features/open_directory_tree.feature +3 -3
  44. data/plugins/project/lib/project.rb +4 -6
  45. data/plugins/project/lib/project/commands.rb +17 -0
  46. data/plugins/project/lib/project/dir_controller.rb +2 -1
  47. data/plugins/project/lib/project/dir_mirror.rb +8 -0
  48. data/plugins/project/lib/project/manager.rb +2 -0
  49. data/plugins/project/plugin.rb +2 -1
  50. data/plugins/project/vendor/net-sftp/Manifest +55 -0
  51. data/plugins/project/vendor/net-sftp/Rakefile +30 -0
  52. data/plugins/project/vendor/net-sftp/lib/net/sftp.rb +70 -0
  53. data/plugins/project/vendor/net-sftp/lib/net/sftp/constants.rb +187 -0
  54. data/plugins/project/vendor/net-sftp/lib/net/sftp/errors.rb +39 -0
  55. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/dir.rb +93 -0
  56. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/download.rb +364 -0
  57. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/file.rb +176 -0
  58. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/file_factory.rb +60 -0
  59. data/plugins/project/vendor/net-sftp/lib/net/sftp/operations/upload.rb +387 -0
  60. data/plugins/project/vendor/net-sftp/lib/net/sftp/packet.rb +21 -0
  61. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol.rb +32 -0
  62. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/01/attributes.rb +315 -0
  63. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/01/base.rb +268 -0
  64. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/01/name.rb +43 -0
  65. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/02/base.rb +31 -0
  66. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/03/base.rb +35 -0
  67. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/04/attributes.rb +152 -0
  68. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/04/base.rb +94 -0
  69. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/04/name.rb +67 -0
  70. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/05/base.rb +66 -0
  71. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/06/attributes.rb +107 -0
  72. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/06/base.rb +63 -0
  73. data/plugins/project/vendor/net-sftp/lib/net/sftp/protocol/base.rb +50 -0
  74. data/plugins/project/vendor/net-sftp/lib/net/sftp/request.rb +91 -0
  75. data/plugins/project/vendor/net-sftp/lib/net/sftp/response.rb +76 -0
  76. data/plugins/project/vendor/net-sftp/lib/net/sftp/session.rb +951 -0
  77. data/plugins/project/vendor/net-sftp/lib/net/sftp/version.rb +18 -0
  78. data/plugins/project/vendor/net-sftp/setup.rb +1331 -0
  79. data/plugins/project/vendor/net-sftp/test/common.rb +171 -0
  80. data/plugins/project/vendor/net-sftp/test/protocol/01/test_attributes.rb +97 -0
  81. data/plugins/project/vendor/net-sftp/test/protocol/01/test_base.rb +210 -0
  82. data/plugins/project/vendor/net-sftp/test/protocol/01/test_name.rb +27 -0
  83. data/plugins/project/vendor/net-sftp/test/protocol/02/test_base.rb +26 -0
  84. data/plugins/project/vendor/net-sftp/test/protocol/03/test_base.rb +27 -0
  85. data/plugins/project/vendor/net-sftp/test/protocol/04/test_attributes.rb +148 -0
  86. data/plugins/project/vendor/net-sftp/test/protocol/04/test_base.rb +74 -0
  87. data/plugins/project/vendor/net-sftp/test/protocol/04/test_name.rb +53 -0
  88. data/plugins/project/vendor/net-sftp/test/protocol/05/test_base.rb +62 -0
  89. data/plugins/project/vendor/net-sftp/test/protocol/06/test_attributes.rb +124 -0
  90. data/plugins/project/vendor/net-sftp/test/protocol/06/test_base.rb +51 -0
  91. data/plugins/project/vendor/net-sftp/test/protocol/test_base.rb +42 -0
  92. data/plugins/project/vendor/net-sftp/test/test_all.rb +7 -0
  93. data/plugins/project/vendor/net-sftp/test/test_dir.rb +47 -0
  94. data/plugins/project/vendor/net-sftp/test/test_download.rb +252 -0
  95. data/plugins/project/vendor/net-sftp/test/test_file.rb +159 -0
  96. data/plugins/project/vendor/net-sftp/test/test_file_factory.rb +48 -0
  97. data/plugins/project/vendor/net-sftp/test/test_packet.rb +9 -0
  98. data/plugins/project/vendor/net-sftp/test/test_protocol.rb +17 -0
  99. data/plugins/project/vendor/net-sftp/test/test_request.rb +71 -0
  100. data/plugins/project/vendor/net-sftp/test/test_response.rb +53 -0
  101. data/plugins/project/vendor/net-sftp/test/test_session.rb +741 -0
  102. data/plugins/project/vendor/net-sftp/test/test_upload.rb +219 -0
  103. data/plugins/project/vendor/net-ssh/Manifest +110 -0
  104. data/plugins/project/vendor/net-ssh/Rakefile +85 -0
  105. data/plugins/project/vendor/net-ssh/Rudyfile +96 -0
  106. data/plugins/project/vendor/net-ssh/lib/net/ssh.rb +215 -0
  107. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/agent.rb +179 -0
  108. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/constants.rb +18 -0
  109. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/key_manager.rb +193 -0
  110. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/abstract.rb +60 -0
  111. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/hostbased.rb +71 -0
  112. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/keyboard_interactive.rb +66 -0
  113. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/password.rb +39 -0
  114. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/methods/publickey.rb +92 -0
  115. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/pageant.rb +183 -0
  116. data/plugins/project/vendor/net-ssh/lib/net/ssh/authentication/session.rb +134 -0
  117. data/plugins/project/vendor/net-ssh/lib/net/ssh/buffer.rb +340 -0
  118. data/plugins/project/vendor/net-ssh/lib/net/ssh/buffered_io.rb +198 -0
  119. data/plugins/project/vendor/net-ssh/lib/net/ssh/config.rb +202 -0
  120. data/plugins/project/vendor/net-ssh/lib/net/ssh/connection/channel.rb +630 -0
  121. data/plugins/project/vendor/net-ssh/lib/net/ssh/connection/constants.rb +33 -0
  122. data/plugins/project/vendor/net-ssh/lib/net/ssh/connection/session.rb +597 -0
  123. data/plugins/project/vendor/net-ssh/lib/net/ssh/connection/term.rb +178 -0
  124. data/plugins/project/vendor/net-ssh/lib/net/ssh/errors.rb +85 -0
  125. data/plugins/project/vendor/net-ssh/lib/net/ssh/key_factory.rb +102 -0
  126. data/plugins/project/vendor/net-ssh/lib/net/ssh/known_hosts.rb +129 -0
  127. data/plugins/project/vendor/net-ssh/lib/net/ssh/loggable.rb +61 -0
  128. data/plugins/project/vendor/net-ssh/lib/net/ssh/packet.rb +102 -0
  129. data/plugins/project/vendor/net-ssh/lib/net/ssh/prompt.rb +93 -0
  130. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/command.rb +75 -0
  131. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/errors.rb +14 -0
  132. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/http.rb +94 -0
  133. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/socks4.rb +70 -0
  134. data/plugins/project/vendor/net-ssh/lib/net/ssh/proxy/socks5.rb +142 -0
  135. data/plugins/project/vendor/net-ssh/lib/net/ssh/ruby_compat.rb +43 -0
  136. data/plugins/project/vendor/net-ssh/lib/net/ssh/service/forward.rb +288 -0
  137. data/plugins/project/vendor/net-ssh/lib/net/ssh/test.rb +89 -0
  138. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/channel.rb +129 -0
  139. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/extensions.rb +152 -0
  140. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/kex.rb +44 -0
  141. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/local_packet.rb +51 -0
  142. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/packet.rb +81 -0
  143. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/remote_packet.rb +38 -0
  144. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/script.rb +157 -0
  145. data/plugins/project/vendor/net-ssh/lib/net/ssh/test/socket.rb +64 -0
  146. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/algorithms.rb +384 -0
  147. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/cipher_factory.rb +97 -0
  148. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/constants.rb +30 -0
  149. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac.rb +31 -0
  150. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/abstract.rb +79 -0
  151. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/md5.rb +12 -0
  152. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
  153. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/none.rb +15 -0
  154. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/sha1.rb +13 -0
  155. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
  156. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/identity_cipher.rb +55 -0
  157. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/kex.rb +13 -0
  158. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +208 -0
  159. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +77 -0
  160. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/openssl.rb +128 -0
  161. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/packet_stream.rb +235 -0
  162. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/server_version.rb +71 -0
  163. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/session.rb +276 -0
  164. data/plugins/project/vendor/net-ssh/lib/net/ssh/transport/state.rb +206 -0
  165. data/plugins/project/vendor/net-ssh/lib/net/ssh/verifiers/lenient.rb +30 -0
  166. data/plugins/project/vendor/net-ssh/lib/net/ssh/verifiers/null.rb +12 -0
  167. data/plugins/project/vendor/net-ssh/lib/net/ssh/verifiers/strict.rb +53 -0
  168. data/plugins/project/vendor/net-ssh/lib/net/ssh/version.rb +62 -0
  169. data/plugins/project/vendor/net-ssh/net-ssh.gemspec +138 -0
  170. data/plugins/project/vendor/net-ssh/setup.rb +1585 -0
  171. data/plugins/project/vendor/net-ssh/support/arcfour_check.rb +20 -0
  172. data/plugins/project/vendor/net-ssh/support/ssh_tunnel_bug.rb +65 -0
  173. data/plugins/project/vendor/net-ssh/test/README.txt +42 -0
  174. data/plugins/project/vendor/net-ssh/test/authentication/methods/common.rb +28 -0
  175. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_abstract.rb +51 -0
  176. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_hostbased.rb +114 -0
  177. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_keyboard_interactive.rb +98 -0
  178. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_password.rb +50 -0
  179. data/plugins/project/vendor/net-ssh/test/authentication/methods/test_publickey.rb +127 -0
  180. data/plugins/project/vendor/net-ssh/test/authentication/test_agent.rb +205 -0
  181. data/plugins/project/vendor/net-ssh/test/authentication/test_key_manager.rb +105 -0
  182. data/plugins/project/vendor/net-ssh/test/authentication/test_session.rb +93 -0
  183. data/plugins/project/vendor/net-ssh/test/common.rb +107 -0
  184. data/plugins/project/vendor/net-ssh/test/configs/eqsign +3 -0
  185. data/plugins/project/vendor/net-ssh/test/configs/exact_match +8 -0
  186. data/plugins/project/vendor/net-ssh/test/configs/host_plus +10 -0
  187. data/plugins/project/vendor/net-ssh/test/configs/multihost +4 -0
  188. data/plugins/project/vendor/net-ssh/test/configs/nohost +19 -0
  189. data/plugins/project/vendor/net-ssh/test/configs/numeric_host +4 -0
  190. data/plugins/project/vendor/net-ssh/test/configs/wild_cards +14 -0
  191. data/plugins/project/vendor/net-ssh/test/connection/test_channel.rb +467 -0
  192. data/plugins/project/vendor/net-ssh/test/connection/test_session.rb +488 -0
  193. data/plugins/project/vendor/net-ssh/test/manual/test_forward.rb +185 -0
  194. data/plugins/project/vendor/net-ssh/test/test_all.rb +9 -0
  195. data/plugins/project/vendor/net-ssh/test/test_buffer.rb +336 -0
  196. data/plugins/project/vendor/net-ssh/test/test_buffered_io.rb +63 -0
  197. data/plugins/project/vendor/net-ssh/test/test_config.rb +117 -0
  198. data/plugins/project/vendor/net-ssh/test/test_key_factory.rb +67 -0
  199. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_md5.rb +39 -0
  200. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_md5_96.rb +25 -0
  201. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_none.rb +34 -0
  202. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_sha1.rb +34 -0
  203. data/plugins/project/vendor/net-ssh/test/transport/hmac/test_sha1_96.rb +25 -0
  204. data/plugins/project/vendor/net-ssh/test/transport/kex/test_diffie_hellman_group1_sha1.rb +146 -0
  205. data/plugins/project/vendor/net-ssh/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +92 -0
  206. data/plugins/project/vendor/net-ssh/test/transport/test_algorithms.rb +302 -0
  207. data/plugins/project/vendor/net-ssh/test/transport/test_cipher_factory.rb +213 -0
  208. data/plugins/project/vendor/net-ssh/test/transport/test_hmac.rb +34 -0
  209. data/plugins/project/vendor/net-ssh/test/transport/test_identity_cipher.rb +40 -0
  210. data/plugins/project/vendor/net-ssh/test/transport/test_packet_stream.rb +441 -0
  211. data/plugins/project/vendor/net-ssh/test/transport/test_server_version.rb +78 -0
  212. data/plugins/project/vendor/net-ssh/test/transport/test_session.rb +315 -0
  213. data/plugins/project/vendor/net-ssh/test/transport/test_state.rb +173 -0
  214. data/plugins/redcar/plugin.rb +3 -1
  215. data/plugins/redcar/redcar.rb +108 -121
  216. data/plugins/redcar_debug/lib/redcar_debug.rb +2 -0
  217. data/plugins/runnables/lib/runnables.rb +80 -23
  218. data/plugins/runnables/lib/runnables/command_output_controller.rb +102 -0
  219. data/plugins/runnables/lib/runnables/running_process_checker.rb +34 -0
  220. data/plugins/runnables/{plugin_no_load.rb → plugin.rb} +2 -1
  221. data/plugins/runnables/vendor/session-2.4.0/HISTORY +73 -0
  222. data/plugins/runnables/vendor/session-2.4.0/README +89 -0
  223. data/plugins/runnables/vendor/session-2.4.0/TODO +3 -0
  224. data/plugins/runnables/vendor/session-2.4.0/VERSION +1 -0
  225. data/plugins/runnables/vendor/session-2.4.0/gemspec.rb +22 -0
  226. data/plugins/runnables/vendor/session-2.4.0/install.rb +143 -0
  227. data/plugins/runnables/vendor/session-2.4.0/lib/session.rb +757 -0
  228. data/plugins/runnables/vendor/session-2.4.0/sample/bash.rb +60 -0
  229. data/plugins/runnables/vendor/session-2.4.0/sample/driver.rb +47 -0
  230. data/plugins/runnables/vendor/session-2.4.0/sample/session_idl.rb +25 -0
  231. data/plugins/runnables/vendor/session-2.4.0/sample/session_sh.rb +29 -0
  232. data/plugins/runnables/vendor/session-2.4.0/sample/sh0.rb +23 -0
  233. data/plugins/runnables/vendor/session-2.4.0/sample/stdin.rb +17 -0
  234. data/plugins/runnables/vendor/session-2.4.0/sample/threadtest.rb +42 -0
  235. data/plugins/runnables/vendor/session-2.4.0/session-2.4.0.gem +0 -0
  236. data/plugins/runnables/vendor/session-2.4.0/test/session.rb +227 -0
  237. data/plugins/runnables/views/command_output.html.erb +32 -0
  238. data/plugins/task_manager/lib/task_manager.rb +2 -0
  239. data/plugins/textmate/lib/textmate/plist.rb +1 -1
  240. data/plugins/textmate/lib/textmate/snippet.rb +1 -0
  241. data/plugins/tree/lib/tree/mirror.rb +8 -1
  242. data/plugins/tree_view_swt/lib/tree_view_swt.rb +29 -2
  243. metadata +191 -6
  244. data/plugins/declarations/TODO +0 -3
  245. data/plugins/redcar/spec/redcar/redcar_spec.rb +0 -70
  246. data/plugins/redcar/spec/spec_helper.rb +0 -4
@@ -0,0 +1,27 @@
1
+ require 'common'
2
+
3
+ class Protocol::V01::TestName < Net::SFTP::TestCase
4
+ def setup
5
+ @directory = Net::SFTP::Protocol::V01::Name.new("test", "drwxr-x-r-x 89 test test 3026 Mar 10 17:45 test", Net::SFTP::Protocol::V01::Attributes.new(:permissions => 040755))
6
+ @link = Net::SFTP::Protocol::V01::Name.new("test", "lrwxr-x-r-x 89 test test 3026 Mar 10 17:45 test", Net::SFTP::Protocol::V01::Attributes.new(:permissions => 0120755))
7
+ @file = Net::SFTP::Protocol::V01::Name.new("test", "-rwxr-x-r-x 89 test test 3026 Mar 10 17:45 test", Net::SFTP::Protocol::V01::Attributes.new(:permissions => 0100755))
8
+ end
9
+
10
+ def test_directory?
11
+ assert @directory.directory?
12
+ assert !@link.directory?
13
+ assert !@file.directory?
14
+ end
15
+
16
+ def test_symlink?
17
+ assert !@directory.symlink?
18
+ assert @link.symlink?
19
+ assert !@file.symlink?
20
+ end
21
+
22
+ def test_file?
23
+ assert !@directory.file?
24
+ assert !@link.file?
25
+ assert @file.file?
26
+ end
27
+ end
@@ -0,0 +1,26 @@
1
+ require 'common'
2
+ require 'protocol/01/test_base'
3
+
4
+ class Protocol::V02::TestBase < Protocol::V01::TestBase
5
+ def test_version
6
+ assert_equal 2, @base.version
7
+ end
8
+
9
+ undef test_rename_should_raise_not_implemented_error
10
+
11
+ def test_rename_should_send_rename_packet
12
+ @session.expects(:send_packet).with(FXP_RENAME, :long, 0, :string, "/old/file", :string, "/new/file")
13
+ assert_equal 0, @base.rename("/old/file", "/new/file")
14
+ end
15
+
16
+ def test_rename_should_ignore_flags_parameter
17
+ @session.expects(:send_packet).with(FXP_RENAME, :long, 0, :string, "/old/file", :string, "/new/file")
18
+ assert_equal 0, @base.rename("/old/file", "/new/file", 1234)
19
+ end
20
+
21
+ private
22
+
23
+ def driver
24
+ Net::SFTP::Protocol::V02::Base
25
+ end
26
+ end
@@ -0,0 +1,27 @@
1
+ require 'common'
2
+ require 'protocol/02/test_base'
3
+
4
+ class Protocol::V03::TestBase < Protocol::V02::TestBase
5
+ def test_version
6
+ assert_equal 3, @base.version
7
+ end
8
+
9
+ undef test_readlink_should_raise_not_implemented_error
10
+ undef test_symlink_should_raise_not_implemented_error
11
+
12
+ def test_readlink_should_send_readlink_packet
13
+ @session.expects(:send_packet).with(FXP_READLINK, :long, 0, :string, "/path/to/link")
14
+ assert_equal 0, @base.readlink("/path/to/link")
15
+ end
16
+
17
+ def test_symlink_should_send_symlink_packet
18
+ @session.expects(:send_packet).with(FXP_SYMLINK, :long, 0, :string, "/path/to/link", :string, "/path/to/file")
19
+ assert_equal 0, @base.symlink("/path/to/link", "/path/to/file")
20
+ end
21
+
22
+ private
23
+
24
+ def driver
25
+ Net::SFTP::Protocol::V03::Base
26
+ end
27
+ end
@@ -0,0 +1,148 @@
1
+ require 'common'
2
+
3
+ module Etc; end
4
+
5
+ class Protocol::V04::TestAttributes < Net::SFTP::TestCase
6
+ def setup
7
+ @directory = attributes_factory.new(:type => attributes_factory::T_DIRECTORY)
8
+ @symlink = attributes_factory.new(:type => attributes_factory::T_SYMLINK)
9
+ @file = attributes_factory.new(:type => attributes_factory::T_REGULAR)
10
+ end
11
+
12
+ def test_from_buffer_should_correctly_parse_buffer_and_return_attribute_object
13
+ attributes = attributes_factory.from_buffer(full_buffer)
14
+
15
+ assert_equal 9, attributes.type
16
+ assert_equal 1234567890, attributes.size
17
+ assert_equal "jamis", attributes.owner
18
+ assert_equal "users", attributes.group
19
+ assert_equal 0755, attributes.permissions
20
+ assert_equal 1234567890, attributes.atime
21
+ assert_equal 12345, attributes.atime_nseconds
22
+ assert_equal 2345678901, attributes.createtime
23
+ assert_equal 23456, attributes.createtime_nseconds
24
+ assert_equal 3456789012, attributes.mtime
25
+ assert_equal 34567, attributes.mtime_nseconds
26
+
27
+ assert_equal 2, attributes.acl.length
28
+
29
+ assert_equal 1, attributes.acl.first.type
30
+ assert_equal 2, attributes.acl.first.flag
31
+ assert_equal 3, attributes.acl.first.mask
32
+ assert_equal "foo", attributes.acl.first.who
33
+
34
+ assert_equal 4, attributes.acl.last.type
35
+ assert_equal 5, attributes.acl.last.flag
36
+ assert_equal 6, attributes.acl.last.mask
37
+ assert_equal "bar", attributes.acl.last.who
38
+
39
+ assert_equal "second", attributes.extended["first"]
40
+ end
41
+
42
+ def test_from_buffer_should_correctly_parse_buffer_with_attribute_subset_and_return_attribute_object
43
+ buffer = Net::SSH::Buffer.from(:long, 0x4, :byte, 1, :long, 0755)
44
+
45
+ attributes = attributes_factory.from_buffer(buffer)
46
+
47
+ assert_equal 1, attributes.type
48
+ assert_equal 0755, attributes.permissions
49
+
50
+ assert_nil attributes.size
51
+ assert_nil attributes.owner
52
+ assert_nil attributes.group
53
+ assert_nil attributes.atime
54
+ assert_nil attributes.atime_nseconds
55
+ assert_nil attributes.createtime
56
+ assert_nil attributes.createtime_nseconds
57
+ assert_nil attributes.mtime
58
+ assert_nil attributes.mtime_nseconds
59
+ assert_nil attributes.acl
60
+ assert_nil attributes.extended
61
+ end
62
+
63
+ def test_attributes_to_s_should_build_binary_representation
64
+ attributes = attributes_factory.new(
65
+ :type => 9,
66
+ :size => 1234567890,
67
+ :owner => "jamis", :group => "users",
68
+ :permissions => 0755,
69
+ :atime => 1234567890, :atime_nseconds => 12345,
70
+ :createtime => 2345678901, :createtime_nseconds => 23456,
71
+ :mtime => 3456789012, :mtime_nseconds => 34567,
72
+ :acl => [attributes_factory::ACL.new(1,2,3,"foo"),
73
+ attributes_factory::ACL.new(4,5,6,"bar")],
74
+ :extended => { "first" => "second" })
75
+
76
+ assert_equal full_buffer.to_s, attributes.to_s
77
+ end
78
+
79
+ def test_attributes_to_s_should_build_binary_representation_when_subset_is_present
80
+ attributes = attributes_factory.new(:permissions => 0755)
81
+ assert_equal Net::SSH::Buffer.from(:long, 0x4, :byte, 1, :long, 0755).to_s, attributes.to_s
82
+ end
83
+
84
+ def test_attributes_to_s_with_uid_and_gid_should_translate_to_owner_and_group
85
+ attributes = attributes_factory.new(:uid => 100, :gid => 200)
86
+ attributes.expects(:require).with("etc").times(2)
87
+ Etc.expects(:getpwuid).with(100).returns(mock('user', :name => "jamis"))
88
+ Etc.expects(:getgrgid).with(200).returns(mock('group', :name => "sftp"))
89
+ assert_equal Net::SSH::Buffer.from(:long, 0x80, :byte, 1, :string, "jamis", :string, "sftp").to_s, attributes.to_s
90
+ end
91
+
92
+ def test_uid_should_translate_from_owner
93
+ attributes = attributes_factory.new(:owner => "jamis")
94
+ attributes.expects(:require).with("etc")
95
+ Etc.expects(:getpwnam).with("jamis").returns(mock('user', :uid => 100))
96
+ assert_equal 100, attributes.uid
97
+ end
98
+
99
+ def test_gid_should_translate_from_group
100
+ attributes = attributes_factory.new(:group => "sftp")
101
+ attributes.expects(:require).with("etc")
102
+ Etc.expects(:getgrnam).with("sftp").returns(mock('group', :gid => 200))
103
+ assert_equal 200, attributes.gid
104
+ end
105
+
106
+ def test_attributes_without_subsecond_times_should_serialize_without_subsecond_times
107
+ attributes = attributes_factory.new(:atime => 100)
108
+ assert_equal Net::SSH::Buffer.from(:long, 0x8, :byte, 1, :int64, 100).to_s, attributes.to_s
109
+ end
110
+
111
+ def test_directory_should_be_true_only_when_type_is_directory
112
+ assert @directory.directory?
113
+ assert !@symlink.directory?
114
+ assert !@file.directory?
115
+ end
116
+
117
+ def test_symlink_should_be_true_only_when_type_is_symlink
118
+ assert !@directory.symlink?
119
+ assert @symlink.symlink?
120
+ assert !@file.symlink?
121
+ end
122
+
123
+ def test_file_should_be_true_only_when_type_is_file
124
+ assert !@directory.file?
125
+ assert !@symlink.file?
126
+ assert @file.file?
127
+ end
128
+
129
+ private
130
+
131
+ def full_buffer
132
+ Net::SSH::Buffer.from(:long, 0x800001fd,
133
+ :byte, 9, :int64, 1234567890,
134
+ :string, "jamis", :string, "users",
135
+ :long, 0755,
136
+ :int64, 1234567890, :long, 12345,
137
+ :int64, 2345678901, :long, 23456,
138
+ :int64, 3456789012, :long, 34567,
139
+ :string, raw(:long, 2,
140
+ :long, 1, :long, 2, :long, 3, :string, "foo",
141
+ :long, 4, :long, 5, :long, 6, :string, "bar"),
142
+ :long, 1, :string, "first", :string, "second")
143
+ end
144
+
145
+ def attributes_factory
146
+ Net::SFTP::Protocol::V04::Attributes
147
+ end
148
+ end
@@ -0,0 +1,74 @@
1
+ require 'common'
2
+ require 'protocol/03/test_base'
3
+
4
+ class Protocol::V04::TestBase < Protocol::V03::TestBase
5
+ def test_version
6
+ assert_equal 4, @base.version
7
+ end
8
+
9
+ def test_parse_attrs_packet_should_use_correct_attributes_class
10
+ Net::SFTP::Protocol::V04::Attributes.expects(:from_buffer).with(:packet).returns(:result)
11
+ assert_equal({ :attrs => :result }, @base.parse_attrs_packet(:packet))
12
+ end
13
+
14
+ def test_parse_name_packet_should_use_correct_name_class
15
+ packet = Net::SSH::Buffer.from(:long, 2,
16
+ :string, "name1", :long, 0x4, :byte, 1, :long, 0755,
17
+ :string, "name2", :long, 0x4, :byte, 1, :long, 0550)
18
+ names = @base.parse_name_packet(packet)[:names]
19
+
20
+ assert_not_nil names
21
+ assert_equal 2, names.length
22
+ assert_instance_of Net::SFTP::Protocol::V04::Name, names.first
23
+
24
+ assert_equal "name1", names.first.name
25
+ assert_equal 0755, names.first.attributes.permissions
26
+
27
+ assert_equal "name2", names.last.name
28
+ assert_equal 0550, names.last.attributes.permissions
29
+ end
30
+
31
+ undef test_fstat_should_ignore_flags_parameter
32
+ undef test_lstat_should_ignore_flags_parameter
33
+ undef test_stat_should_ignore_flags_parameter
34
+
35
+ def test_lstat_should_send_lstat_packet
36
+ @session.expects(:send_packet).with(FXP_LSTAT, :long, 0, :string, "/path/to/file", :long, 0x800001fd)
37
+ assert_equal 0, @base.lstat("/path/to/file")
38
+ end
39
+
40
+ def test_lstat_with_custom_flags_should_send_lstat_packet_with_given_flags
41
+ @session.expects(:send_packet).with(FXP_LSTAT, :long, 0, :string, "/path/to/file", :long, 1234)
42
+ assert_equal 0, @base.lstat("/path/to/file", 1234)
43
+ end
44
+
45
+ def test_fstat_should_send_fstat_packet
46
+ @session.expects(:send_packet).with(FXP_FSTAT, :long, 0, :string, "handle", :long, 0x800001fd)
47
+ assert_equal 0, @base.fstat("handle")
48
+ end
49
+
50
+ def test_fstat_with_custom_flags_should_send_fstat_packet_with_given_flags
51
+ @session.expects(:send_packet).with(FXP_FSTAT, :long, 0, :string, "handle", :long, 1234)
52
+ assert_equal 0, @base.fstat("handle", 1234)
53
+ end
54
+
55
+ def test_stat_should_send_stat_packet
56
+ @session.expects(:send_packet).with(FXP_STAT, :long, 0, :string, "/path/to/file", :long, 0x800001fd)
57
+ assert_equal 0, @base.stat("/path/to/file")
58
+ end
59
+
60
+ def test_stat_with_custom_flags_should_send_stat_packet_with_given_flags
61
+ @session.expects(:send_packet).with(FXP_STAT, :long, 0, :string, "/path/to/file", :long, 1234)
62
+ assert_equal 0, @base.stat("/path/to/file", 1234)
63
+ end
64
+
65
+ private
66
+
67
+ def driver
68
+ Net::SFTP::Protocol::V04::Base
69
+ end
70
+
71
+ def attributes
72
+ Net::SFTP::Protocol::V04::Attributes
73
+ end
74
+ end
@@ -0,0 +1,53 @@
1
+ require 'common'
2
+
3
+ class Protocol::V04::TestName < Net::SFTP::TestCase
4
+ def setup
5
+ @save_tz = ENV['TZ']
6
+ ENV['TZ'] = 'UTC'
7
+
8
+ @directory = Net::SFTP::Protocol::V04::Name.new("test", Net::SFTP::Protocol::V04::Attributes.new(:type => 2, :mtime => 1205293237, :owner => "jamis", :group => "users", :size => 1024, :permissions => 0755))
9
+ @link = Net::SFTP::Protocol::V04::Name.new("test", Net::SFTP::Protocol::V04::Attributes.new(:type => 3, :mtime => 1205293237, :owner => "jamis", :group => "users", :size => 32, :permissions => 0755))
10
+ @file = Net::SFTP::Protocol::V04::Name.new("test", Net::SFTP::Protocol::V04::Attributes.new(:type => 1, :mtime => 1205293237, :owner => "jamis", :group => "users", :size => 10240, :permissions => 0755))
11
+ end
12
+
13
+ def teardown
14
+ if @save_tz
15
+ ENV['TZ'] = @save_tz
16
+ else
17
+ ENV.delete('TZ')
18
+ end
19
+ end
20
+
21
+ def test_directory?
22
+ assert @directory.directory?
23
+ assert !@link.directory?
24
+ assert !@file.directory?
25
+ end
26
+
27
+ def test_symlink?
28
+ assert !@directory.symlink?
29
+ assert @link.symlink?
30
+ assert !@file.symlink?
31
+ end
32
+
33
+ def test_file?
34
+ assert !@directory.file?
35
+ assert !@link.file?
36
+ assert @file.file?
37
+ end
38
+
39
+ def test_longname_for_directory_should_format_as_directory
40
+ assert_equal "drwxr-xr-x jamis users 1024 Mar 12 03:40 test",
41
+ @directory.longname
42
+ end
43
+
44
+ def test_longname_for_symlink_should_format_as_symlink
45
+ assert_equal "lrwxr-xr-x jamis users 32 Mar 12 03:40 test",
46
+ @link.longname
47
+ end
48
+
49
+ def test_longname_for_file_should_format_as_file
50
+ assert_equal "-rwxr-xr-x jamis users 10240 Mar 12 03:40 test",
51
+ @file.longname
52
+ end
53
+ end
@@ -0,0 +1,62 @@
1
+ require 'common'
2
+ require 'protocol/04/test_base'
3
+
4
+ class Protocol::V05::TestBase < Protocol::V04::TestBase
5
+ include Net::SFTP::Constants::OpenFlags
6
+ include Net::SFTP::Constants
7
+
8
+ def test_version
9
+ assert_equal 5, @base.version
10
+ end
11
+
12
+ undef test_rename_should_ignore_flags_parameter
13
+
14
+ def test_rename_should_send_rename_packet
15
+ @session.expects(:send_packet).with(FXP_RENAME, :long, 0, :string, "/old/file", :string, "/new/file", :long, 0)
16
+ assert_equal 0, @base.rename("/old/file", "/new/file")
17
+ end
18
+
19
+ def test_rename_with_flags_should_send_rename_packet_with_flags
20
+ @session.expects(:send_packet).with(FXP_RENAME, :long, 0, :string, "/old/file", :string, "/new/file", :long, RenameFlags::ATOMIC)
21
+ assert_equal 0, @base.rename("/old/file", "/new/file", RenameFlags::ATOMIC)
22
+ end
23
+
24
+ def test_open_with_numeric_flag_should_accept_IO_constants
25
+ @session.expects(:send_packet).with(FXP_OPEN, :long, 0,
26
+ :string, "/path/to/file",
27
+ :long, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES | ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES,
28
+ :long, FV5::CREATE_NEW,
29
+ :raw, attributes.new.to_s)
30
+
31
+ assert_equal 0, @base.open("/path/to/file", IO::RDWR | IO::CREAT | IO::EXCL, {})
32
+ end
33
+
34
+ { "r" => [FV5::OPEN_EXISTING, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES],
35
+ "rb" => [FV5::OPEN_EXISTING, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES],
36
+ "r+" => [FV5::OPEN_EXISTING, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES | ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES],
37
+ "w" => [FV5::CREATE_TRUNCATE, ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES],
38
+ "w+" => [FV5::CREATE_TRUNCATE, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES | ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES],
39
+ "a" => [FV5::OPEN_OR_CREATE | FV5::APPEND_DATA, ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES | ACE::Mask::APPEND_DATA],
40
+ "a+" => [FV5::OPEN_OR_CREATE | FV5::APPEND_DATA, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES | ACE::Mask::WRITE_DATA | ACE::Mask::WRITE_ATTRIBUTES | ACE::Mask::APPEND_DATA]
41
+ }.each do |mode_string, (flags, access)|
42
+ define_method("test_open_with_#{mode_string.sub(/\+/, '_plus')}_should_translate_correctly") do
43
+ @session.expects(:send_packet).with(FXP_OPEN, :long, 0,
44
+ :string, "/path/to/file", :long, access, :long, flags, :raw, attributes.new.to_s)
45
+
46
+ assert_equal 0, @base.open("/path/to/file", mode_string, {})
47
+ end
48
+ end
49
+
50
+ def test_open_with_attributes_converts_hash_to_attribute_packet
51
+ @session.expects(:send_packet).with(FXP_OPEN, :long, 0,
52
+ :string, "/path/to/file", :long, ACE::Mask::READ_DATA | ACE::Mask::READ_ATTRIBUTES,
53
+ :long, FV5::OPEN_EXISTING, :raw, attributes.new(:permissions => 0755).to_s)
54
+ @base.open("/path/to/file", "r", :permissions => 0755)
55
+ end
56
+
57
+ private
58
+
59
+ def driver
60
+ Net::SFTP::Protocol::V05::Base
61
+ end
62
+ end
@@ -0,0 +1,124 @@
1
+ require 'common'
2
+
3
+ module Etc; end
4
+
5
+ class Protocol::V06::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 9, attributes.type
10
+ assert_equal 1234567890, attributes.size
11
+ assert_equal 2345678901, attributes.allocation_size
12
+ assert_equal "jamis", attributes.owner
13
+ assert_equal "users", attributes.group
14
+ assert_equal 0755, attributes.permissions
15
+ assert_equal 1234567890, attributes.atime
16
+ assert_equal 12345, attributes.atime_nseconds
17
+ assert_equal 2345678901, attributes.createtime
18
+ assert_equal 23456, attributes.createtime_nseconds
19
+ assert_equal 3456789012, attributes.mtime
20
+ assert_equal 34567, attributes.mtime_nseconds
21
+ assert_equal 4567890123, attributes.ctime
22
+ assert_equal 45678, attributes.ctime_nseconds
23
+
24
+ assert_equal 2, attributes.acl.length
25
+
26
+ assert_equal 1, attributes.acl.first.type
27
+ assert_equal 2, attributes.acl.first.flag
28
+ assert_equal 3, attributes.acl.first.mask
29
+ assert_equal "foo", attributes.acl.first.who
30
+
31
+ assert_equal 4, attributes.acl.last.type
32
+ assert_equal 5, attributes.acl.last.flag
33
+ assert_equal 6, attributes.acl.last.mask
34
+ assert_equal "bar", attributes.acl.last.who
35
+
36
+ assert_equal 0x12341234, attributes.attrib_bits
37
+ assert_equal 0x23452345, attributes.attrib_bits_valid
38
+ assert_equal 0x3, attributes.text_hint
39
+ assert_equal "text/html", attributes.mime_type
40
+ assert_equal 144, attributes.link_count
41
+ assert_equal "an untranslated name", attributes.untranslated_name
42
+
43
+ assert_equal "second", attributes.extended["first"]
44
+ end
45
+
46
+ def test_from_buffer_should_correctly_parse_buffer_with_attribute_subset_and_return_attribute_object
47
+ buffer = Net::SSH::Buffer.from(:long, 0x4, :byte, 1, :long, 0755)
48
+
49
+ attributes = attributes_factory.from_buffer(buffer)
50
+
51
+ assert_equal 1, attributes.type
52
+ assert_equal 0755, attributes.permissions
53
+
54
+ assert_nil attributes.size
55
+ assert_nil attributes.allocation_size
56
+ assert_nil attributes.owner
57
+ assert_nil attributes.group
58
+ assert_nil attributes.atime
59
+ assert_nil attributes.atime_nseconds
60
+ assert_nil attributes.createtime
61
+ assert_nil attributes.createtime_nseconds
62
+ assert_nil attributes.mtime
63
+ assert_nil attributes.mtime_nseconds
64
+ assert_nil attributes.ctime
65
+ assert_nil attributes.ctime_nseconds
66
+ assert_nil attributes.acl
67
+ assert_nil attributes.attrib_bits
68
+ assert_nil attributes.attrib_bits_valid
69
+ assert_nil attributes.text_hint
70
+ assert_nil attributes.mime_type
71
+ assert_nil attributes.link_count
72
+ assert_nil attributes.untranslated_name
73
+ assert_nil attributes.extended
74
+ end
75
+
76
+ def test_attributes_to_s_should_build_binary_representation
77
+ attributes = attributes_factory.new(
78
+ :type => 9,
79
+ :size => 1234567890, :allocation_size => 2345678901,
80
+ :owner => "jamis", :group => "users",
81
+ :permissions => 0755,
82
+ :atime => 1234567890, :atime_nseconds => 12345,
83
+ :createtime => 2345678901, :createtime_nseconds => 23456,
84
+ :mtime => 3456789012, :mtime_nseconds => 34567,
85
+ :ctime => 4567890123, :ctime_nseconds => 45678,
86
+ :acl => [attributes_factory::ACL.new(1,2,3,"foo"),
87
+ attributes_factory::ACL.new(4,5,6,"bar")],
88
+ :attrib_bits => 0x12341234, :attrib_bits_valid => 0x23452345,
89
+ :text_hint => 0x3, :mime_type => "text/html",
90
+ :link_count => 144, :untranslated_name => "an untranslated name",
91
+ :extended => { "first" => "second" })
92
+
93
+ assert_equal full_buffer.to_s, attributes.to_s
94
+ end
95
+
96
+ def test_attributes_to_s_should_build_binary_representation_when_subset_is_present
97
+ attributes = attributes_factory.new(:permissions => 0755)
98
+ assert_equal Net::SSH::Buffer.from(:long, 0x4, :byte, 1, :long, 0755).to_s, attributes.to_s
99
+ end
100
+
101
+ private
102
+
103
+ def full_buffer
104
+ Net::SSH::Buffer.from(:long, 0x8000fffd,
105
+ :byte, 9, :int64, 1234567890, :int64, 2345678901,
106
+ :string, "jamis", :string, "users",
107
+ :long, 0755,
108
+ :int64, 1234567890, :long, 12345,
109
+ :int64, 2345678901, :long, 23456,
110
+ :int64, 3456789012, :long, 34567,
111
+ :int64, 4567890123, :long, 45678,
112
+ :string, raw(:long, 2,
113
+ :long, 1, :long, 2, :long, 3, :string, "foo",
114
+ :long, 4, :long, 5, :long, 6, :string, "bar"),
115
+ :long, 0x12341234, :long, 0x23452345,
116
+ :byte, 0x3, :string, "text/html", :long, 144,
117
+ :string, "an untranslated name",
118
+ :long, 1, :string, "first", :string, "second")
119
+ end
120
+
121
+ def attributes_factory
122
+ Net::SFTP::Protocol::V06::Attributes
123
+ end
124
+ end