ovs_version_test.py 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. import pytest
  2. from openshift_checks.ovs_version import OvsVersion, OpenShiftCheckException
  3. def test_openshift_version_not_supported():
  4. def execute_module(*_):
  5. return {}
  6. openshift_release = '111.7.0'
  7. task_vars = dict(
  8. openshift=dict(common=dict()),
  9. openshift_release=openshift_release,
  10. openshift_image_tag='v' + openshift_release,
  11. openshift_deployment_type='origin',
  12. openshift_service_type='origin'
  13. )
  14. with pytest.raises(OpenShiftCheckException) as excinfo:
  15. OvsVersion(execute_module, task_vars).run()
  16. assert "no recommended version of Open vSwitch" in str(excinfo.value)
  17. def test_invalid_openshift_release_format():
  18. def execute_module(*_):
  19. return {}
  20. task_vars = dict(
  21. openshift=dict(common=dict()),
  22. openshift_image_tag='v0',
  23. openshift_deployment_type='origin',
  24. openshift_service_type='origin'
  25. )
  26. with pytest.raises(OpenShiftCheckException) as excinfo:
  27. OvsVersion(execute_module, task_vars).run()
  28. assert "invalid version" in str(excinfo.value)
  29. @pytest.mark.parametrize('openshift_release,expected_ovs_version', [
  30. ("3.7", ["2.6", "2.7", "2.8"]),
  31. ("3.5", ["2.6", "2.7"]),
  32. ("3.6", ["2.6", "2.7", "2.8"]),
  33. ("3.4", "2.4"),
  34. ("3.3", "2.4"),
  35. ("1.0", "2.4"),
  36. ])
  37. def test_ovs_package_version(openshift_release, expected_ovs_version):
  38. task_vars = dict(
  39. openshift=dict(common=dict()),
  40. openshift_release=openshift_release,
  41. openshift_image_tag='v' + openshift_release,
  42. openshift_service_type='origin'
  43. )
  44. return_value = {} # note: check.execute_module modifies return hash contents
  45. def execute_module(module_name=None, module_args=None, *_):
  46. assert module_name == 'rpm_version'
  47. assert "package_list" in module_args
  48. for pkg in module_args["package_list"]:
  49. if pkg["name"] == "openvswitch":
  50. assert pkg["version"] == expected_ovs_version
  51. return return_value
  52. result = OvsVersion(execute_module, task_vars).run()
  53. assert result is return_value
  54. @pytest.mark.parametrize('group_names,openshift_is_containerized,is_active', [
  55. (['oo_masters_to_config'], False, True),
  56. # ensure check is skipped on containerized installs
  57. (['oo_masters_to_config'], True, False),
  58. (['oo_nodes_to_config'], False, True),
  59. (['oo_masters_to_config', 'oo_nodes_to_config'], False, True),
  60. (['oo_masters_to_config', 'oo_etcd_to_config'], False, True),
  61. ([], False, False),
  62. (['oo_etcd_to_config'], False, False),
  63. (['lb'], False, False),
  64. (['nfs'], False, False),
  65. ])
  66. def test_ovs_version_skip_when_not_master_nor_node(group_names, openshift_is_containerized, is_active):
  67. task_vars = dict(
  68. group_names=group_names,
  69. openshift_is_containerized=openshift_is_containerized,
  70. )
  71. assert OvsVersion(None, task_vars).is_active() == is_active