package_version_test.py 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. import pytest
  2. from openshift_checks.package_version import PackageVersion
  3. from openshift_checks import OpenShiftCheckException
  4. def task_vars_for(openshift_release, deployment_type):
  5. service_type_dict = {'origin': 'origin',
  6. 'openshift-enterprise': 'atomic-openshift'}
  7. service_type = service_type_dict[deployment_type]
  8. return dict(
  9. ansible_pkg_mgr='yum',
  10. openshift_service_type=service_type,
  11. openshift_release=openshift_release,
  12. openshift_image_tag='v' + openshift_release,
  13. openshift_deployment_type=deployment_type,
  14. )
  15. def test_openshift_version_not_supported():
  16. check = PackageVersion(None, task_vars_for("1.2.3", 'origin'))
  17. check.get_major_minor_version = lambda: (3, 4, 1) # won't be in the dict
  18. with pytest.raises(OpenShiftCheckException) as excinfo:
  19. check.get_required_ovs_version()
  20. assert "no recommended version of Open vSwitch" in str(excinfo.value)
  21. def test_invalid_openshift_release_format():
  22. task_vars = dict(
  23. ansible_pkg_mgr='yum',
  24. openshift_service_type='origin',
  25. openshift_image_tag='v0',
  26. openshift_deployment_type='origin',
  27. )
  28. check = PackageVersion(lambda *_: {}, task_vars)
  29. with pytest.raises(OpenShiftCheckException) as excinfo:
  30. check.run()
  31. assert "invalid version" in str(excinfo.value)
  32. @pytest.mark.parametrize('openshift_release', [
  33. "111.7.0",
  34. "3.7",
  35. "3.6",
  36. "3.5.1.2.3",
  37. "3.5",
  38. "3.4",
  39. "3.3",
  40. "2.1.0",
  41. ])
  42. def test_package_version(openshift_release):
  43. return_value = {"foo": object()}
  44. def execute_module(module_name=None, module_args=None, tmp=None, task_vars=None, *_):
  45. assert module_name == 'aos_version'
  46. assert "package_list" in module_args
  47. for pkg in module_args["package_list"]:
  48. if "-master" in pkg["name"] or "-node" in pkg["name"]:
  49. assert pkg["version"] == task_vars["openshift_release"]
  50. return return_value
  51. check = PackageVersion(execute_module, task_vars_for(openshift_release, 'origin'))
  52. result = check.run()
  53. assert result == return_value
  54. @pytest.mark.parametrize('group_names,openshift_is_atomic,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_package_version_skip_when_not_master_nor_node(group_names, openshift_is_atomic, is_active):
  67. task_vars = dict(
  68. group_names=group_names,
  69. openshift_is_atomic=openshift_is_atomic,
  70. )
  71. assert PackageVersion(None, task_vars).is_active() == is_active