volt 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/VERSION +1 -1
- data/lib/volt/models/url.rb +11 -2
- data/lib/volt/page/bindings/attribute_binding.rb +5 -1
- data/lib/volt/page/page.rb +16 -8
- metadata +2 -3
- data/sauce_connect.log +0 -135
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1bbb48a5934f94dbcf9792f874a094a7676afcaa
|
4
|
+
data.tar.gz: 496c0ace68c39e79698db2601f741fc576cb5282
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fafa2560016c23ac530de15cf45eacf5ab7c1fb5ce08c3eeb3175fe40ee23aaa5bb09dd455af9c493555aa01b68cc207558e566a7f235bd5449864902deb86a
|
7
|
+
data.tar.gz: d14a5db4c01dfba85b4c4bb5a841bc173c16fb4382ab91b2bc662f17e6c893372dde4d25a14c49ba109563d16f0a0c1d3661e683574287715a88ac3baed2ae91
|
data/.gitignore
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.3
|
data/lib/volt/models/url.rb
CHANGED
@@ -22,10 +22,17 @@ class URL
|
|
22
22
|
@fragment = url[1..-1]
|
23
23
|
update!
|
24
24
|
else
|
25
|
-
|
25
|
+
host = `document.location.host`
|
26
|
+
|
26
27
|
if url[0..3] != 'http'
|
27
|
-
host
|
28
|
+
# Add the host for localized names
|
28
29
|
url = "http://#{host}" + url
|
30
|
+
else
|
31
|
+
# Make sure its on the same host, otherwise its external.
|
32
|
+
if url !~ /https?[:]\/\/#{host}/
|
33
|
+
# Different host, don't process
|
34
|
+
return false
|
35
|
+
end
|
29
36
|
end
|
30
37
|
|
31
38
|
matcher = url.match(/^(https?)[:]\/\/([^\/]+)(.*)$/)
|
@@ -41,6 +48,8 @@ class URL
|
|
41
48
|
end
|
42
49
|
|
43
50
|
scroll
|
51
|
+
|
52
|
+
return true
|
44
53
|
end
|
45
54
|
|
46
55
|
# Full url rebuilds the url from it's constituent parts
|
@@ -69,7 +69,11 @@ class AttributeBinding < BaseBinding
|
|
69
69
|
def value=(val)
|
70
70
|
case @attribute_name
|
71
71
|
when 'value'
|
72
|
-
|
72
|
+
# TODO: only update if its not the same, this keeps it from moving the
|
73
|
+
# cursor in text fields.
|
74
|
+
if val != element.value
|
75
|
+
element.value = val
|
76
|
+
end
|
73
77
|
else
|
74
78
|
element[@attribute_name] = val
|
75
79
|
end
|
data/lib/volt/page/page.rb
CHANGED
@@ -61,10 +61,7 @@ class Page
|
|
61
61
|
});
|
62
62
|
|
63
63
|
$(document).on('click', 'a', function(event) {
|
64
|
-
Opal.gvars.page.$link_clicked($(this).attr('href'));
|
65
|
-
event.stopPropagation();
|
66
|
-
|
67
|
-
return false;
|
64
|
+
return Opal.gvars.page.$link_clicked($(this).attr('href'), event);
|
68
65
|
});
|
69
66
|
}
|
70
67
|
end
|
@@ -74,17 +71,28 @@ class Page
|
|
74
71
|
@tasks ||= Tasks.new(self)
|
75
72
|
end
|
76
73
|
|
77
|
-
def link_clicked(url='')
|
74
|
+
def link_clicked(url='', event=nil)
|
78
75
|
# Skip when href == ''
|
79
76
|
return if url.blank?
|
80
77
|
|
81
78
|
# Normalize url
|
82
79
|
# Benchmark.bm(1) do
|
83
|
-
|
80
|
+
if @url.parse(url)
|
81
|
+
if event
|
82
|
+
# Handled new url
|
83
|
+
`event.stopPropagation();`
|
84
|
+
end
|
85
|
+
|
86
|
+
# Clear the flash
|
87
|
+
flash.clear
|
88
|
+
|
89
|
+
# return false to stop the event propigation
|
90
|
+
return false
|
91
|
+
end
|
84
92
|
# end
|
85
93
|
|
86
|
-
#
|
87
|
-
|
94
|
+
# Not stopping, process link normally
|
95
|
+
return true
|
88
96
|
end
|
89
97
|
|
90
98
|
# We provide a binding_name, so we can bind events on the document
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: volt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Stout
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -517,7 +517,6 @@ files:
|
|
517
517
|
- lib/volt/utils/generic_counting_pool.rb
|
518
518
|
- lib/volt/utils/generic_pool.rb
|
519
519
|
- lib/volt/volt/environment.rb
|
520
|
-
- sauce_connect.log
|
521
520
|
- spec/apps/file_loading/app/bootstrap/assets/js/bootstrap.js
|
522
521
|
- spec/apps/file_loading/app/main/assets/js/test1.js
|
523
522
|
- spec/apps/file_loading/app/main/config/dependencies.rb
|
data/sauce_connect.log
DELETED
@@ -1,135 +0,0 @@
|
|
1
|
-
2014-02-13 14:24:21,720 - sauce_connect:575 - INFO - / Starting \
|
2
|
-
2014-02-13 14:24:21,723 - sauce_connect:576 - INFO - Please wait for "You may start your tests" to start your tests.
|
3
|
-
2014-02-13 14:24:21,727 - sauce_connect:588 - DEBUG - System is -6.0 hours off UTC
|
4
|
-
2014-02-13 14:24:21,729 - sauce_connect:590 - DEBUG - options: {'user': 'ryanstout', 'ports': ['56752'], 'no_ssl_bump_domains': '', 'domains': ['sauce-connect.proxy'], 'debug_ssh': False, 'tunnel_ports': ['80'], 'allow_unclean_exit': False, 'rest_url': 'https://saucelabs.com/rest/v1', 'logfile': 'sauce_connect.log', 'squid_opts': '', 'logfilesize': '31457280', 'boost_mode': True, 'tunnel_identifier': '', 'fast_fail_regexps': '', 'vm_version': '', 'quiet': False, 'latency_log': 150, 'use_ssh_config': False, 'ssh': False, 'se_port': '4445', 'readyfile': 'sauce_connect.ready', 'shared_tunnel': False, 'ssh_port': 443, 'direct_domains': '', 'host': '127.0.0.1'}
|
5
|
-
2014-02-13 14:24:21,730 - sauce_connect:591 - DEBUG - metadata: {'PythonVersion': '2.5.1', 'OwnerHost': '127.0.0.1', 'Release': '3.0-r30', 'OwnerPorts': ['56752'], 'Ports': ['80'], 'Platform': 'Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64', 'Build': '46', 'ScriptRelease': 46, 'ScriptName': 'sauce_connect'}
|
6
|
-
2014-02-13 14:24:21,730 - sauce_connect:593 - INFO - Forwarding: ['sauce-connect.proxy']:['80'] -> 127.0.0.1:['56752']
|
7
|
-
2014-02-13 14:24:21,739 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:56752 in 3ms
|
8
|
-
2014-02-13 14:24:22,012 - sauce_connect:248 - INFO - {"no_ssl_bump_domains":null,"squid_config":null,"use_caching_proxy":true,"metadata":{"PythonVersion":"2.5.1","OwnerHost":"127.0.0.1","Release":"3.0-r30","OwnerPorts":["56752"],"Ports":["80"],"Platform":"Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64","Build":"46","ScriptRelease":46,"ScriptName":"sauce_connect"},"use_kgp":true,"tunnel_identifier":"","shared_tunnel":false,"fast_fail_regexps":null,"ssh_port":443,"direct_domains":null,"vm_version":"","domain_names":["sauce-connect.proxy"]}
|
9
|
-
2014-02-13 14:24:26,351 - sauce_connect:260 - INFO - Tunnel remote VM is provisioned (fc2d8860735b46a486d50402352e43e5)
|
10
|
-
2014-02-13 14:24:27,068 - sauce_connect:278 - INFO - Tunnel remote VM is booting ..
|
11
|
-
2014-02-13 14:24:50,168 - sauce_connect:282 - INFO - Tunnel remote VM is running at maki77096.miso.saucelabs.com
|
12
|
-
2014-02-13 14:24:50,181 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:56752 in 0ms
|
13
|
-
2014-02-13 14:24:50,184 - sauce_connect:665 - INFO - Starting connection to tunnel host...
|
14
|
-
2014-02-13 14:24:50,187 - sauce_connect:665 - INFO - Connecting to tunnel host maki77096.miso.saucelabs.com as ryanstout
|
15
|
-
2014-02-13 14:24:50,267 - sauce_connect:665 - INFO - Forwarding Selenium with ephemeral port 56755
|
16
|
-
2014-02-13 14:24:50,272 - sauce_connect:665 - INFO - Selenium HTTP proxy listening on port 4445
|
17
|
-
2014-02-13 14:24:50,697 - sauce_connect:0 - INFO - Successful handshake with Sauce Connect server
|
18
|
-
2014-02-13 14:24:50,746 - sauce_connect:0 - INFO - Tunnel host version: 0.1.0, remote endpoint ID: b74a3433db314256ad0c257a9de4116a
|
19
|
-
2014-02-13 14:24:50,750 - sauce_connect:665 - INFO - Connected! You may start your tests.
|
20
|
-
2014-02-13 14:24:55,766 - sauce_connect:0 - INFO - received SIGINT
|
21
|
-
2014-02-13 14:30:56,137 - sauce_connect:575 - INFO - / Starting \
|
22
|
-
2014-02-13 14:30:56,138 - sauce_connect:576 - INFO - Please wait for "You may start your tests" to start your tests.
|
23
|
-
2014-02-13 14:30:56,144 - sauce_connect:588 - DEBUG - System is -6.0 hours off UTC
|
24
|
-
2014-02-13 14:30:56,144 - sauce_connect:590 - DEBUG - options: {'user': 'ryanstout', 'ports': ['57407'], 'no_ssl_bump_domains': '', 'domains': ['sauce-connect.proxy'], 'debug_ssh': False, 'tunnel_ports': ['80'], 'allow_unclean_exit': False, 'rest_url': 'https://saucelabs.com/rest/v1', 'logfile': 'sauce_connect.log', 'squid_opts': '', 'logfilesize': '31457280', 'boost_mode': True, 'tunnel_identifier': '', 'fast_fail_regexps': '', 'vm_version': '', 'quiet': False, 'latency_log': 150, 'use_ssh_config': False, 'ssh': False, 'se_port': '4445', 'readyfile': 'sauce_connect.ready', 'shared_tunnel': False, 'ssh_port': 443, 'direct_domains': '', 'host': '127.0.0.1'}
|
25
|
-
2014-02-13 14:30:56,145 - sauce_connect:591 - DEBUG - metadata: {'PythonVersion': '2.5.1', 'OwnerHost': '127.0.0.1', 'Release': '3.0-r30', 'OwnerPorts': ['57407'], 'Ports': ['80'], 'Platform': 'Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64', 'Build': '46', 'ScriptRelease': 46, 'ScriptName': 'sauce_connect'}
|
26
|
-
2014-02-13 14:30:56,147 - sauce_connect:593 - INFO - Forwarding: ['sauce-connect.proxy']:['80'] -> 127.0.0.1:['57407']
|
27
|
-
2014-02-13 14:30:56,154 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57407 in 3ms
|
28
|
-
2014-02-13 14:30:57,117 - sauce_connect:248 - INFO - {"no_ssl_bump_domains":null,"squid_config":null,"use_caching_proxy":true,"metadata":{"PythonVersion":"2.5.1","OwnerHost":"127.0.0.1","Release":"3.0-r30","OwnerPorts":["57407"],"Ports":["80"],"Platform":"Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64","Build":"46","ScriptRelease":46,"ScriptName":"sauce_connect"},"use_kgp":true,"tunnel_identifier":"","shared_tunnel":false,"fast_fail_regexps":null,"ssh_port":443,"direct_domains":null,"vm_version":"","domain_names":["sauce-connect.proxy"]}
|
29
|
-
2014-02-13 14:31:01,721 - sauce_connect:260 - INFO - Tunnel remote VM is provisioned (d554c7eba2814f1e827b86cf265c7d50)
|
30
|
-
2014-02-13 14:31:02,644 - sauce_connect:278 - INFO - Tunnel remote VM is booting ..
|
31
|
-
2014-02-13 14:31:38,207 - sauce_connect:282 - INFO - Tunnel remote VM is running at maki77119.miso.saucelabs.com
|
32
|
-
2014-02-13 14:31:38,219 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57407 in 0ms
|
33
|
-
2014-02-13 14:31:38,220 - sauce_connect:665 - INFO - Starting connection to tunnel host...
|
34
|
-
2014-02-13 14:31:38,223 - sauce_connect:665 - INFO - Connecting to tunnel host maki77119.miso.saucelabs.com as ryanstout
|
35
|
-
2014-02-13 14:31:38,309 - sauce_connect:665 - INFO - Forwarding Selenium with ephemeral port 57415
|
36
|
-
2014-02-13 14:31:38,450 - sauce_connect:665 - INFO - Selenium HTTP proxy listening on port 4445
|
37
|
-
2014-02-13 14:31:38,788 - sauce_connect:0 - INFO - Successful handshake with Sauce Connect server
|
38
|
-
2014-02-13 14:31:38,834 - sauce_connect:0 - INFO - Tunnel host version: 0.1.0, remote endpoint ID: bb9891d69b0b48b492fc15286664f218
|
39
|
-
2014-02-13 14:31:38,836 - sauce_connect:665 - INFO - Connected! You may start your tests.
|
40
|
-
2014-02-13 14:31:51,937 - sauce_connect:0 - INFO - Request started: GET http://127.0.0.1:3000/
|
41
|
-
2014-02-13 14:31:51,946 - sauce_connect:0 - INFO - Could not proxy http://127.0.0.1:3000/, exception: java.net.ConnectException: Connection refused
|
42
|
-
2014-02-13 14:31:52,088 - sauce_connect:0 - INFO - Request started: GET http://127.0.0.1:3000/favicon.ico
|
43
|
-
2014-02-13 14:31:52,092 - sauce_connect:0 - INFO - Could not proxy http://127.0.0.1:3000/favicon.ico, exception: java.net.ConnectException: Connection refused
|
44
|
-
2014-02-13 14:31:55,500 - sauce_connect:0 - INFO - received SIGINT
|
45
|
-
2014-02-13 14:55:05,936 - sauce_connect:575 - INFO - / Starting \
|
46
|
-
2014-02-13 14:55:05,938 - sauce_connect:576 - INFO - Please wait for "You may start your tests" to start your tests.
|
47
|
-
2014-02-13 14:55:05,944 - sauce_connect:588 - DEBUG - System is -6.0 hours off UTC
|
48
|
-
2014-02-13 14:55:05,944 - sauce_connect:590 - DEBUG - options: {'user': 'ryanstout', 'ports': ['57810'], 'no_ssl_bump_domains': '', 'domains': ['sauce-connect.proxy'], 'debug_ssh': False, 'tunnel_ports': ['80'], 'allow_unclean_exit': False, 'rest_url': 'https://saucelabs.com/rest/v1', 'logfile': 'sauce_connect.log', 'squid_opts': '', 'logfilesize': '31457280', 'boost_mode': True, 'tunnel_identifier': '', 'fast_fail_regexps': '', 'vm_version': '', 'quiet': False, 'latency_log': 150, 'use_ssh_config': False, 'ssh': False, 'se_port': '4445', 'readyfile': 'sauce_connect.ready', 'shared_tunnel': False, 'ssh_port': 443, 'direct_domains': '', 'host': '127.0.0.1'}
|
49
|
-
2014-02-13 14:55:05,947 - sauce_connect:591 - DEBUG - metadata: {'PythonVersion': '2.5.1', 'OwnerHost': '127.0.0.1', 'Release': '3.0-r30', 'OwnerPorts': ['57810'], 'Ports': ['80'], 'Platform': 'Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64', 'Build': '46', 'ScriptRelease': 46, 'ScriptName': 'sauce_connect'}
|
50
|
-
2014-02-13 14:55:05,947 - sauce_connect:593 - INFO - Forwarding: ['sauce-connect.proxy']:['80'] -> 127.0.0.1:['57810']
|
51
|
-
2014-02-13 14:55:05,954 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57810 in 3ms
|
52
|
-
2014-02-13 14:55:06,543 - sauce_connect:248 - INFO - {"no_ssl_bump_domains":null,"squid_config":null,"use_caching_proxy":true,"metadata":{"PythonVersion":"2.5.1","OwnerHost":"127.0.0.1","Release":"3.0-r30","OwnerPorts":["57810"],"Ports":["80"],"Platform":"Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64","Build":"46","ScriptRelease":46,"ScriptName":"sauce_connect"},"use_kgp":true,"tunnel_identifier":"","shared_tunnel":false,"fast_fail_regexps":null,"ssh_port":443,"direct_domains":null,"vm_version":"","domain_names":["sauce-connect.proxy"]}
|
53
|
-
2014-02-13 14:55:06,671 - sauce_connect:0 - INFO - received SIGINT
|
54
|
-
2014-02-13 14:57:40,688 - sauce_connect:575 - INFO - / Starting \
|
55
|
-
2014-02-13 14:57:40,691 - sauce_connect:576 - INFO - Please wait for "You may start your tests" to start your tests.
|
56
|
-
2014-02-13 14:57:40,697 - sauce_connect:588 - DEBUG - System is -6.0 hours off UTC
|
57
|
-
2014-02-13 14:57:40,697 - sauce_connect:590 - DEBUG - options: {'user': 'ryanstout', 'ports': ['57821'], 'no_ssl_bump_domains': '', 'domains': ['sauce-connect.proxy'], 'debug_ssh': False, 'tunnel_ports': ['80'], 'allow_unclean_exit': False, 'rest_url': 'https://saucelabs.com/rest/v1', 'logfile': 'sauce_connect.log', 'squid_opts': '', 'logfilesize': '31457280', 'boost_mode': True, 'tunnel_identifier': '', 'fast_fail_regexps': '', 'vm_version': '', 'quiet': False, 'latency_log': 150, 'use_ssh_config': False, 'ssh': False, 'se_port': '4445', 'readyfile': 'sauce_connect.ready', 'shared_tunnel': False, 'ssh_port': 443, 'direct_domains': '', 'host': '127.0.0.1'}
|
58
|
-
2014-02-13 14:57:40,698 - sauce_connect:591 - DEBUG - metadata: {'PythonVersion': '2.5.1', 'OwnerHost': '127.0.0.1', 'Release': '3.0-r30', 'OwnerPorts': ['57821'], 'Ports': ['80'], 'Platform': 'Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64', 'Build': '46', 'ScriptRelease': 46, 'ScriptName': 'sauce_connect'}
|
59
|
-
2014-02-13 14:57:40,700 - sauce_connect:593 - INFO - Forwarding: ['sauce-connect.proxy']:['80'] -> 127.0.0.1:['57821']
|
60
|
-
2014-02-13 14:57:40,707 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57821 in 3ms
|
61
|
-
2014-02-13 14:57:42,609 - sauce_connect:202 - WARNING - NOTICE: Already running tunnels exist that would collide with this instance of Connect. Shutting them down before starting.
|
62
|
-
Read http://saucelabs.com/docs/connect#tunnel-identifier for more details.
|
63
|
-
2014-02-13 14:57:42,611 - sauce_connect:213 - INFO - Shutting down tunnel VM: bfa843b94ae9414a9b16cce6d3ee7cf8 running without any identifiers
|
64
|
-
2014-02-13 14:57:48,062 - sauce_connect:248 - INFO - {"no_ssl_bump_domains":null,"squid_config":null,"use_caching_proxy":true,"metadata":{"PythonVersion":"2.5.1","OwnerHost":"127.0.0.1","Release":"3.0-r30","OwnerPorts":["57821"],"Ports":["80"],"Platform":"Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64","Build":"46","ScriptRelease":46,"ScriptName":"sauce_connect"},"use_kgp":true,"tunnel_identifier":"","shared_tunnel":false,"fast_fail_regexps":null,"ssh_port":443,"direct_domains":null,"vm_version":"","domain_names":["sauce-connect.proxy"]}
|
65
|
-
2014-02-13 14:57:53,861 - sauce_connect:260 - INFO - Tunnel remote VM is provisioned (a29a4204eeba4056820d14ca32d8cccf)
|
66
|
-
2014-02-13 14:57:54,299 - sauce_connect:278 - INFO - Tunnel remote VM is booting ..
|
67
|
-
2014-02-13 14:58:23,881 - sauce_connect:282 - INFO - Tunnel remote VM is running at maki77104.miso.saucelabs.com
|
68
|
-
2014-02-13 14:58:23,894 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57821 in 0ms
|
69
|
-
2014-02-13 14:58:23,897 - sauce_connect:665 - INFO - Starting connection to tunnel host...
|
70
|
-
2014-02-13 14:58:23,898 - sauce_connect:665 - INFO - Connecting to tunnel host maki77104.miso.saucelabs.com as ryanstout
|
71
|
-
2014-02-13 14:58:24,140 - sauce_connect:665 - INFO - Forwarding Selenium with ephemeral port 57844
|
72
|
-
2014-02-13 14:58:24,144 - sauce_connect:665 - INFO - Selenium HTTP proxy listening on port 4445
|
73
|
-
2014-02-13 14:58:24,608 - sauce_connect:0 - INFO - Successful handshake with Sauce Connect server
|
74
|
-
2014-02-13 14:58:24,657 - sauce_connect:0 - INFO - Tunnel host version: 0.1.0, remote endpoint ID: ec01d03caf3c4bcca38e83e8d590fdd9
|
75
|
-
2014-02-13 14:58:24,658 - sauce_connect:665 - INFO - Connected! You may start your tests.
|
76
|
-
2014-02-13 14:58:42,484 - sauce_connect:0 - INFO - Request started: GET http://127.0.0.1:3000/
|
77
|
-
2014-02-13 14:58:42,493 - sauce_connect:0 - INFO - Could not proxy http://127.0.0.1:3000/, exception: java.net.ConnectException: Connection refused
|
78
|
-
2014-02-13 14:58:42,720 - sauce_connect:0 - INFO - Request started: GET http://127.0.0.1:3000/favicon.ico
|
79
|
-
2014-02-13 14:58:42,721 - sauce_connect:0 - INFO - Could not proxy http://127.0.0.1:3000/favicon.ico, exception: java.net.ConnectException: Connection refused
|
80
|
-
2014-02-13 14:58:45,823 - sauce_connect:0 - INFO - received SIGINT
|
81
|
-
2014-02-13 15:01:36,489 - sauce_connect:575 - INFO - / Starting \
|
82
|
-
2014-02-13 15:01:36,492 - sauce_connect:576 - INFO - Please wait for "You may start your tests" to start your tests.
|
83
|
-
2014-02-13 15:01:36,496 - sauce_connect:588 - DEBUG - System is -6.0 hours off UTC
|
84
|
-
2014-02-13 15:01:36,497 - sauce_connect:590 - DEBUG - options: {'user': 'ryanstout', 'ports': ['57874'], 'no_ssl_bump_domains': '', 'domains': ['sauce-connect.proxy'], 'debug_ssh': False, 'tunnel_ports': ['80'], 'allow_unclean_exit': False, 'rest_url': 'https://saucelabs.com/rest/v1', 'logfile': 'sauce_connect.log', 'squid_opts': '', 'logfilesize': '31457280', 'boost_mode': True, 'tunnel_identifier': '', 'fast_fail_regexps': '', 'vm_version': '', 'quiet': False, 'latency_log': 150, 'use_ssh_config': False, 'ssh': False, 'se_port': '4445', 'readyfile': 'sauce_connect.ready', 'shared_tunnel': False, 'ssh_port': 443, 'direct_domains': '', 'host': '127.0.0.1'}
|
85
|
-
2014-02-13 15:01:36,500 - sauce_connect:591 - DEBUG - metadata: {'PythonVersion': '2.5.1', 'OwnerHost': '127.0.0.1', 'Release': '3.0-r30', 'OwnerPorts': ['57874'], 'Ports': ['80'], 'Platform': 'Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64', 'Build': '46', 'ScriptRelease': 46, 'ScriptName': 'sauce_connect'}
|
86
|
-
2014-02-13 15:01:36,500 - sauce_connect:593 - INFO - Forwarding: ['sauce-connect.proxy']:['80'] -> 127.0.0.1:['57874']
|
87
|
-
2014-02-13 15:01:36,507 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57874 in 3ms
|
88
|
-
2014-02-13 15:01:36,707 - sauce_connect:248 - INFO - {"no_ssl_bump_domains":null,"squid_config":null,"use_caching_proxy":true,"metadata":{"PythonVersion":"2.5.1","OwnerHost":"127.0.0.1","Release":"3.0-r30","OwnerPorts":["57874"],"Ports":["80"],"Platform":"Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64","Build":"46","ScriptRelease":46,"ScriptName":"sauce_connect"},"use_kgp":true,"tunnel_identifier":"","shared_tunnel":false,"fast_fail_regexps":null,"ssh_port":443,"direct_domains":null,"vm_version":"","domain_names":["sauce-connect.proxy"]}
|
89
|
-
2014-02-13 15:01:40,437 - sauce_connect:260 - INFO - Tunnel remote VM is provisioned (af3709876e714047b29808eb56c0ebf9)
|
90
|
-
2014-02-13 15:01:41,137 - sauce_connect:278 - INFO - Tunnel remote VM is booting ..
|
91
|
-
2014-02-13 15:02:07,947 - sauce_connect:282 - INFO - Tunnel remote VM is running at maki77038.miso.saucelabs.com
|
92
|
-
2014-02-13 15:02:07,960 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57874 in 0ms
|
93
|
-
2014-02-13 15:02:07,963 - sauce_connect:665 - INFO - Starting connection to tunnel host...
|
94
|
-
2014-02-13 15:02:07,964 - sauce_connect:665 - INFO - Connecting to tunnel host maki77038.miso.saucelabs.com as ryanstout
|
95
|
-
2014-02-13 15:02:08,180 - sauce_connect:665 - INFO - Forwarding Selenium with ephemeral port 57917
|
96
|
-
2014-02-13 15:02:08,184 - sauce_connect:665 - INFO - Selenium HTTP proxy listening on port 4445
|
97
|
-
2014-02-13 15:02:08,538 - sauce_connect:0 - INFO - Successful handshake with Sauce Connect server
|
98
|
-
2014-02-13 15:02:08,588 - sauce_connect:0 - INFO - Tunnel host version: 0.1.0, remote endpoint ID: 8ebc7f4644964ef0b2fe0de5f9bcb448
|
99
|
-
2014-02-13 15:02:08,592 - sauce_connect:665 - INFO - Connected! You may start your tests.
|
100
|
-
2014-02-13 15:02:36,704 - sauce_connect:0 - INFO - Request started: GET http://127.0.0.1:3000/
|
101
|
-
2014-02-13 15:02:36,714 - sauce_connect:0 - INFO - Could not proxy http://127.0.0.1:3000/, exception: java.net.ConnectException: Connection refused
|
102
|
-
2014-02-13 15:02:36,940 - sauce_connect:0 - INFO - Request started: GET http://127.0.0.1:3000/favicon.ico
|
103
|
-
2014-02-13 15:02:36,943 - sauce_connect:0 - INFO - Could not proxy http://127.0.0.1:3000/favicon.ico, exception: java.net.ConnectException: Connection refused
|
104
|
-
2014-02-13 15:02:40,171 - sauce_connect:0 - INFO - received SIGINT
|
105
|
-
2014-02-13 15:03:26,038 - sauce_connect:575 - INFO - / Starting \
|
106
|
-
2014-02-13 15:03:26,040 - sauce_connect:576 - INFO - Please wait for "You may start your tests" to start your tests.
|
107
|
-
2014-02-13 15:03:26,046 - sauce_connect:588 - DEBUG - System is -6.0 hours off UTC
|
108
|
-
2014-02-13 15:03:26,046 - sauce_connect:590 - DEBUG - options: {'user': 'ryanstout', 'ports': ['57941'], 'no_ssl_bump_domains': '', 'domains': ['sauce-connect.proxy'], 'debug_ssh': False, 'tunnel_ports': ['80'], 'allow_unclean_exit': False, 'rest_url': 'https://saucelabs.com/rest/v1', 'logfile': 'sauce_connect.log', 'squid_opts': '', 'logfilesize': '31457280', 'boost_mode': True, 'tunnel_identifier': '', 'fast_fail_regexps': '', 'vm_version': '', 'quiet': False, 'latency_log': 150, 'use_ssh_config': False, 'ssh': False, 'se_port': '4445', 'readyfile': 'sauce_connect.ready', 'shared_tunnel': False, 'ssh_port': 443, 'direct_domains': '', 'host': '127.0.0.1'}
|
109
|
-
2014-02-13 15:03:26,048 - sauce_connect:591 - DEBUG - metadata: {'PythonVersion': '2.5.1', 'OwnerHost': '127.0.0.1', 'Release': '3.0-r30', 'OwnerPorts': ['57941'], 'Ports': ['80'], 'Platform': 'Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64', 'Build': '46', 'ScriptRelease': 46, 'ScriptName': 'sauce_connect'}
|
110
|
-
2014-02-13 15:03:26,058 - sauce_connect:593 - INFO - Forwarding: ['sauce-connect.proxy']:['80'] -> 127.0.0.1:['57941']
|
111
|
-
2014-02-13 15:03:26,065 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57941 in 2ms
|
112
|
-
2014-02-13 15:03:30,970 - sauce_connect:248 - INFO - {"no_ssl_bump_domains":null,"squid_config":null,"use_caching_proxy":true,"metadata":{"PythonVersion":"2.5.1","OwnerHost":"127.0.0.1","Release":"3.0-r30","OwnerPorts":["57941"],"Ports":["80"],"Platform":"Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64","Build":"46","ScriptRelease":46,"ScriptName":"sauce_connect"},"use_kgp":true,"tunnel_identifier":"","shared_tunnel":false,"fast_fail_regexps":null,"ssh_port":443,"direct_domains":null,"vm_version":"","domain_names":["sauce-connect.proxy"]}
|
113
|
-
2014-02-13 15:03:34,927 - sauce_connect:260 - INFO - Tunnel remote VM is provisioned (6cf1b1d77d8a408e9a972edb5bf4f63a)
|
114
|
-
2014-02-13 15:03:35,119 - sauce_connect:278 - INFO - Tunnel remote VM is booting ..
|
115
|
-
2014-02-13 15:04:13,437 - sauce_connect:0 - INFO - received SIGINT
|
116
|
-
2014-02-13 15:06:18,496 - sauce_connect:575 - INFO - / Starting \
|
117
|
-
2014-02-13 15:06:18,500 - sauce_connect:576 - INFO - Please wait for "You may start your tests" to start your tests.
|
118
|
-
2014-02-13 15:06:18,505 - sauce_connect:588 - DEBUG - System is -6.0 hours off UTC
|
119
|
-
2014-02-13 15:06:18,506 - sauce_connect:590 - DEBUG - options: {'user': 'ryanstout', 'ports': ['57996'], 'no_ssl_bump_domains': '', 'domains': ['sauce-connect.proxy'], 'debug_ssh': False, 'tunnel_ports': ['80'], 'allow_unclean_exit': False, 'rest_url': 'https://saucelabs.com/rest/v1', 'logfile': 'sauce_connect.log', 'squid_opts': '', 'logfilesize': '31457280', 'boost_mode': True, 'tunnel_identifier': '', 'fast_fail_regexps': '', 'vm_version': '', 'quiet': False, 'latency_log': 150, 'use_ssh_config': False, 'ssh': False, 'se_port': '4445', 'readyfile': 'sauce_connect.ready', 'shared_tunnel': False, 'ssh_port': 443, 'direct_domains': '', 'host': '127.0.0.1'}
|
120
|
-
2014-02-13 15:06:18,506 - sauce_connect:591 - DEBUG - metadata: {'PythonVersion': '2.5.1', 'OwnerHost': '127.0.0.1', 'Release': '3.0-r30', 'OwnerPorts': ['57996'], 'Ports': ['80'], 'Platform': 'Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64', 'Build': '46', 'ScriptRelease': 46, 'ScriptName': 'sauce_connect'}
|
121
|
-
2014-02-13 15:06:18,507 - sauce_connect:593 - INFO - Forwarding: ['sauce-connect.proxy']:['80'] -> 127.0.0.1:['57996']
|
122
|
-
2014-02-13 15:06:18,516 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57996 in 4ms
|
123
|
-
2014-02-13 15:06:19,280 - sauce_connect:248 - INFO - {"no_ssl_bump_domains":null,"squid_config":null,"use_caching_proxy":true,"metadata":{"PythonVersion":"2.5.1","OwnerHost":"127.0.0.1","Release":"3.0-r30","OwnerPorts":["57996"],"Ports":["80"],"Platform":"Java-1.7.0_10-Java_HotSpot-TM-_64-Bit_Server_VM,_23.6-b04,_Oracle_Corporation-on-Mac_OS_X-10.9.1-x86_64","Build":"46","ScriptRelease":46,"ScriptName":"sauce_connect"},"use_kgp":true,"tunnel_identifier":"","shared_tunnel":false,"fast_fail_regexps":null,"ssh_port":443,"direct_domains":null,"vm_version":"","domain_names":["sauce-connect.proxy"]}
|
124
|
-
2014-02-13 15:06:22,979 - sauce_connect:260 - INFO - Tunnel remote VM is provisioned (cf76a8c18d7c429893aa3c9d975dabb6)
|
125
|
-
2014-02-13 15:06:23,588 - sauce_connect:278 - INFO - Tunnel remote VM is booting ..
|
126
|
-
2014-02-13 15:06:51,533 - sauce_connect:282 - INFO - Tunnel remote VM is running at maki77065.miso.saucelabs.com
|
127
|
-
2014-02-13 15:06:51,546 - sauce_connect:385 - INFO - Succesfully connected to local server 127.0.0.1:57996 in 0ms
|
128
|
-
2014-02-13 15:06:51,549 - sauce_connect:665 - INFO - Starting connection to tunnel host...
|
129
|
-
2014-02-13 15:06:51,551 - sauce_connect:665 - INFO - Connecting to tunnel host maki77065.miso.saucelabs.com as ryanstout
|
130
|
-
2014-02-13 15:06:51,632 - sauce_connect:665 - INFO - Forwarding Selenium with ephemeral port 58006
|
131
|
-
2014-02-13 15:06:51,637 - sauce_connect:665 - INFO - Selenium HTTP proxy listening on port 4445
|
132
|
-
2014-02-13 15:06:52,045 - sauce_connect:0 - INFO - Successful handshake with Sauce Connect server
|
133
|
-
2014-02-13 15:06:52,092 - sauce_connect:0 - INFO - Tunnel host version: 0.1.0, remote endpoint ID: e002ed2a061e49738dcda5dbe882e5a1
|
134
|
-
2014-02-13 15:06:52,096 - sauce_connect:665 - INFO - Connected! You may start your tests.
|
135
|
-
2014-02-13 15:06:52,444 - sauce_connect:0 - INFO - received SIGINT
|