@@ -34,7 +34,7 @@ def __init__(self, params: DflyParams, args):
34
34
self .args = args
35
35
self .params = params
36
36
self .proc = None
37
- self ._client : Optional [RedisClient ] = None
37
+ self ._client : Optional [RedisClient ] = None
38
38
39
39
def client (self ) -> RedisClient :
40
40
return RedisClient (port = self .port )
@@ -70,8 +70,7 @@ def _start(self):
70
70
return
71
71
base_args = [f"--{ v } " for v in self .params .args ]
72
72
all_args = self .format_args (self .args ) + base_args
73
- print (
74
- f"Starting instance on { self .port } with arguments { all_args } from { self .params .path } " )
73
+ print (f"Starting instance on { self .port } with arguments { all_args } from { self .params .path } " )
75
74
76
75
run_cmd = [self .params .path , * all_args ]
77
76
if self .params .gdb :
@@ -82,8 +81,7 @@ def _check_status(self):
82
81
if not self .params .existing_port :
83
82
return_code = self .proc .poll ()
84
83
if return_code is not None :
85
- raise Exception (
86
- f"Failed to start instance, return code { return_code } " )
84
+ raise Exception (f"Failed to start instance, return code { return_code } " )
87
85
88
86
def __getitem__ (self , k ):
89
87
return self .args .get (k )
@@ -93,11 +91,13 @@ def port(self) -> int:
93
91
if self .params .existing_port :
94
92
return self .params .existing_port
95
93
return int (self .args .get ("port" , "6379" ))
94
+
96
95
@property
97
96
def admin_port (self ) -> int :
98
97
if self .params .existing_admin_port :
99
98
return self .params .existing_admin_port
100
99
return int (self .args .get ("admin_port" , "16379" ))
100
+
101
101
@property
102
102
def mc_port (self ) -> int :
103
103
if self .params .existing_mc_port :
@@ -107,7 +107,7 @@ def mc_port(self) -> int:
107
107
@staticmethod
108
108
def format_args (args ):
109
109
out = []
110
- for ( k , v ) in args .items ():
110
+ for k , v in args .items ():
111
111
out .append (f"--{ k } " )
112
112
if v is not None :
113
113
out .append (str (v ))
@@ -118,7 +118,10 @@ async def metrics(self):
118
118
resp = await session .get (f"http://localhost:{ self .port } /metrics" )
119
119
data = await resp .text ()
120
120
await session .close ()
121
- return {metric_family .name : metric_family for metric_family in text_string_to_metric_families (data )}
121
+ return {
122
+ metric_family .name : metric_family
123
+ for metric_family in text_string_to_metric_families (data )
124
+ }
122
125
123
126
124
127
class DflyInstanceFactory :
@@ -142,7 +145,7 @@ def create(self, **kwargs) -> DflyInstance:
142
145
return instance
143
146
144
147
def start_all (self , instances ):
145
- """ Start multiple instances in parallel """
148
+ """Start multiple instances in parallel"""
146
149
for instance in instances :
147
150
instance ._start ()
148
151
@@ -162,17 +165,17 @@ def __str__(self):
162
165
163
166
164
167
def dfly_args (* args ):
165
- """ Used to define a singular set of arguments for dragonfly test """
168
+ """Used to define a singular set of arguments for dragonfly test"""
166
169
return pytest .mark .parametrize ("df_factory" , args , indirect = True )
167
170
168
171
169
172
def dfly_multi_test_args (* args ):
170
- """ Used to define multiple sets of arguments to test multiple dragonfly configurations """
173
+ """Used to define multiple sets of arguments to test multiple dragonfly configurations"""
171
174
return pytest .mark .parametrize ("df_factory" , args , indirect = True )
172
175
173
176
174
- class PortPicker () :
175
- """ A simple port manager to allocate available ports for tests """
177
+ class PortPicker :
178
+ """A simple port manager to allocate available ports for tests"""
176
179
177
180
def __init__ (self ):
178
181
self .next_port = 5555
@@ -185,5 +188,6 @@ def get_available_port(self):
185
188
186
189
def is_port_available (self , port ):
187
190
import socket
191
+
188
192
with socket .socket (socket .AF_INET , socket .SOCK_STREAM ) as s :
189
- return s .connect_ex ((' localhost' , port )) != 0
193
+ return s .connect_ex ((" localhost" , port )) != 0
0 commit comments