Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 653c27a

Browse files
committedJan 25, 2014
spec: some runner improvements
1 parent 47f80aa commit 653c27a

File tree

2 files changed

+19
-22
lines changed

2 files changed

+19
-22
lines changed
 

‎Gemfile

+5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
source 'https://rubygems.org'
22
gemspec
33

4+
# specs
45
gem 'rack'
56
gem 'sinatra'
67
gem 'sinatra-websocket'
8+
9+
# runner
710
gem 'selenium-webdriver', require: false
11+
gem 'rest-client', require: false
812

13+
# browser
914
gem 'opal', github: 'opal/opal'
1015
gem 'opal-rspec', '0.3.0.beta3'
1116
gem 'paggio', github: 'meh/paggio'

‎spec/runner.rb

+14-22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/env ruby
22
require 'selenium/webdriver'
3-
require 'net/https'
3+
require 'rest_client'
44
require 'json'
55

66
url = "http://#{ENV['BS_USERNAME']}:#{ENV['BS_AUTHKEY']}@hub.browserstack.com/wd/hub"
@@ -17,13 +17,8 @@
1717

1818
begin
1919
loop do
20-
uri = URI.parse("https://www.browserstack.com/automate/plan.json")
21-
agent = Net::HTTP.new(uri.host, uri.port)
22-
agent.use_ssl = true
23-
request = Net::HTTP::Get.new(uri.request_uri)
24-
request.basic_auth(ENV['BS_USERNAME'], ENV['BS_AUTHKEY'])
25-
26-
state = JSON.parse(agent.request(request).body)
20+
response = RestClient.get("https://#{ENV['BS_USERNAME']}:#{ENV['BS_AUTHKEY']}@www.browserstack.com/automate/plan.json")
21+
state = JSON.parse(response.to_str)
2722

2823
if state["parallel_sessions_running"] < state["parallel_sessions_max_allowed"]
2924
break
@@ -39,14 +34,6 @@
3934
retry
4035
end
4136

42-
def screenshot(browser)
43-
browser.capture_entire_page_screenshot('screenshot.png')
44-
request = Net::HTTP.new('imgur.com')
45-
response = request.post('/api/upload.json', image: File.open('screenshot.png'))
46-
47-
JSON.parse(response.body)['rsp']['image']['original_image']
48-
end
49-
5037
print "\rRunning specs..."
5138

5239
begin
@@ -60,20 +47,25 @@ def screenshot(browser)
6047
duration = browser.find_element(:css, 'p#duration').find_element(:css, 'strong').text
6148

6249
puts "\r#{totals} in #{duration}"
63-
puts
6450

6551
if totals =~ / 0 failures/
6652
exit 0
6753
end
68-
69-
puts screenshot(browser)
7054
rescue Selenium::WebDriver::Error::NoSuchElementError
55+
puts "\rNo such element? You dun goof'd"
56+
puts
7157
puts browser.page_source
7258
rescue Selenium::WebDriver::Error::TimeOutError
73-
puts "\rTimeout, have fun: #{screenshot(browser)}"
74-
75-
exit 0
59+
puts "\rTimeout, have fun."
7660
ensure
61+
browser.capture_entire_page_screenshot('screenshot.png')
62+
response = RestClient.post('https://api.imgur.com/3/upload',
63+
{ image: File.open('screenshot.png') },
64+
{ 'Authorization' => 'Client-ID 1979876fe2a097e' })
65+
66+
puts
67+
puts JSON.parse(response.to_str)['data']['link']
68+
7769
browser.quit
7870
end
7971

0 commit comments

Comments
 (0)
Please sign in to comment.