Skip to content

Commit 9662c9b

Browse files
committedJan 24, 2014
spec: try to be more resilient to random timeouts
1 parent c11786c commit 9662c9b

File tree

2 files changed

+70
-66
lines changed

2 files changed

+70
-66
lines changed
 

‎.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ env:
3131
#- SELENIUM_BROWSER=ie SELENIUM_VERSION=6
3232
#- SELENIUM_BROWSER=ie SELENIUM_VERSION=7
3333
#- SELENIUM_BROWSER=ie SELENIUM_VERSION=8
34-
- SELENIUM_BROWSER=ie SELENIUM_VERSION=9
34+
#- SELENIUM_BROWSER=ie SELENIUM_VERSION=9
3535
- SELENIUM_BROWSER=ie SELENIUM_VERSION=10
3636
- SELENIUM_BROWSER=ie SELENIUM_VERSION=11
3737

@@ -42,13 +42,9 @@ matrix:
4242
- env: SELENIUM_BROWSER=chrome SELENIUM_VERSION=31
4343
- env: SELENIUM_BROWSER=chrome SELENIUM_VERSION=30
4444

45-
- env: SELENIUM_BROWSER=opera SELENIUM_VERSION=12.15
46-
- env: SELENIUM_BROWSER=opera SELENIUM_VERSION=12.16
47-
4845
- env: SELENIUM_BROWSER=ie SELENIUM_VERSION=6
4946
- env: SELENIUM_BROWSER=ie SELENIUM_VERSION=7
5047
- env: SELENIUM_BROWSER=ie SELENIUM_VERSION=8
51-
- env: SELENIUM_BROWSER=ie SELENIUM_VERSION=9
5248

5349
before_install:
5450
- gem update bundler

‎spec/runner.rb

+69-61
Original file line numberDiff line numberDiff line change
@@ -3,89 +3,97 @@
33
require 'net/https'
44
require 'json'
55

6-
loop do
7-
uri = URI.parse("https://www.browserstack.com/automate/plan.json")
8-
agent = Net::HTTP.new(uri.host, uri.port)
9-
agent.use_ssl = true
10-
request = Net::HTTP::Get.new(uri.request_uri)
11-
request.basic_auth(ENV['BS_USERNAME'], ENV['BS_AUTHKEY'])
6+
trials = 0
127

13-
state = JSON.parse(agent.request(request).body)
8+
begin
9+
loop do
10+
uri = URI.parse("https://www.browserstack.com/automate/plan.json")
11+
agent = Net::HTTP.new(uri.host, uri.port)
12+
agent.use_ssl = true
13+
request = Net::HTTP::Get.new(uri.request_uri)
14+
request.basic_auth(ENV['BS_USERNAME'], ENV['BS_AUTHKEY'])
1415

15-
if state["parallel_sessions_running"] < state["parallel_sessions_max_allowed"]
16-
break
17-
end
16+
state = JSON.parse(agent.request(request).body)
1817

19-
print '.'
20-
sleep 30
21-
end
18+
if state["parallel_sessions_running"] < state["parallel_sessions_max_allowed"]
19+
break
20+
end
2221

23-
puts "\rRunning specs..."
24-
puts
22+
print '.'
23+
sleep 30
24+
end
2525

26-
url = "http://#{ENV['BS_USERNAME']}:#{ENV['BS_AUTHKEY']}@hub.browserstack.com/wd/hub"
27-
cap = Selenium::WebDriver::Remote::Capabilities.new
26+
puts "\rRunning specs..."
27+
puts
2828

29-
cap['platform'] = ENV['SELENIUM_PLATFORM'] || 'ANY'
30-
cap['browser'] = ENV['SELENIUM_BROWSER'] || 'chrome'
31-
cap['browser_version'] = ENV['SELENIUM_VERSION'] if ENV['SELENIUM_VERSION']
29+
url = "http://#{ENV['BS_USERNAME']}:#{ENV['BS_AUTHKEY']}@hub.browserstack.com/wd/hub"
30+
cap = Selenium::WebDriver::Remote::Capabilities.new
3231

33-
cap['browserstack.tunnel'] = 'true'
34-
cap['browserstack.debug'] = 'false'
32+
cap['platform'] = ENV['SELENIUM_PLATFORM'] || 'ANY'
33+
cap['browser'] = ENV['SELENIUM_BROWSER'] || 'chrome'
34+
cap['browser_version'] = ENV['SELENIUM_VERSION'] if ENV['SELENIUM_VERSION']
3535

36-
browser = Selenium::WebDriver.for(:remote, url: url, desired_capabilities: cap)
37-
browser.navigate.to('http://localhost:9292')
36+
cap['browserstack.tunnel'] = 'true'
37+
cap['browserstack.debug'] = 'false'
3838

39-
at_exit {
40-
browser.quit
41-
}
39+
browser = Selenium::WebDriver.for(:remote, url: url, desired_capabilities: cap)
40+
browser.navigate.to('http://localhost:9292')
4241

43-
begin
44-
Selenium::WebDriver::Wait.new(timeout: 540, interval: 5) \
45-
.until { not browser.find_element(:css, 'p#totals').text.strip.empty? }
42+
at_exit {
43+
browser.quit
44+
}
4645

47-
totals = browser.find_element(:css, 'p#totals').text
48-
duration = browser.find_element(:css, 'p#duration').find_element(:css, 'strong').text
46+
begin
47+
Selenium::WebDriver::Wait.new(timeout: 120, interval: 5) \
48+
.until { not browser.find_element(:css, 'p#totals').text.strip.empty? }
4949

50-
puts "#{totals} in #{duration}"
51-
puts
50+
totals = browser.find_element(:css, 'p#totals').text
51+
duration = browser.find_element(:css, 'p#duration').find_element(:css, 'strong').text
5252

53-
if totals =~ /0 failures/
54-
exit 0
55-
end
56-
57-
browser.find_elements(:css, '.example_group').slice_before {|x|
58-
begin
59-
x.find_element(:css, 'dd')
53+
puts "#{totals} in #{duration}"
54+
puts
6055

61-
false
62-
rescue Exception
63-
true
56+
if totals =~ /0 failures/
57+
exit 0
6458
end
65-
}.each {|header, *specs|
66-
next unless specs.any? { |x| x.find_element(:css, '.failed') rescue false }
6759

68-
namespace = header.find_element(:css, 'dt').text
60+
browser.find_elements(:css, '.example_group').slice_before {|x|
61+
begin
62+
x.find_element(:css, 'dd')
63+
64+
false
65+
rescue Exception
66+
true
67+
end
68+
}.each {|header, *specs|
69+
next unless specs.any? { |x| x.find_element(:css, '.failed') rescue false }
70+
71+
namespace = header.find_element(:css, 'dt').text
6972

70-
specs.each {|group|
71-
next unless group.find_element(:css, '.failed') rescue false
73+
specs.each {|group|
74+
next unless group.find_element(:css, '.failed') rescue false
7275

73-
method = group.find_element(:css, 'dt').text
76+
method = group.find_element(:css, 'dt').text
7477

75-
group.find_elements(:css, 'dd.example.failed').each {|el|
76-
puts "#{namespace}#{method}"
77-
puts " #{el.find_element(:css, '.failed_spec_name').text}"
78-
puts
79-
puts el.find_element(:css, '.failure').text
80-
puts
78+
group.find_elements(:css, 'dd.example.failed').each {|el|
79+
puts "#{namespace}#{method}"
80+
puts " #{el.find_element(:css, '.failed_spec_name').text}"
81+
puts
82+
puts el.find_element(:css, '.failure').text
83+
puts
84+
}
8185
}
8286
}
83-
}
87+
rescue Selenium::WebDriver::Error::NoSuchElementError
88+
puts 'ya blew it'
89+
puts browser.page_source
90+
end
8491
rescue Selenium::WebDriver::Error::TimeOutError
85-
puts "The specs timed out, some asynchronous spec must have failed, good luck with that."
86-
rescue Selenium::WebDriver::Error::NoSuchElementError
87-
puts 'ya blew it'
88-
puts browser.page_source
92+
trials += 1
93+
94+
unless trials >= 4
95+
retry
96+
end
8997
end
9098

9199
exit 1

0 commit comments

Comments
 (0)
Please sign in to comment.