Skip to content

Commit a6ed21e

Browse files
committed
ovn-tester: Allow tests to manually end iterations.
Until this point, when running a qps_test, the ovn_context code would automatically take care of marking an iteration as started or ended. This is a problem, though, for tests that wait until all iterations have completed to determine if ports came up within the configured time limit. The issue is that the ovn_context will mark the iteration as completed, potentially logging the iteration as successful. However, after this has been logged, the test could mark the iteration as failed if it turns out the port did not come up within the configured time limit. The solution here is to allow for tests to override the default behavior by letting them mark the iteration as completed. To do this, the qps_test() function now accepts a kwargs parameter, and setting end_iteration=False will allow for the individual test to mark iterations as complete instead of having it done automatically by the ovn_context code. Signed-off-by: Mark Michelson <[email protected]>
1 parent 6e700dd commit a6ed21e

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

ovn-tester/ovn_context.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -66,23 +66,24 @@ def create_task(self, coro, iteration=None):
6666
self.iterations[task.get_name()] = iteration
6767
return task
6868

69-
async def qps_test(self, qps, coro, *args):
69+
async def qps_test(self, qps, coro, *args, **kwargs):
7070
tasks = []
7171
for i in range(self.max_iterations):
7272
iteration = ContextIteration(i, self)
7373
tasks.append(self.create_task(
74-
self.qps_task(iteration, coro, *args), iteration)
74+
self.qps_task(iteration, coro, *args, **kwargs), iteration)
7575
)
7676
# Use i+1 so that we don't sleep on task 0 and so that
7777
# we sleep after 20 iterations instead of 21.
7878
if (i + 1) % qps == 0:
7979
await asyncio.sleep(1)
8080
await asyncio.gather(*tasks)
8181

82-
async def qps_task(self, iteration, coro, *args):
82+
async def qps_task(self, iteration, coro, *args, **kwargs):
8383
await self.iteration_started(iteration)
8484
await coro(*args)
85-
self.iteration_completed(iteration)
85+
if kwargs.get('end_iteration', True):
86+
self.iteration_completed(iteration)
8687

8788

8889
def get_current_iteration():

ovn-tester/ovn_tester.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,11 @@ async def run(self, ovn, bringup_cfg):
242242
await ovn.create_cluster_join_switch("ls-join")
243243
await ovn.create_cluster_load_balancer("lb-cluster")
244244
await ctx.qps_test(bringup_cfg.queries_per_second,
245-
self.provisioner, ovn, bringup_cfg)
245+
self.provisioner, ovn, bringup_cfg,
246+
end_iteration=False)
246247
await ovn.wait_for_ports_up(self.port_iters)
248+
for _, iteration in self.port_iters:
249+
ctx.iteration_completed(iteration)
247250

248251

249252
async def main(global_cfg, cluster_cfg, brex_cfg, bringup_cfg):

ovn-tester/tests/cluster_density.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ async def run(self, ovn, global_cfg):
5858
(self.config.n_runs - self.config.n_startup) //
5959
self.batch_ratio, test=self) as ctx:
6060
await ctx.qps_test(self.config.queries_per_second,
61-
self.tester, ovn, all_ns)
61+
self.tester, ovn, all_ns, end_iteration=False)
6262
await ovn.wait_for_ports_up(self.test_port_iters)
6363

6464
if not global_cfg.cleanup:

ovn-tester/tests/density_heavy.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,11 @@ async def run(self, ovn, global_cfg):
8080
(self.config.n_pods - self.config.n_startup) //
8181
self.config.batch, test=self) as ctx:
8282
await ctx.qps_test(self.config.queries_per_second,
83-
self.provisioner, ns, ovn)
83+
self.provisioner, ns, ovn,
84+
end_iteration=False)
8485
await ovn.wait_for_ports_up(self.test_port_iters)
86+
for _, iteration in self.test_port_iters:
87+
ctx.iteration_completed(iteration)
8588

8689
if not global_cfg.cleanup:
8790
return

ovn-tester/tests/density_light.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,11 @@ async def run(self, ovn, global_cfg):
3434
n_iterations = self.config.n_pods - self.config.n_startup
3535
with Context('density_light', n_iterations, test=self) as ctx:
3636
await ctx.qps_test(self.config.queries_per_second,
37-
self.provisioner, ns, ovn)
37+
self.provisioner, ns, ovn,
38+
end_iteration=False)
3839
await ovn.wait_for_ports_up(self.test_port_iters)
40+
for _, iteration in self.test_port_iters:
41+
ctx.iteration_completed(iteration)
3942

4043
if not global_cfg.cleanup:
4144
return

0 commit comments

Comments
 (0)