Skip to content

Commit 5164785

Browse files
Merge pull request AutomatedTester#3 from santiycr/master
Several improvements to the library
2 parents 5f79a8d + 441f80d commit 5164785

File tree

1 file changed

+34
-14
lines changed

1 file changed

+34
-14
lines changed

browsermobproxy/server.py

+34-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
import os
12
from subprocess import Popen, PIPE, STDOUT
23
import socket
34
import time
4-
5+
import platform
56
from client import Client
67

78

@@ -13,48 +14,68 @@ def __init__(self, path, options={}):
1314
1415
:Args:
1516
- path : Path to the browsermob proxy batch file
16-
- options : Dictionary that can hold the port. More items will be added in the future.
17+
- options : Dictionary that can hold the port.
18+
More items will be added in the future.
1719
This defaults to an empty dictionary
1820
"""
21+
if platform.system() == 'Windows':
22+
if not path.endswith('.bat'):
23+
path += '.bat'
24+
25+
if not os.path.isfile(path):
26+
raise Exception("Browsermob-Proxy binary couldn't be found in path"
27+
" provided: %s" % path)
28+
1929
self.path = path
20-
self.port = options['port'] if options.has_key('port') else 8080
21-
self.command = ['sh', path, '--port=%s' % self.port]
30+
self.port = options.get('port', 8080)
31+
self.process = None
32+
33+
if platform.system() == 'Darwin':
34+
self.command = ['sh']
35+
else:
36+
self.command = []
37+
self.command += [path, '--port=%s' % self.port]
2238

2339
def start(self):
2440
"""
25-
This will start the browsermob proxy and then wait until it can interact with it
41+
This will start the browsermob proxy and then wait until it can
42+
interact with it
2643
"""
2744
self.process = Popen(self.command, stdout=PIPE, stderr=STDOUT)
2845
count = 0
2946
while not self._is_listening():
30-
time.sleep(0.1)
47+
time.sleep(0.5)
3148
count += 1
32-
if count == 30:
49+
if count == 60:
50+
self.stop()
3351
raise Exception("Can't connect to Browsermob-Proxy")
3452

3553
def stop(self):
3654
"""
3755
This will stop the process running the proxy
3856
"""
57+
if self.process.poll() != None:
58+
return
59+
3960
try:
40-
if self.process:
41-
self.process.kill()
42-
self.process.wait()
61+
self.process.kill()
62+
self.process.wait()
4363
except AttributeError:
4464
# kill may not be available under windows environment
4565
pass
4666

4767
@property
4868
def url(self):
4969
"""
50-
Gets the url that the proxy is running on. This is not the URL clients should connect to.
70+
Gets the url that the proxy is running on. This is not the URL clients
71+
should connect to.
5172
"""
5273
return "http://localhost:%d" % self.port
5374

54-
@property
5575
def create_proxy(self):
5676
"""
57-
Gets a client class that allow to set all the proxy details that you may need to.
77+
Gets a client class that allow to set all the proxy details that you
78+
may need to.
5879
"""
5980
client = Client(self.url)
6081
return client
@@ -68,4 +89,3 @@ def _is_listening(self):
6889
return True
6990
except socket.error:
7091
return False
71-

0 commit comments

Comments
 (0)