check-patroni/tests/test_node_is_primary.py

28 lines
854 B
Python
Raw Normal View History

from click.testing import CliRunner
2021-08-11 19:09:14 +02:00
from check_patroni.cli import main
2021-08-11 19:09:14 +02:00
def test_node_is_primary_ok(fake_restapi) -> None:
2021-08-11 19:09:14 +02:00
runner = CliRunner()
fake_restapi("node_is_primary_ok")
2021-08-11 19:09:14 +02:00
result = runner.invoke(main, ["-e", "https://10.20.199.3:8008", "node_is_primary"])
assert result.exit_code == 0
assert (
result.stdout
== "NODEISPRIMARY OK - This node is the primary with the leader lock. | is_primary=1;;@0\n"
)
2021-08-11 19:09:14 +02:00
def test_node_is_primary_ko(fake_restapi) -> None:
2021-08-11 19:09:14 +02:00
runner = CliRunner()
fake_restapi("node_is_primary_ko", status=503)
2021-08-11 19:09:14 +02:00
result = runner.invoke(main, ["-e", "https://10.20.199.3:8008", "node_is_primary"])
assert result.exit_code == 2
assert (
result.stdout
== "NODEISPRIMARY CRITICAL - This node is not the primary with the leader lock. | is_primary=0;;@0\n"
)