Class: Webrat::Selenium::SeleniumRCServer

Inherits:
Object
  • Object
show all
Defined in:
lib/webrat/selenium/selenium_rc_server.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.bootObject



6
7
8
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 6

def self.boot
  new.boot
end

Instance Method Details

#bootObject



10
11
12
13
14
15
16
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 10

def boot
  return if selenium_grid?

  start
  wait
  stop_at_exit
end

#failObject



64
65
66
67
68
69
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 64

def fail
  $stderr.puts
  $stderr.puts
  $stderr.puts "==> Failed to boot the Selenium RC server... exiting!"
  exit
end

#jar_pathObject



39
40
41
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 39

def jar_path
  File.expand_path(__FILE__ + "../../../../../vendor/selenium-server.jar")
end

#remote_controlObject



30
31
32
33
34
35
36
37
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 30

def remote_control
  return @remote_control if @remote_control

  @remote_control = ::Selenium::RemoteControl::RemoteControl.new("0.0.0.0", Webrat.configuration.selenium_server_port, 5)
  @remote_control.jar_file = jar_path

  return @remote_control
end

#selenium_grid?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 43

def selenium_grid?
  Webrat.configuration.selenium_server_address
end

#startObject



18
19
20
21
22
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 18

def start
  silence_stream(STDOUT) do
    remote_control.start :background => true
  end
end

#stopObject



71
72
73
74
75
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 71

def stop
  silence_stream(STDOUT) do
    ::Selenium::RemoteControl::RemoteControl.new("0.0.0.0", Webrat.configuration.selenium_server_port, 5).stop
  end
end

#stop_at_exitObject



24
25
26
27
28
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 24

def stop_at_exit
  at_exit do
    stop
  end
end

#waitObject



47
48
49
50
51
52
53
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 47

def wait
  $stderr.print "==> Waiting for Selenium RC server on port #{Webrat.configuration.selenium_server_port}... "
  wait_for_socket
  $stderr.print "Ready!\n"
rescue SocketError
  fail
end

#wait_for_socketObject



55
56
57
58
59
60
61
62
# File 'lib/webrat/selenium/selenium_rc_server.rb', line 55

def wait_for_socket
  silence_stream(STDOUT) do
    TCPSocket.wait_for_service_with_timeout \
      :host     => (Webrat.configuration.selenium_server_address || "0.0.0.0"),
      :port     => Webrat.configuration.selenium_server_port,
      :timeout  => 15 # seconds
  end
end