|
@@ -20,12 +20,24 @@ def test_is_active(group_names, is_active):
|
|
|
assert DiskAvailability(None, task_vars).is_active() == is_active
|
|
|
|
|
|
|
|
|
-@pytest.mark.parametrize('ansible_mounts,extra_words', [
|
|
|
- ([], ['none']), # empty ansible_mounts
|
|
|
- ([{'mount': '/mnt'}], ['/mnt']), # missing relevant mount paths
|
|
|
- ([{'mount': '/var'}], ['/var']), # missing size_available
|
|
|
+@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(ansible_mounts, extra_words):
|
|
|
+def test_cannot_determine_available_disk(desc, ansible_mounts, expect_chunks):
|
|
|
task_vars = dict(
|
|
|
group_names=['masters'],
|
|
|
ansible_mounts=ansible_mounts,
|
|
@@ -34,8 +46,8 @@ def test_cannot_determine_available_disk(ansible_mounts, extra_words):
|
|
|
with pytest.raises(OpenShiftCheckException) as excinfo:
|
|
|
DiskAvailability(fake_execute_module, task_vars).run()
|
|
|
|
|
|
- for word in 'determine disk availability'.split() + extra_words:
|
|
|
- assert word in str(excinfo.value)
|
|
|
+ for chunk in expect_chunks:
|
|
|
+ assert chunk in str(excinfo.value)
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('group_names,configured_min,ansible_mounts', [
|
|
@@ -97,7 +109,7 @@ def test_succeeds_with_recommended_disk_space(group_names, configured_min, ansib
|
|
|
assert not result.get('failed', False)
|
|
|
|
|
|
|
|
|
-@pytest.mark.parametrize('name,group_names,configured_min,ansible_mounts,extra_words', [
|
|
|
+@pytest.mark.parametrize('name,group_names,configured_min,ansible_mounts,expect_chunks', [
|
|
|
(
|
|
|
'test with no space available',
|
|
|
['masters'],
|
|
@@ -164,7 +176,7 @@ def test_succeeds_with_recommended_disk_space(group_names, configured_min, ansib
|
|
|
['0.0 GB'],
|
|
|
),
|
|
|
], ids=lambda argval: argval[0])
|
|
|
-def test_fails_with_insufficient_disk_space(name, group_names, configured_min, ansible_mounts, extra_words):
|
|
|
+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,
|
|
@@ -174,8 +186,8 @@ def test_fails_with_insufficient_disk_space(name, group_names, configured_min, a
|
|
|
result = DiskAvailability(fake_execute_module, task_vars).run()
|
|
|
|
|
|
assert result['failed']
|
|
|
- for word in 'below recommended'.split() + extra_words:
|
|
|
- assert word in result.get('msg', '')
|
|
|
+ for chunk in 'below recommended'.split() + expect_chunks:
|
|
|
+ assert chunk in result.get('msg', '')
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('name,group_names,context,ansible_mounts,failed,extra_words', [
|