This commit is contained in:
mayabi 2025-03-30 10:18:38 +03:30
parent 4ce8f1a29f
commit 070d60ba30

View file

@ -202,35 +202,33 @@ class TestProxmoxBackupScheduleModule(ModuleTestCase):
assert result["msg"] == "missing required arguments: api_host, api_user, state" assert result["msg"] == "missing required arguments: api_host, api_user, state"
def test_update_vmid_in_backup(self): def test_update_vmid_in_backup(self):
with patch('builtins.input', return_value='mocked input'): with pytest.raises(AnsibleExitJson) as exc_info:
with pytest.raises(AnsibleExitJson) as exc_info: set_module_args({
set_module_args({ 'api_host': 'proxmoxhost',
'api_host': 'proxmoxhost', 'api_user': 'root@pam',
'api_user': 'root@pam', 'api_password': 'supersecret',
'api_password': 'supersecret', 'vm_name': 'test05',
'vm_name': 'test05', 'backup_id': 'backup-001',
'backup_id': 'backup-001', 'state': 'present'
'state': 'present' })
}) self.module.main()
self.module.main()
result = exc_info.value.args[0]
result = exc_info.value.args[0] assert result['changed'] is True
assert result['changed'] is True
def test_delete_vmid_from_backup(self): def test_delete_vmid_from_backup(self):
with patch('builtins.input', return_value='mocked input'): with pytest.raises(AnsibleExitJson) as exc_info:
with pytest.raises(AnsibleExitJson) as exc_info: set_module_args({
set_module_args({ 'api_host': 'proxmoxhost',
'api_host': 'proxmoxhost', 'api_user': 'root@pam',
'api_user': 'root@pam', 'api_password': 'supersecret',
'api_password': 'supersecret', 'vm_id': '101',
'vm_id': '101', 'state': 'absent'
'state': 'absent' })
}) self.module.main()
self.module.main()
result = exc_info.value.args[0]
result = exc_info.value.args[0] assert result['changed'] is True
assert result['changed'] is True
if __name__ == '__main__': if __name__ == '__main__':