123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- import pytest
- from openshift_checks.disk_availability import DiskAvailability, OpenShiftCheckException
- @pytest.mark.parametrize('group_names,is_active', [
- (['oo_masters_to_config'], True),
- (['oo_nodes_to_config'], True),
- (['oo_etcd_to_config'], True),
- (['oo_masters_to_config', 'oo_nodes_to_config'], True),
- (['oo_masters_to_config', 'oo_etcd_to_config'], True),
- ([], False),
- (['lb'], False),
- (['nfs'], False),
- ])
- def test_is_active(group_names, is_active):
- task_vars = dict(
- group_names=group_names,
- )
- assert DiskAvailability(None, task_vars).is_active() == is_active
- @pytest.mark.parametrize('desc, ansible_mounts, expect_chunks', [
- (
- 'empty ansible_mounts',
- [],
- ['determine mount point', 'none'],
- ),
- (
- 'missing relevant mount paths',
- [{'mount': '/mnt'}],
- ['determine mount point', '/mnt'],
- ),
- (
- 'missing size_available',
- [{'mount': '/var'}, {'mount': '/usr'}, {'mount': '/tmp'}],
- ['missing', 'size_available'],
- ),
- ])
- def test_cannot_determine_available_disk(desc, ansible_mounts, expect_chunks):
- task_vars = dict(
- group_names=['oo_masters_to_config'],
- ansible_mounts=ansible_mounts,
- )
- with pytest.raises(OpenShiftCheckException) as excinfo:
- DiskAvailability(fake_execute_module, task_vars).run()
- for chunk in expect_chunks:
- assert chunk in str(excinfo.value)
- @pytest.mark.parametrize('group_names,configured_min,ansible_mounts', [
- (
- ['oo_masters_to_config'],
- 0,
- [{
- 'mount': '/',
- 'size_available': 40 * 10**9 + 1,
- }],
- ),
- (
- ['oo_nodes_to_config'],
- 0,
- [{
- 'mount': '/',
- 'size_available': 15 * 10**9 + 1,
- }],
- ),
- (
- ['oo_etcd_to_config'],
- 0,
- [{
- 'mount': '/',
- 'size_available': 20 * 10**9 + 1,
- }],
- ),
- (
- ['oo_etcd_to_config'],
- 1, # configure lower threshold
- [{
- 'mount': '/',
- 'size_available': 1 * 10**9 + 1, # way smaller than recommended
- }],
- ),
- (
- ['oo_etcd_to_config'],
- 0,
- [{
- # not enough space on / ...
- 'mount': '/',
- 'size_available': 2 * 10**9,
- }, {
- # ... but enough on /var
- 'mount': '/var',
- 'size_available': 20 * 10**9 + 1,
- }],
- ),
- ])
- def test_succeeds_with_recommended_disk_space(group_names, configured_min, ansible_mounts):
- task_vars = dict(
- group_names=group_names,
- openshift_check_min_host_disk_gb=configured_min,
- ansible_mounts=ansible_mounts,
- )
- result = DiskAvailability(fake_execute_module, task_vars).run()
- assert not result.get('failed', False)
- @pytest.mark.parametrize('name,group_names,configured_min,ansible_mounts,expect_chunks', [
- (
- 'test with no space available',
- ['oo_masters_to_config'],
- 0,
- [{
- 'mount': '/',
- 'size_available': 1,
- }],
- ['0.0 GB'],
- ),
- (
- 'test with a higher configured required value',
- ['oo_masters_to_config'],
- 100, # set a higher threshold
- [{
- 'mount': '/',
- 'size_available': 50 * 10**9, # would normally be enough...
- }],
- ['100.0 GB'],
- ),
- (
- 'test with 1GB available, but "0" GB space requirement',
- ['oo_nodes_to_config'],
- 0,
- [{
- 'mount': '/',
- 'size_available': 1 * 10**9,
- }],
- ['1.0 GB'],
- ),
- (
- 'test with no space available, but "0" GB space requirement',
- ['oo_etcd_to_config'],
- 0,
- [{
- 'mount': '/',
- 'size_available': 1,
- }],
- ['0.0 GB'],
- ),
- (
- 'test with enough space for a node, but not for a master',
- ['oo_nodes_to_config', 'oo_masters_to_config'],
- 0,
- [{
- 'mount': '/',
- 'size_available': 15 * 10**9 + 1,
- }],
- ['15.0 GB'],
- ),
- (
- 'test failure with enough space on "/", but not enough on "/var"',
- ['oo_etcd_to_config'],
- 0,
- [{
- # enough space on / ...
- 'mount': '/',
- 'size_available': 20 * 10**9 + 1,
- }, {
- # .. but not enough on /var
- 'mount': '/var',
- 'size_available': 0,
- }],
- ['0.0 GB'],
- ),
- ], ids=lambda argval: argval[0])
- def test_fails_with_insufficient_disk_space(name, group_names, configured_min, ansible_mounts, expect_chunks):
- task_vars = dict(
- group_names=group_names,
- openshift_check_min_host_disk_gb=configured_min,
- ansible_mounts=ansible_mounts,
- )
- check = DiskAvailability(fake_execute_module, task_vars)
- check.run()
- assert check.failures
- for chunk in 'below recommended'.split() + expect_chunks:
- assert chunk in str(check.failures[0])
- @pytest.mark.parametrize('name,group_names,context,ansible_mounts,failed,extra_words', [
- (
- 'test without enough space for master under "upgrade" context',
- ['oo_nodes_to_config', 'oo_masters_to_config'],
- "upgrade",
- [{
- 'mount': '/',
- 'size_available': 1 * 10**9 + 1,
- 'size_total': 21 * 10**9 + 1,
- }],
- True,
- ["1.0 GB"],
- ),
- (
- 'test with enough space for master under "upgrade" context',
- ['oo_nodes_to_config', 'oo_masters_to_config'],
- "upgrade",
- [{
- 'mount': '/',
- 'size_available': 10 * 10**9 + 1,
- 'size_total': 21 * 10**9 + 1,
- }],
- False,
- [],
- ),
- (
- 'test with not enough space for master, and non-upgrade context',
- ['oo_nodes_to_config', 'oo_masters_to_config'],
- "health",
- [{
- 'mount': '/',
- # not enough space for a master,
- # "health" context should not lower requirement
- 'size_available': 20 * 10**9 + 1,
- }],
- True,
- ["20.0 GB", "below minimum"],
- ),
- ], ids=lambda argval: argval[0])
- def test_min_required_space_changes_with_upgrade_context(name, group_names, context, ansible_mounts, failed, extra_words):
- task_vars = dict(
- r_openshift_health_checker_playbook_context=context,
- group_names=group_names,
- ansible_mounts=ansible_mounts,
- )
- check = DiskAvailability(fake_execute_module, task_vars)
- check.run()
- assert bool(check.failures) == failed
- for word in extra_words:
- assert word in str(check.failures[0])
- def fake_execute_module(*args):
- raise AssertionError('this function should not be called')
|