1
+ import os
1
2
from subprocess import Popen , PIPE , STDOUT
2
3
import socket
3
4
import time
4
-
5
+ import platform
5
6
from client import Client
6
7
7
8
@@ -13,48 +14,68 @@ def __init__(self, path, options={}):
13
14
14
15
:Args:
15
16
- 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.
17
19
This defaults to an empty dictionary
18
20
"""
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
+
19
29
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 ]
22
38
23
39
def start (self ):
24
40
"""
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
26
43
"""
27
44
self .process = Popen (self .command , stdout = PIPE , stderr = STDOUT )
28
45
count = 0
29
46
while not self ._is_listening ():
30
- time .sleep (0.1 )
47
+ time .sleep (0.5 )
31
48
count += 1
32
- if count == 30 :
49
+ if count == 60 :
50
+ self .stop ()
33
51
raise Exception ("Can't connect to Browsermob-Proxy" )
34
52
35
53
def stop (self ):
36
54
"""
37
55
This will stop the process running the proxy
38
56
"""
57
+ if self .process .poll () != None :
58
+ return
59
+
39
60
try :
40
- if self .process :
41
- self .process .kill ()
42
- self .process .wait ()
61
+ self .process .kill ()
62
+ self .process .wait ()
43
63
except AttributeError :
44
64
# kill may not be available under windows environment
45
65
pass
46
66
47
67
@property
48
68
def url (self ):
49
69
"""
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.
51
72
"""
52
73
return "http://localhost:%d" % self .port
53
74
54
- @property
55
75
def create_proxy (self ):
56
76
"""
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.
58
79
"""
59
80
client = Client (self .url )
60
81
return client
@@ -68,4 +89,3 @@ def _is_listening(self):
68
89
return True
69
90
except socket .error :
70
91
return False
71
-
0 commit comments