File: socket.rb

package info (click to toggle)
libnet-ssh2-ruby 2.0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 812 kB
  • ctags: 1,400
  • sloc: ruby: 8,839; makefile: 2
file content (59 lines) | stat: -rw-r--r-- 1,778 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
require 'socket'
require 'stringio'
require 'net/ssh/test/extensions'
require 'net/ssh/test/script'

module Net; module SSH; module Test

  # A mock socket implementation for use in testing. It implements the minimum
  # necessary interface for interacting with the rest of the Net::SSH::Test
  # system.
  class Socket < StringIO
    attr_reader :host, :port

    # The Net::SSH::Test::Script object in use by this socket. This is the
    # canonical script instance that should be used for any test depending on
    # this socket instance.
    attr_reader :script

    # Create a new test socket. This will also instantiate a new Net::SSH::Test::Script
    # and seed it with the necessary events to power the initialization of the
    # connection.
    def initialize
      extend(Net::SSH::Transport::PacketStream)
      super "SSH-2.0-Test\r\n"

      @script = Script.new

      script.gets(:kexinit, 1, 2, 3, 4, "test", "ssh-rsa", "none", "none", "none", "none", "none", "none", "", "", false)
      script.sends(:kexinit)
      script.sends(:newkeys)
      script.gets(:newkeys)
    end

    # This doesn't actually do anything, since we don't really care what gets
    # written.
    def write(data)
      # black hole, because we don't actually care about what gets written
    end

    # Allows the socket to also mimic a socket factory, simply returning
    # +self+.
    def open(host, port)
      @host, @port = host, port
      self
    end

    # Returns a sockaddr struct for the port and host that were used when the
    # socket was instantiated.
    def getpeername
      ::Socket.sockaddr_in(port, host)
    end

    # Alias to #read, but never returns nil (returns an empty string instead).
    def recv(n)
      read(n) || ""
    end
  end

end; end; end