Class: TrueAutomation::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/true_automation/client.rb

Instance Method Summary collapse

Instance Method Details

#start(options) ⇒ Object



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
# File 'lib/true_automation/client.rb', line 10

def start(options)

  @port = options[:port] || 9515
  remote = options[:remote]

  if options[:driver]
    driver_path = " --driver #{options[:driver]}"
    driver_path += " --driver-version #{options[:driver_version]}" if options[:driver_version]
  end

  @executable = ENV['TRUEAUTOMATION_EXEC'] || 'trueautomation'

  if find_executable(@executable).nil?
    raise "`#{@executable}` not found. Can not find TrueAutomation.IO client"
  end

  trueautomation_version = `#{@executable} --version`
  puts "TrueAutomation.IO client #{trueautomation_version.strip}"

  Dir.mkdir('log') unless File.exist?('log')
  logfile = "log/trueautomation-#{Time.now.strftime('%Y%m%dT%H%M%S')}.log"

  @pid = spawn("#{@executable} --log-file #{logfile} --port #{@port}#{driver_path}#{remote}")
  puts "Started TrueAutomation.IO client with pid #{@pid} listening to port #{@port}"

  @pid
end

#stopObject



38
39
40
41
42
43
44
45
46
# File 'lib/true_automation/client.rb', line 38

def stop
  if @pid
    puts "Stopping TrueAutomation.IO Client with pid #{@pid}"
    uri = URI("http://localhost:#{@port}/shutdown")
    Net::HTTP.get(uri)

    @pid = nil
  end
end

#wait_until_startObject



48
49
50
51
52
53
54
55
# File 'lib/true_automation/client.rb', line 48

def wait_until_start
  counter = 0
  loop do
    break if check_connection or counter >= 10
    counter += 1
    sleep 2
  end
end