zz_failure_summary_test.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. from zz_failure_summary import deduplicate_failures
  2. import pytest
  3. @pytest.mark.parametrize('failures,deduplicated', [
  4. (
  5. [
  6. {
  7. 'host': 'master1',
  8. 'msg': 'One or more checks failed',
  9. },
  10. ],
  11. [
  12. {
  13. 'host': ('master1',),
  14. 'msg': 'One or more checks failed',
  15. },
  16. ],
  17. ),
  18. (
  19. [
  20. {
  21. 'host': 'master1',
  22. 'msg': 'One or more checks failed',
  23. },
  24. {
  25. 'host': 'node1',
  26. 'msg': 'One or more checks failed',
  27. },
  28. ],
  29. [
  30. {
  31. 'host': ('master1', 'node1'),
  32. 'msg': 'One or more checks failed',
  33. },
  34. ],
  35. ),
  36. (
  37. [
  38. {
  39. 'host': 'node1',
  40. 'msg': 'One or more checks failed',
  41. 'checks': (('test_check', 'error message'),),
  42. },
  43. {
  44. 'host': 'master2',
  45. 'msg': 'Some error happened',
  46. },
  47. {
  48. 'host': 'master1',
  49. 'msg': 'One or more checks failed',
  50. 'checks': (('test_check', 'error message'),),
  51. },
  52. ],
  53. [
  54. {
  55. 'host': ('master1', 'node1'),
  56. 'msg': 'One or more checks failed',
  57. 'checks': (('test_check', 'error message'),),
  58. },
  59. {
  60. 'host': ('master2',),
  61. 'msg': 'Some error happened',
  62. },
  63. ],
  64. ),
  65. ])
  66. def test_deduplicate_failures(failures, deduplicated):
  67. assert deduplicate_failures(failures) == deduplicated