Skip to content

Commit

Permalink
fix: Port k8s fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Batalex committed Oct 22, 2024
1 parent 1120758 commit 9fef255
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions tests/integration/test_balancer.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import pytest
from pytest_operator.plugin import OpsTest
from tenacity import Retrying, stop_after_attempt, wait_fixed

from literals import (
PEER_CLUSTER_ORCHESTRATOR_RELATION,
Expand Down Expand Up @@ -141,6 +142,7 @@ async def test_minimum_brokers_balancer_starts(self, ops_test: OpsTest):
status="active",
timeout=1800,
idle_period=60,
raise_on_error=True,
)

assert balancer_is_running(
Expand All @@ -157,10 +159,9 @@ async def test_balancer_monitor_state(self, ops_test: OpsTest):
assert balancer_is_ready(ops_test=ops_test, app_name=self.balancer_app)

@pytest.mark.abort_on_fail
@pytest.mark.skip
# @pytest.mark.skipif(
# deployment_strat == "single", reason="Testing full rebalance on large deployment"
# )
@pytest.mark.skipif(
deployment_strat == "single", reason="Testing full rebalance on large deployment"
)
async def test_add_unit_full_rebalance(self, ops_test: OpsTest):
await ops_test.model.applications[APP_NAME].add_units(
count=1 # up to 4, new unit won't have any partitions
Expand Down Expand Up @@ -279,14 +280,17 @@ async def test_balancer_prepare_unit_removal(self, ops_test: OpsTest):

assert balancer_is_ready(ops_test=ops_test, app_name=self.balancer_app)

rebalance_action = await leader_unit.run_action(
"rebalance",
mode="remove",
brokerid=new_broker_id,
dryrun=False,
)
response = await rebalance_action.wait()
assert not response.results.get("error", "")
for attempt in Retrying(stop=stop_after_attempt(5), wait=wait_fixed(60), reraise=True):
with attempt:
rebalance_action = await leader_unit.run_action(
"rebalance",
mode="remove",
brokerid=new_broker_id,
dryrun=False,
)

response = await rebalance_action.wait()
assert not response.results.get("error", "")

post_rebalance_replica_counts = get_replica_count_by_broker_id(ops_test, self.balancer_app)

Expand Down

0 comments on commit 9fef255

Please sign in to comment.