Module: RWebSpec::WebDriver::TestWisePlugin

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

Instance Method Summary collapse

Instance Method Details

#check_for_pauseObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 34

def check_for_pause		
	
     if $TESTWISE_READY_TO_PAUSE
       # Already executed the the line immedately above,         
       # give some buffer time for TW to set $TESTWISE_PAUSE flag
       sleep 0.5 
     end

	# If the executed line no change, ignore
    while $TESTWISE_PAUSE													
        Thread.pass
        debug("[selenium_webdriver_extension] Paused, waiting ...")
        sleep 1
    end			
end

#connect_to_testwise(message_type, body) ⇒ Object



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 87

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



10
11
12
13
14
15
16
17
18
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 10

def debug(message)
				if $RUN_IN_TESTWISE && message					
					the_sent_msg = message.to_s
					if the_sent_msg.size > MAX_MESSAGE_LENGTH 
the_sent_msg = the_sent_msg[0..MAX_MESSAGE_LENGTH] + "..."
					end
  connect_to_testwise(" DEBUG",  the_sent_msg + "\r\n") 				
				end
end

#dump_caller_stackObject

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



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 55

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



50
51
52
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 50

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



22
23
24
25
26
27
28
29
30
31
32
# File 'lib/rwebspec-webdriver/testwise_plugin.rb', line 22

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         
  rescue => e
    puts "Error on delaying: #{e}"
    # ignore
  end
end