checks/garage: use 2-space indents

This commit is contained in:
Max Headroom 2023-09-06 00:49:31 +02:00
parent 123c5adef6
commit d87865d6c0

View file

@ -87,42 +87,42 @@ testers.runNixOSTest {
with subtest("should bootstrap new cluster"): with subtest("should bootstrap new cluster"):
for node in nodes: for node in nodes:
node.wait_for_unit("garage.service") node.wait_for_unit("garage.service")
for node in nodes: for node in nodes:
node.wait_until_fails("garage status | grep 'NO ROLE ASSIGNED'") node.wait_until_fails("garage status | grep 'NO ROLE ASSIGNED'")
with subtest("should apply new layout with ascension"): with subtest("should apply new layout with ascension"):
for node in nodes: for node in nodes:
node.succeed("/run/current-system/specialisation/modifiedLayout/bin/switch-to-configuration test") node.succeed("/run/current-system/specialisation/modifiedLayout/bin/switch-to-configuration test")
for node in nodes: for node in nodes:
node.wait_until_succeeds("garage layout show | grep -w 2000") node.wait_until_succeeds("garage layout show | grep -w 2000")
assert "1" in node.succeed("garage layout show | grep -w 2000 | wc -l") assert "1" in node.succeed("garage layout show | grep -w 2000 | wc -l")
assert "2" in node.succeed("garage layout show | grep -w 1000 | wc -l") assert "2" in node.succeed("garage layout show | grep -w 1000 | wc -l")
with subtest("should apply new layout from scratch"): with subtest("should apply new layout from scratch"):
for node in nodes: for node in nodes:
node.systemctl("stop garage.service") node.systemctl("stop garage.service")
node.succeed("rm -rf /var/lib/garage-metadata") node.succeed("rm -rf /var/lib/garage-metadata")
for node in nodes: for node in nodes:
node.systemctl("start garage.service") node.systemctl("start garage.service")
for node in nodes: for node in nodes:
node.wait_for_unit("garage.service") node.wait_for_unit("garage.service")
for node in nodes: for node in nodes:
node.wait_until_fails("garage status | grep 'NO ROLE ASSIGNED'") node.wait_until_fails("garage status | grep 'NO ROLE ASSIGNED'")
for node in nodes: for node in nodes:
node.wait_until_succeeds("garage layout show | grep -w 2000") node.wait_until_succeeds("garage layout show | grep -w 2000")
assert "1" in node.succeed("garage layout show | grep -w 2000 | wc -l") assert "1" in node.succeed("garage layout show | grep -w 2000 | wc -l")
assert "2" in node.succeed("garage layout show | grep -w 1000 | wc -l") assert "2" in node.succeed("garage layout show | grep -w 1000 | wc -l")
with subtest("should create specified buckets and keys"): with subtest("should create specified buckets and keys"):
for node in nodes: for node in nodes:
node.wait_until_succeeds('test "$(systemctl is-active garage-apply)" != activating') node.wait_until_succeeds('test "$(systemctl is-active garage-apply)" != activating')
garage1.succeed("garage key list | grep testKey") garage1.succeed("garage key list | grep testKey")
garage1.succeed("garage bucket list | grep bucket1") garage1.succeed("garage bucket list | grep bucket1")
garage1.succeed("garage bucket list | grep bucket2") garage1.succeed("garage bucket list | grep bucket2")