etcd_traffic_test.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. import pytest
  2. from openshift_checks.etcd_traffic import EtcdTraffic
  3. @pytest.mark.parametrize('group_names,version,is_active', [
  4. (['oo_masters_to_config'], "3.5", False),
  5. (['oo_masters_to_config'], "3.6", False),
  6. (['oo_nodes_to_config'], "3.4", False),
  7. (['oo_etcd_to_config'], "3.4", True),
  8. (['oo_etcd_to_config'], "1.5", True),
  9. (['oo_etcd_to_config'], "3.1", False),
  10. (['oo_masters_to_config', 'oo_nodes_to_config'], "3.5", False),
  11. (['oo_masters_to_config', 'oo_etcd_to_config'], "3.5", True),
  12. ([], "3.4", False),
  13. ])
  14. def test_is_active(group_names, version, is_active):
  15. task_vars = dict(
  16. group_names=group_names,
  17. openshift_image_tag=version,
  18. )
  19. assert EtcdTraffic(task_vars=task_vars).is_active() == is_active
  20. @pytest.mark.parametrize('group_names,matched,failed,extra_words', [
  21. (["oo_masters_to_config"], True, True, ["Higher than normal", "traffic"]),
  22. (["oo_masters_to_config", "oo_etcd_to_config"], False, False, []),
  23. (["oo_etcd_to_config"], False, False, []),
  24. ])
  25. def test_log_matches_high_traffic_msg(group_names, matched, failed, extra_words):
  26. def execute_module(module_name, *_):
  27. return {
  28. "matched": matched,
  29. "failed": failed,
  30. }
  31. task_vars = dict(
  32. group_names=group_names,
  33. openshift_is_containerized=False,
  34. openshift_service_type="origin"
  35. )
  36. result = EtcdTraffic(execute_module, task_vars).run()
  37. for word in extra_words:
  38. assert word in result.get("msg", "")
  39. assert result.get("failed", False) == failed
  40. @pytest.mark.parametrize('openshift_is_containerized,expected_unit_value', [
  41. (False, "etcd"),
  42. (True, "etcd_container"),
  43. ])
  44. def test_systemd_unit_matches_deployment_type(openshift_is_containerized, expected_unit_value):
  45. task_vars = dict(
  46. openshift_is_containerized=openshift_is_containerized
  47. )
  48. def execute_module(module_name, args, *_):
  49. assert module_name == "search_journalctl"
  50. matchers = args["log_matchers"]
  51. for matcher in matchers:
  52. assert matcher["unit"] == expected_unit_value
  53. return {"failed": False}
  54. EtcdTraffic(execute_module, task_vars).run()