tests: Fix test_copy

* Added missing assert in tests
* Simplify the tests for split_pre_existing_dir

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/84039/head
Abhijeet Kasurde 1 month ago
parent 4f6276d72d
commit 258a4c41c1

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright: # Copyright: (c) 2018 Ansible Project
# (c) 2018 Ansible Project # Copyright: Contributors to the Ansible project
# License: GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import annotations from __future__ import annotations
@ -11,126 +11,56 @@ from ansible.modules.copy import AnsibleModuleError, split_pre_existing_dir
from ansible.module_utils.basic import AnsibleModule from ansible.module_utils.basic import AnsibleModule
THREE_DIRS_DATA: tuple[tuple[str, tuple[str, list[str]] | None, tuple[str, list[str]], tuple[str, list[str]], tuple[str, list[str]]], ...] = ( success_testdata = [
('/dir1/dir2', # Level 1
# 0 existing dirs: error (because / should always exist) ('/dir1/dir2', [True], ('/dir1', ['dir2'])),
None, ('/dir1/dir2/', [True], ('/dir1/dir2', [''])),
# 1 existing dir: ('dir1/dir2', [True], ('dir1', ['dir2'])),
('/', ['dir1', 'dir2']), ('dir1/dir2/', [True], ('dir1/dir2', [''])),
# 2 existing dirs: ('/dir1', [True], ('/', ['dir1'])),
('/dir1', ['dir2']), ('/dir1/', [True], ('/dir1', [''])),
# 3 existing dirs: ('dir1', [True], ('.', ['dir1'])),
('/dir1/dir2', []) ('dir1/', [True], ('dir1', [''])),
), # Level 2
('/dir1/dir2/', ('/dir1/dir2', [False, True], ('/', ['dir1', 'dir2'])),
# 0 existing dirs: error (because / should always exist) ('/dir1/dir2/', [False, True], ('/dir1', ['dir2', ''])),
None, ('dir1/dir2', [False, True], ('.', ['dir1', 'dir2'])),
# 1 existing dir: ('dir1/dir2/', [False, True], ('dir1', ['dir2', ''])),
('/', ['dir1', 'dir2']), ('/dir1/', [False, True], ('/', ['dir1', ''])),
# 2 existing dirs: ('dir1', [False, True], ('.', ['dir1'])),
('/dir1', ['dir2']), ('dir1/', [False, True], ('.', ['dir1', ''])),
# 3 existing dirs: # Level 3
('/dir1/dir2', []) ('/dir1/dir2/', [False, False, True], ('/', ['dir1', 'dir2', ''])),
), ('dir1/dir2', [False, False, True], ('.', ['dir1', 'dir2'])),
) ('dir1/dir2/', [False, False, True], ('.', ['dir1', 'dir2', ''])),
('dir1', [False, False, True], ('.', ['dir1'])),
('dir1/', [False, False, True], ('.', ['dir1', ''])),
TWO_DIRS_DATA: tuple[tuple[str, tuple[str, list[str]] | None, tuple[str, list[str]], tuple[str, list[str]]], ...] = ( ]
('dir1/dir2',
# 0 existing dirs:
('.', ['dir1', 'dir2']), failure_testdata = [
# 1 existing dir: # Level 2
('dir1', ['dir2']), ('/dir1', [False, True]),
# 2 existing dirs: # Level 3
('dir1/dir2', []), ('/dir1/dir2', [False, False, True]),
# 3 existing dirs: Same as 2 because we never get to the third ('/dir1', [False, False, True]),
), ('/dir1/', [False, False, True]),
('dir1/dir2/', ]
# 0 existing dirs:
('.', ['dir1', 'dir2']),
# 1 existing dir: @pytest.mark.parametrize("actual, mock_os_exists, expected", success_testdata)
('dir1', ['dir2']), def test_split_pre_existing_dir_root_does_exist(actual, mock_os_exists, expected, mocker):
# 2 existing dirs: mocker.patch('os.path.exists', side_effect=mock_os_exists)
('dir1/dir2', []), assert split_pre_existing_dir(actual) == expected
# 3 existing dirs: Same as 2 because we never get to the third
),
('/dir1', @pytest.mark.parametrize("actual, mock_os_exists", failure_testdata)
# 0 existing dirs: error (because / should always exist) def test_split_pre_existing_dir_root_does_not_exist(actual, mock_os_exists, mocker):
None, mocker.patch('os.path.exists', side_effect=mock_os_exists)
# 1 existing dir:
('/', ['dir1']),
# 2 existing dirs:
('/dir1', []),
# 3 existing dirs: Same as 2 because we never get to the third
),
('/dir1/',
# 0 existing dirs: error (because / should always exist)
None,
# 1 existing dir:
('/', ['dir1']),
# 2 existing dirs:
('/dir1', []),
# 3 existing dirs: Same as 2 because we never get to the third
),
)
TWO_DIRS_DATA += tuple(item[:4] for item in THREE_DIRS_DATA)
ONE_DIR_DATA: tuple[tuple[str, tuple[str, list[str]] | None, tuple[str, list[str]]], ...] = (
('dir1',
# 0 existing dirs:
('.', ['dir1']),
# 1 existing dir:
('dir1', []),
# 2 existing dirs: Same as 1 because we never get to the third
),
('dir1/',
# 0 existing dirs:
('.', ['dir1']),
# 1 existing dir:
('dir1', []),
# 2 existing dirs: Same as 1 because we never get to the third
),
)
ONE_DIR_DATA += tuple(item[:3] for item in TWO_DIRS_DATA)
@pytest.mark.parametrize('directory, expected', ((d[0], d[4]) for d in THREE_DIRS_DATA))
@pytest.mark.xfail(reason='broken test and/or code, original test missing assert', strict=False)
def test_split_pre_existing_dir_three_levels_exist(directory, expected, mocker):
mocker.patch('os.path.exists', side_effect=[True, True, True])
assert split_pre_existing_dir(directory) == expected
@pytest.mark.parametrize('directory, expected', ((d[0], d[3]) for d in TWO_DIRS_DATA))
@pytest.mark.xfail(reason='broken test and/or code, original test missing assert', strict=False)
def test_split_pre_existing_dir_two_levels_exist(directory, expected, mocker):
mocker.patch('os.path.exists', side_effect=[True, True, False])
assert split_pre_existing_dir(directory) == expected
@pytest.mark.parametrize('directory, expected', ((d[0], d[2]) for d in ONE_DIR_DATA))
@pytest.mark.xfail(reason='broken test and/or code, original test missing assert', strict=False)
def test_split_pre_existing_dir_one_level_exists(directory, expected, mocker):
mocker.patch('os.path.exists', side_effect=[True, False, False])
assert split_pre_existing_dir(directory) == expected
@pytest.mark.parametrize('directory', (d[0] for d in ONE_DIR_DATA if d[1] is None))
def test_split_pre_existing_dir_root_does_not_exist(directory, mocker):
mocker.patch('os.path.exists', return_value=False)
with pytest.raises(AnsibleModuleError) as excinfo: with pytest.raises(AnsibleModuleError) as excinfo:
split_pre_existing_dir(directory) split_pre_existing_dir(actual)
assert excinfo.value.results['msg'].startswith("The '/' directory doesn't exist on this machine.") assert excinfo.value.results['msg'].startswith("The '/' directory doesn't exist on this machine.")
@pytest.mark.parametrize('directory, expected', ((d[0], d[1]) for d in ONE_DIR_DATA if not d[0].startswith('/')))
@pytest.mark.xfail(reason='broken test and/or code, original test missing assert', strict=False)
def test_split_pre_existing_dir_working_dir_exists(directory, expected, mocker):
mocker.patch('os.path.exists', return_value=False)
assert split_pre_existing_dir(directory) == expected
# #
# Info helpful for making new test cases: # Info helpful for making new test cases:
# #
@ -150,6 +80,7 @@ def test_split_pre_existing_dir_working_dir_exists(directory, expected, mocker):
# 'g': 3, # 'g': 3,
# 'o': 0} # 'o': 0}
DATA = ( # Going from no permissions to setting all for user, group, and/or other DATA = ( # Going from no permissions to setting all for user, group, and/or other
(0o040000, u'a+rwx', 0o0777), (0o040000, u'a+rwx', 0o0777),
(0o040000, u'u+rwx,g+rwx,o+rwx', 0o0777), (0o040000, u'u+rwx,g+rwx,o+rwx', 0o0777),
@ -228,5 +159,5 @@ def test_invalid_symbolic_modes(mocker, stat_info, mode_string, expected):
mock_stat = mocker.MagicMock() mock_stat = mocker.MagicMock()
mock_stat.st_mode = stat_info mock_stat.st_mode = stat_info
with pytest.raises(ValueError) as exc: with pytest.raises(ValueError) as exc:
assert AnsibleModule._symbolic_mode_to_octal(mock_stat, mode_string) == 'blah' AnsibleModule._symbolic_mode_to_octal(mock_stat, mode_string)
assert exc.match(expected) assert exc.match(expected)

Loading…
Cancel
Save