|
3 | 3 | require 'net/https'
|
4 | 4 | require 'json'
|
5 | 5 |
|
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 |
12 | 7 |
|
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']) |
14 | 15 |
|
15 |
| - if state["parallel_sessions_running"] < state["parallel_sessions_max_allowed"] |
16 |
| - break |
17 |
| - end |
| 16 | + state = JSON.parse(agent.request(request).body) |
18 | 17 |
|
19 |
| - print '.' |
20 |
| - sleep 30 |
21 |
| -end |
| 18 | + if state["parallel_sessions_running"] < state["parallel_sessions_max_allowed"] |
| 19 | + break |
| 20 | + end |
22 | 21 |
|
23 |
| -puts "\rRunning specs..." |
24 |
| -puts |
| 22 | + print '.' |
| 23 | + sleep 30 |
| 24 | + end |
25 | 25 |
|
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 |
28 | 28 |
|
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 |
32 | 31 |
|
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'] |
35 | 35 |
|
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' |
38 | 38 |
|
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') |
42 | 41 |
|
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 | + } |
46 | 45 |
|
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? } |
49 | 49 |
|
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 |
52 | 52 |
|
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 |
60 | 55 |
|
61 |
| - false |
62 |
| - rescue Exception |
63 |
| - true |
| 56 | + if totals =~ /0 failures/ |
| 57 | + exit 0 |
64 | 58 | end
|
65 |
| - }.each {|header, *specs| |
66 |
| - next unless specs.any? { |x| x.find_element(:css, '.failed') rescue false } |
67 | 59 |
|
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 |
69 | 72 |
|
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 |
72 | 75 |
|
73 |
| - method = group.find_element(:css, 'dt').text |
| 76 | + method = group.find_element(:css, 'dt').text |
74 | 77 |
|
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 | + } |
81 | 85 | }
|
82 | 86 | }
|
83 |
| - } |
| 87 | + rescue Selenium::WebDriver::Error::NoSuchElementError |
| 88 | + puts 'ya blew it' |
| 89 | + puts browser.page_source |
| 90 | + end |
84 | 91 | 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 |
89 | 97 | end
|
90 | 98 |
|
91 | 99 | exit 1
|
0 commit comments