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,185 @@
1
+ # $ ruby -Ilib -Itest -rrubygems test/test_forward.rb
2
+
3
+ # Tests for the following patch:
4
+ #
5
+ # http://github.com/net-ssh/net-ssh/tree/portfwfix
6
+ #
7
+ # It fixes 3 issues, regarding closing forwarded ports:
8
+ #
9
+ # 1.) if client closes a forwarded connection, but the server is reading, net-ssh terminates with IOError socket closed.
10
+ # 2.) if client force closes (RST) a forwarded connection, but server is reading, net-ssh terminates with
11
+ # 3.) if server closes the sending side, the on_eof is not handled.
12
+ #
13
+ # More info:
14
+ #
15
+ # http://net-ssh.lighthouseapp.com/projects/36253/tickets/7
16
+
17
+ require 'common'
18
+ require 'net/ssh/buffer'
19
+ require 'net/ssh'
20
+ require 'timeout'
21
+
22
+ class TestForward < Test::Unit::TestCase
23
+
24
+ def localhost
25
+ 'localhost'
26
+ end
27
+
28
+ def ssh_start_params
29
+ [localhost ,ENV['USER']] #:verbose => :debug
30
+ end
31
+
32
+ def find_free_port
33
+ server = TCPServer.open(0)
34
+ server.setsockopt(Socket::SOL_SOCKET,Socket::SO_REUSEADDR,true)
35
+ port = server.addr[1]
36
+ server.close
37
+ port
38
+ end
39
+
40
+ def start_server_sending_lot_of_data(exceptions)
41
+ server = TCPServer.open(0)
42
+ Thread.start do
43
+ loop do
44
+ Thread.start(server.accept) do |client|
45
+ begin
46
+ 10000.times do |i|
47
+ client.puts "item#{i}"
48
+ end
49
+ client.close
50
+ rescue
51
+ exceptions << $!
52
+ raise
53
+ end
54
+ end
55
+ end
56
+ end
57
+ return server
58
+ end
59
+
60
+ def start_server_closing_soon(exceptions=nil)
61
+ server = TCPServer.open(0)
62
+ Thread.start do
63
+ loop do
64
+ Thread.start(server.accept) do |client|
65
+ begin
66
+ client.recv(1024)
67
+ client.setsockopt(Socket::SOL_SOCKET, Socket::SO_LINGER, [1, 0].pack("ii"))
68
+ client.close
69
+ rescue
70
+ exceptions << $!
71
+ raise
72
+ end
73
+ end
74
+ end
75
+ end
76
+ return server
77
+ end
78
+
79
+ def test_loop_should_not_abort_when_local_side_of_forward_is_closed
80
+ session = Net::SSH.start(*ssh_start_params)
81
+ server_exc = Queue.new
82
+ server = start_server_sending_lot_of_data(server_exc)
83
+ remote_port = server.addr[1]
84
+ local_port = find_free_port
85
+ session.forward.local(local_port, localhost, remote_port)
86
+ client_done = Queue.new
87
+ Thread.start do
88
+ begin
89
+ client = TCPSocket.new(localhost, local_port)
90
+ client.recv(1024)
91
+ client.close
92
+ sleep(0.2)
93
+ ensure
94
+ client_done << true
95
+ end
96
+ end
97
+ session.loop(0.1) { client_done.empty? }
98
+ assert_equal "Broken pipe", "#{server_exc.pop}" unless server_exc.empty?
99
+ end
100
+
101
+ def test_loop_should_not_abort_when_local_side_of_forward_is_reset
102
+ session = Net::SSH.start(*ssh_start_params)
103
+ server_exc = Queue.new
104
+ server = start_server_sending_lot_of_data(server_exc)
105
+ remote_port = server.addr[1]
106
+ local_port = find_free_port
107
+ session.forward.local(local_port, localhost, remote_port)
108
+ client_done = Queue.new
109
+ Thread.start do
110
+ begin
111
+ client = TCPSocket.new(localhost, local_port)
112
+ client.recv(1024)
113
+ client.setsockopt(Socket::SOL_SOCKET, Socket::SO_LINGER, [1, 0].pack("ii"))
114
+ client.close
115
+ sleep(0.1)
116
+ ensure
117
+ client_done << true
118
+ end
119
+ end
120
+ session.loop(0.1) { client_done.empty? }
121
+ assert_equal "Broken pipe", "#{server_exc.pop}" unless server_exc.empty?
122
+ end
123
+
124
+ def test_loop_should_not_abort_when_server_side_of_forward_is_closed
125
+ session = Net::SSH.start(*ssh_start_params)
126
+ server = start_server_closing_soon
127
+ remote_port = server.addr[1]
128
+ local_port = find_free_port
129
+ session.forward.local(local_port, localhost, remote_port)
130
+ client_done = Queue.new
131
+ Thread.start do
132
+ begin
133
+ client = TCPSocket.new(localhost, local_port)
134
+ 1.times do |i|
135
+ client.puts "item#{i}"
136
+ end
137
+ client.close
138
+ sleep(0.1)
139
+ ensure
140
+ client_done << true
141
+ end
142
+ end
143
+ session.loop(0.1) { client_done.empty? }
144
+ end
145
+
146
+ def start_server
147
+ server = TCPServer.open(0)
148
+ Thread.start do
149
+ loop do
150
+ Thread.start(server.accept) do |client|
151
+ yield(client)
152
+ end
153
+ end
154
+ end
155
+ return server
156
+ end
157
+
158
+ def test_server_eof_should_be_handled
159
+ session = Net::SSH.start(*ssh_start_params)
160
+ server = start_server do |client|
161
+ client.write "This is a small message!"
162
+ client.close
163
+ end
164
+ client_done = Queue.new
165
+ client_exception = Queue.new
166
+ client_data = Queue.new
167
+ remote_port = server.addr[1]
168
+ local_port = find_free_port
169
+ session.forward.local(local_port, localhost, remote_port)
170
+ Thread.start do
171
+ begin
172
+ client = TCPSocket.new(localhost, local_port)
173
+ data = client.read(4096)
174
+ client.close
175
+ client_done << data
176
+ rescue
177
+ client_done << $!
178
+ end
179
+ end
180
+ timeout(5) do
181
+ session.loop(0.1) { client_done.empty? }
182
+ assert_equal "This is a small message!", client_done.pop
183
+ end
184
+ end
185
+ end
@@ -0,0 +1,9 @@
1
+ # $ ruby -Ilib -Itest -rrubygems test/test_all.rb
2
+ # $ ruby -Ilib -Itest -rrubygems test/transport/test_server_version.rb
3
+ Dir.chdir(File.dirname(__FILE__)) do
4
+ test_files = Dir['**/test_*.rb']
5
+ test_files = test_files.reject { |f| f =~ /^manual/ }
6
+ test_files = test_files.select { |f| f =~ Regexp.new(ENV['ONLY']) } if ENV['ONLY']
7
+ test_files = test_files.reject { |f| f =~ Regexp.new(ENV['EXCEPT']) } if ENV['EXCEPT']
8
+ test_files.each { |file| require(file) }
9
+ end
@@ -0,0 +1,336 @@
1
+ require 'common'
2
+ require 'net/ssh/buffer'
3
+
4
+ class TestBuffer < Test::Unit::TestCase
5
+ def test_constructor_should_initialize_buffer_to_empty_by_default
6
+ buffer = new
7
+ assert buffer.empty?
8
+ assert_equal 0, buffer.position
9
+ end
10
+
11
+ def test_constructor_with_string_should_initialize_buffer_to_the_string
12
+ buffer = new("hello")
13
+ assert !buffer.empty?
14
+ assert_equal "hello", buffer.to_s
15
+ assert_equal 0, buffer.position
16
+ end
17
+
18
+ def test_from_should_require_an_even_number_of_arguments
19
+ assert_raises(ArgumentError) { Net::SSH::Buffer.from("this") }
20
+ end
21
+
22
+ def test_from_should_build_new_buffer_from_definition
23
+ buffer = Net::SSH::Buffer.from(:byte, 1, :long, 2, :int64, 3, :string, "4", :bool, true, :bool, false, :bignum, OpenSSL::BN.new("1234567890", 10), :raw, "something")
24
+ assert_equal "\1\0\0\0\2\0\0\0\0\0\0\0\3\0\0\0\0014\1\0\000\000\000\004I\226\002\322something", buffer.to_s
25
+ end
26
+
27
+ def test_from_with_array_argument_should_write_multiple_of_the_given_type
28
+ buffer = Net::SSH::Buffer.from(:byte, [1,2,3,4,5])
29
+ assert_equal "\1\2\3\4\5", buffer.to_s
30
+ end
31
+
32
+ def test_read_without_argument_should_read_to_end
33
+ buffer = new("hello world")
34
+ assert_equal "hello world", buffer.read
35
+ assert buffer.eof?
36
+ assert_equal 11, buffer.position
37
+ end
38
+
39
+ def test_read_with_argument_that_is_less_than_length_should_read_that_many_bytes
40
+ buffer = new "hello world"
41
+ assert_equal "hello", buffer.read(5)
42
+ assert_equal 5, buffer.position
43
+ end
44
+
45
+ def test_read_with_argument_that_is_more_than_length_should_read_no_more_than_length
46
+ buffer = new "hello world"
47
+ assert_equal "hello world", buffer.read(500)
48
+ assert_equal 11, buffer.position
49
+ end
50
+
51
+ def test_read_at_eof_should_return_empty_string
52
+ buffer = new "hello"
53
+ buffer.position = 5
54
+ assert_equal "", buffer.read
55
+ end
56
+
57
+ def test_consume_without_argument_should_resize_buffer_to_start_at_position
58
+ buffer = new "hello world"
59
+ buffer.read(5)
60
+ assert_equal 5, buffer.position
61
+ assert_equal 11, buffer.length
62
+ buffer.consume!
63
+ assert_equal 0, buffer.position
64
+ assert_equal 6, buffer.length
65
+ assert_equal " world", buffer.to_s
66
+ end
67
+
68
+ def test_consume_with_argument_should_resize_buffer_starting_at_n
69
+ buffer = new "hello world"
70
+ assert_equal 0, buffer.position
71
+ buffer.consume!(5)
72
+ assert_equal 0, buffer.position
73
+ assert_equal 6, buffer.length
74
+ assert_equal " world", buffer.to_s
75
+ end
76
+
77
+ def test_read_bang_should_read_and_consume_and_return_read_portion
78
+ buffer = new "hello world"
79
+ assert_equal "hello", buffer.read!(5)
80
+ assert_equal 0, buffer.position
81
+ assert_equal 6, buffer.length
82
+ assert_equal " world", buffer.to_s
83
+ end
84
+
85
+ def test_available_should_return_length_after_position_to_end_of_string
86
+ buffer = new "hello world"
87
+ buffer.read(5)
88
+ assert_equal 6, buffer.available
89
+ end
90
+
91
+ def test_clear_bang_should_reset_buffer_contents_and_counters
92
+ buffer = new "hello world"
93
+ buffer.read(5)
94
+ buffer.clear!
95
+ assert_equal 0, buffer.length
96
+ assert_equal 0, buffer.position
97
+ assert_equal "", buffer.to_s
98
+ end
99
+
100
+ def test_append_should_append_argument_without_changing_position_and_should_return_self
101
+ buffer = new "hello world"
102
+ buffer.read(5)
103
+ buffer.append(" again")
104
+ assert_equal 5, buffer.position
105
+ assert_equal 12, buffer.available
106
+ assert_equal 17, buffer.length
107
+ assert_equal "hello world again", buffer.to_s
108
+ end
109
+
110
+ def test_remainder_as_buffer_should_return_a_new_buffer_filled_with_the_text_after_the_current_position
111
+ buffer = new "hello world"
112
+ buffer.read(6)
113
+ b2 = buffer.remainder_as_buffer
114
+ assert_equal 6, buffer.position
115
+ assert_equal 0, b2.position
116
+ assert_equal "world", b2.to_s
117
+ end
118
+
119
+ def test_read_int64_should_return_8_byte_integer
120
+ buffer = new "\xff\xee\xdd\xcc\xbb\xaa\x99\x88"
121
+ assert_equal 0xffeeddccbbaa9988, buffer.read_int64
122
+ assert_equal 8, buffer.position
123
+ end
124
+
125
+ def test_read_int64_should_return_nil_on_partial_read
126
+ buffer = new "\0\0\0\0\0\0\0"
127
+ assert_nil buffer.read_int64
128
+ assert buffer.eof?
129
+ end
130
+
131
+ def test_read_long_should_return_4_byte_integer
132
+ buffer = new "\xff\xee\xdd\xcc\xbb\xaa\x99\x88"
133
+ assert_equal 0xffeeddcc, buffer.read_long
134
+ assert_equal 4, buffer.position
135
+ end
136
+
137
+ def test_read_long_should_return_nil_on_partial_read
138
+ buffer = new "\0\0\0"
139
+ assert_nil buffer.read_long
140
+ assert buffer.eof?
141
+ end
142
+
143
+ def test_read_byte_should_return_single_byte_integer
144
+ buffer = new "\xfe\xdc"
145
+ assert_equal 0xfe, buffer.read_byte
146
+ assert_equal 1, buffer.position
147
+ end
148
+
149
+ def test_read_byte_should_return_nil_at_eof
150
+ assert_nil new.read_byte
151
+ end
152
+
153
+ def test_read_string_should_read_length_and_data_from_buffer
154
+ buffer = new "\0\0\0\x0bhello world"
155
+ assert_equal "hello world", buffer.read_string
156
+ end
157
+
158
+ def test_read_string_should_return_nil_if_4_byte_length_cannot_be_read
159
+ assert_nil new("\0\1").read_string
160
+ end
161
+
162
+ def test_read_bool_should_return_true_if_non_zero_byte_is_read
163
+ buffer = new "\1\2\3\4\5\6"
164
+ 6.times { assert_equal true, buffer.read_bool }
165
+ end
166
+
167
+ def test_read_bool_should_return_false_if_zero_byte_is_read
168
+ buffer = new "\0"
169
+ assert_equal false, buffer.read_bool
170
+ end
171
+
172
+ def test_read_bool_should_return_nil_at_eof
173
+ assert_nil new.read_bool
174
+ end
175
+
176
+ def test_read_bignum_should_read_openssl_formatted_bignum
177
+ buffer = new("\000\000\000\004I\226\002\322")
178
+ assert_equal OpenSSL::BN.new("1234567890", 10), buffer.read_bignum
179
+ end
180
+
181
+ def test_read_bignum_should_return_nil_if_length_cannot_be_read
182
+ assert_nil new("\0\1\2").read_bignum
183
+ end
184
+
185
+ def test_read_key_blob_should_read_dsa_keys
186
+ random_dss { |buffer| buffer.read_keyblob("ssh-dss") }
187
+ end
188
+
189
+ def test_read_key_blob_should_read_rsa_keys
190
+ random_rsa { |buffer| buffer.read_keyblob("ssh-rsa") }
191
+ end
192
+
193
+ def test_read_key_should_read_dsa_key_type_and_keyblob
194
+ random_dss do |buffer|
195
+ b2 = Net::SSH::Buffer.from(:string, "ssh-dss", :raw, buffer)
196
+ b2.read_key
197
+ end
198
+ end
199
+
200
+ def test_read_key_should_read_rsa_key_type_and_keyblob
201
+ random_rsa do |buffer|
202
+ b2 = Net::SSH::Buffer.from(:string, "ssh-rsa", :raw, buffer)
203
+ b2.read_key
204
+ end
205
+ end
206
+
207
+ def test_read_buffer_should_read_a_string_and_return_it_wrapped_in_a_buffer
208
+ buffer = new("\0\0\0\x0bhello world")
209
+ b2 = buffer.read_buffer
210
+ assert_equal 0, b2.position
211
+ assert_equal 11, b2.length
212
+ assert_equal "hello world", b2.read
213
+ end
214
+
215
+ def test_read_to_should_return_nil_if_pattern_does_not_exist_in_buffer
216
+ buffer = new("one two three")
217
+ assert_nil buffer.read_to("\n")
218
+ end
219
+
220
+ def test_read_to_should_grok_string_patterns
221
+ buffer = new("one two three")
222
+ assert_equal "one tw", buffer.read_to("tw")
223
+ assert_equal 6, buffer.position
224
+ end
225
+
226
+ def test_read_to_should_grok_regex_patterns
227
+ buffer = new("one two three")
228
+ assert_equal "one tw", buffer.read_to(/tw/)
229
+ assert_equal 6, buffer.position
230
+ end
231
+
232
+ def test_read_to_should_grok_fixnum_patterns
233
+ buffer = new("one two three")
234
+ assert_equal "one tw", buffer.read_to(?w)
235
+ assert_equal 6, buffer.position
236
+ end
237
+
238
+ def test_reset_bang_should_reset_position_to_0
239
+ buffer = new("hello world")
240
+ buffer.read(5)
241
+ assert_equal 5, buffer.position
242
+ buffer.reset!
243
+ assert_equal 0, buffer.position
244
+ end
245
+
246
+ def test_write_should_write_arguments_directly_to_end_buffer
247
+ buffer = new("start")
248
+ buffer.write "hello", " ", "world"
249
+ assert_equal "starthello world", buffer.to_s
250
+ assert_equal 0, buffer.position
251
+ end
252
+
253
+ def test_write_int64_should_write_arguments_as_8_byte_integers_to_end_of_buffer
254
+ buffer = new("start")
255
+ buffer.write_int64 0xffeeddccbbaa9988, 0x7766554433221100
256
+ assert_equal "start\xff\xee\xdd\xcc\xbb\xaa\x99\x88\x77\x66\x55\x44\x33\x22\x11\x00", buffer.to_s
257
+ end
258
+
259
+ def test_write_long_should_write_arguments_as_4_byte_integers_to_end_of_buffer
260
+ buffer = new("start")
261
+ buffer.write_long 0xffeeddcc, 0xbbaa9988
262
+ assert_equal "start\xff\xee\xdd\xcc\xbb\xaa\x99\x88", buffer.to_s
263
+ end
264
+
265
+ def test_write_byte_should_write_arguments_as_1_byte_integers_to_end_of_buffer
266
+ buffer = new("start")
267
+ buffer.write_byte 1, 2, 3, 4, 5
268
+ assert_equal "start\1\2\3\4\5", buffer.to_s
269
+ end
270
+
271
+ def test_write_bool_should_write_arguments_as_1_byte_boolean_values_to_end_of_buffer
272
+ buffer = new("start")
273
+ buffer.write_bool nil, false, true, 1, Object.new
274
+ assert_equal "start\0\0\1\1\1", buffer.to_s
275
+ end
276
+
277
+ def test_write_bignum_should_write_arguments_as_ssh_formatted_bignum_values_to_end_of_buffer
278
+ buffer = new("start")
279
+ buffer.write_bignum OpenSSL::BN.new('1234567890', 10)
280
+ assert_equal "start\000\000\000\004I\226\002\322", buffer.to_s
281
+ end
282
+
283
+ def test_write_dss_key_should_write_argument_to_end_of_buffer
284
+ buffer = new("start")
285
+
286
+ key = OpenSSL::PKey::DSA.new
287
+ key.p = 0xffeeddccbbaa9988
288
+ key.q = 0x7766554433221100
289
+ key.g = 0xffddbb9977553311
290
+ key.pub_key = 0xeeccaa8866442200
291
+
292
+ buffer.write_key(key)
293
+ assert_equal "start\0\0\0\7ssh-dss\0\0\0\011\0\xff\xee\xdd\xcc\xbb\xaa\x99\x88\0\0\0\010\x77\x66\x55\x44\x33\x22\x11\x00\0\0\0\011\0\xff\xdd\xbb\x99\x77\x55\x33\x11\0\0\0\011\0\xee\xcc\xaa\x88\x66\x44\x22\x00", buffer.to_s
294
+ end
295
+
296
+ def test_write_rsa_key_should_write_argument_to_end_of_buffer
297
+ buffer = new("start")
298
+
299
+ key = OpenSSL::PKey::RSA.new
300
+ key.e = 0xffeeddccbbaa9988
301
+ key.n = 0x7766554433221100
302
+
303
+ buffer.write_key(key)
304
+ assert_equal "start\0\0\0\7ssh-rsa\0\0\0\011\0\xff\xee\xdd\xcc\xbb\xaa\x99\x88\0\0\0\010\x77\x66\x55\x44\x33\x22\x11\x00", buffer.to_s
305
+ end
306
+
307
+ private
308
+
309
+ def random_rsa
310
+ n1 = OpenSSL::BN.new(rand(0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF).to_s, 10)
311
+ n2 = OpenSSL::BN.new(rand(0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF).to_s, 10)
312
+ buffer = Net::SSH::Buffer.from(:bignum, [n1, n2])
313
+ key = yield(buffer)
314
+ assert_equal "ssh-rsa", key.ssh_type
315
+ assert_equal n1, key.e
316
+ assert_equal n2, key.n
317
+ end
318
+
319
+ def random_dss
320
+ n1 = OpenSSL::BN.new(rand(0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF).to_s, 10)
321
+ n2 = OpenSSL::BN.new(rand(0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF).to_s, 10)
322
+ n3 = OpenSSL::BN.new(rand(0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF).to_s, 10)
323
+ n4 = OpenSSL::BN.new(rand(0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF).to_s, 10)
324
+ buffer = Net::SSH::Buffer.from(:bignum, [n1, n2, n3, n4])
325
+ key = yield(buffer)
326
+ assert_equal "ssh-dss", key.ssh_type
327
+ assert_equal n1, key.p
328
+ assert_equal n2, key.q
329
+ assert_equal n3, key.g
330
+ assert_equal n4, key.pub_key
331
+ end
332
+
333
+ def new(*args)
334
+ Net::SSH::Buffer.new(*args)
335
+ end
336
+ end