Skip to content

Commit 9c4f61e

Browse files
committedJan 30, 2014
spec/runner: catch timeouts in the specs
1 parent 1249105 commit 9c4f61e

File tree

1 file changed

+29
-25
lines changed

1 file changed

+29
-25
lines changed
 

‎spec/runner.rb

+29-25
Original file line numberDiff line numberDiff line change
@@ -82,33 +82,37 @@
8282

8383
print "\rRunning specs..."
8484

85-
# wait until the specs have finished, thus changing the content of #totals
86-
Selenium::WebDriver::Wait.new(timeout: 1200, interval: 30).until {
87-
print '.'
85+
begin
86+
# wait until the specs have finished, thus changing the content of #totals
87+
Selenium::WebDriver::Wait.new(timeout: 1200, interval: 30).until {
88+
print '.'
8889

89-
not browser['totals'].text.strip.empty?
90-
}
90+
not browser['totals'].text.strip.empty?
91+
}
9192

92-
totals = browser['totals'].text
93-
duration = browser[css: '#duration strong'].text
93+
totals = browser['totals'].text
94+
duration = browser[css: '#duration strong'].text
9495

95-
print "\r#{totals} in #{duration}"
96+
print "\r#{totals} in #{duration}"
9697

97-
# take a screenshot and upload it to imgur
98-
begin
99-
browser.save_screenshot('screenshot.png')
100-
response = RestClient.post('https://api.imgur.com/3/upload',
101-
{ image: File.open('screenshot.png') },
102-
{ 'Authorization' => 'Client-ID 1979876fe2a097e' })
103-
104-
print " ("
105-
print JSON.parse(response.to_str)['data']['link']
106-
puts ")"
107-
rescue Exception
108-
puts
109-
end
110-
111-
# no failures, happy times
112-
unless totals =~ / 0 failures/
113-
exit 1
98+
# no failures, happy times
99+
unless totals =~ / 0 failures/
100+
exit 1
101+
end
102+
rescue Selenium::WebDriver::Error::TimeOutError
103+
print "\rThe specs have timed out."
104+
ensure
105+
# take a screenshot and upload it to imgur
106+
begin
107+
browser.save_screenshot('screenshot.png')
108+
response = RestClient.post('https://api.imgur.com/3/upload',
109+
{ image: File.open('screenshot.png') },
110+
{ 'Authorization' => 'Client-ID 1979876fe2a097e' })
111+
112+
print " ("
113+
print JSON.parse(response.to_str)['data']['link']
114+
puts ")"
115+
rescue Exception
116+
puts
117+
end
114118
end

0 commit comments

Comments
 (0)
Please sign in to comment.