Module: RWebSpec::WebDriver::TestWisePlugin

Included in:
Driver
Defined in:
lib/rwebspec-webdriver/testwise_plugin.rb

Instance Method Summary collapse

Instance Method Details

#connect_to_testwise(message_type, body) ⇒ Object



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 67

def connect_to_testwise (message_type, body)
  begin
    the_message = message_type + "|" + body
    if @last_message == the_message then # ignore the message same as preivous one
      return
    end
    itest_port = $TESTWISE_TRACE_PORT || 7025
    itest_socket = Socket.new(Socket::AF_INET, Socket::SOCK_STREAM, 0)
    itest_socket.connect(Socket.pack_sockaddr_in(itest_port, '127.0.0.1'))
    itest_socket.puts(the_message)
    @last_message = the_message
    itest_socket.close
  rescue => e
  end
end

#debug(message) ⇒ Object



7
8
9
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 7

def debug(message)
  connect_to_testwise(" DEBUG", message.to_s + "\r\n") if $RUN_IN_TESTWISE && message
end

#dump_caller_stackObject

find out the line (and file) the execution is on, and notify iTest via Socket



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
60
61
62
63
64
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 35

def dump_caller_stack
  return unless $TESTWISE_TRACE_EXECUTION
  begin
    trace_lines = []
    trace_file = nil
    found_first_spec_reference = false
    caller.each_with_index do |position, idx|
      next unless position =~ /\A(.*?):(\d+)/
      trace_file = $1
      if trace_file =~ /(_spec|_test|_rwebspec)\.rb\s*$/
        found_first_spec_reference = true
        trace_lines << position
        break
      end
      trace_lines << position
      break if trace_file =~ /example\/example_methods\.rb$/ or trace_file =~ /example\/example_group_methods\.rb$/
      break if trace_lines.size > 10
      # TODO: send multiple trace to be parse with pages.rb
      # break if trace_file =~ /example\/example_methods\.rb$/ or trace_file =~ /example\/example_group_methods\.rb$/ or trace_file =~ /driver\.rb$/ or trace_file =~ /timeout\.rb$/ # don't include rspec or ruby trace
    end

    #  (trace_file.include?("_spec.rb") || trace_file.include?("_rwebspec.rb") || trace_file.include?("_test.rb") || trace_file.include?("_cmd.rb"))
    if !trace_lines.empty?
      connect_to_testwise(" TRACE", trace_lines.reverse.join("|"))
    end

  rescue => e
    puts "failed to capture log: #{e}"
  end
end

#notify_screenshot_location(image_file_path) ⇒ Object



30
31
32
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 30

def notify_screenshot_location(image_file_path)
  connect_to_testwise("  SHOT", image_file_path)
end

#operation_delayObject

Support of iTest to ajust the intervals between keystroke/mouse operations



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 13

def operation_delay
  begin
    if $TESTWISE_OPERATION_DELAY && $TESTWISE_OPERATION_DELAY > 0 &&
            $TESTWISE_OPERATION_DELAY && $TESTWISE_OPERATION_DELAY < 30000  then # max 30 seconds
      sleep($TESTWISE_OPERATION_DELAY / 1000)
    end

    while $TESTWISE_PAUSE
      debug("Paused, waiting ...")
      sleep 1
    end
  rescue => e
    puts "Error on delaying: #{e}"
    # ignore
  end
end