add vm_id in result output

This commit is contained in:
mayabi 2025-03-30 13:47:31 +03:30
parent 1e4efeea01
commit aa1b757c3d
2 changed files with 37 additions and 37 deletions

View file

@ -13,7 +13,7 @@ DOCUMENTATION = """
--- ---
module: proxmox_backup_schedule module: proxmox_backup_schedule
short_description: Schedule VM backups and remove them short_description: Schedule VM backups and removing them
version_added: 10.5.0 version_added: 10.5.0
@ -108,12 +108,12 @@ EXAMPLES = """
RETURN = """ RETURN = """
--- ---
changed: backup_schedule:
description: description:
- If V(present), the changed will return True after adding the VM ID to the backup job. - If V(present), the backup_schedule will return True after adding the VM ID to the backup job.
- If V(absent), the changed will return True after removing it from the backup job. - If V(absent), the backup_schedule will return True after removing it from the backup job.
returned: always, but can be empty returned: always, but can be empty
type: bool type: raw
""" """
from ansible.module_utils.basic import AnsibleModule, missing_required_lib from ansible.module_utils.basic import AnsibleModule, missing_required_lib
@ -246,13 +246,14 @@ def main():
vm_id = proxmox.vmname_2_vmid(vm_name) vm_id = proxmox.vmname_2_vmid(vm_name)
if state == 'present': if state == 'present':
backup_schedule = proxmox.backup_present(vm_id, backup_id) backup_schedule_result = proxmox.backup_present(vm_id, backup_id)
if state == 'absent': if state == 'absent':
backup_schedule = proxmox.backup_absent(vm_id, backup_id) backup_schedule_result = proxmox.backup_absent(vm_id, backup_id)
if backup_schedule: if backup_schedule_result:
result['changed'] = True result['changed'] = backup_schedule_result
result['vm_id'] = vm_id
result['message'] = 'The backup schedule has been changed successfully.' result['message'] = 'The backup schedule has been changed successfully.'
else: else:
result['message'] = 'The backup schedule did not change anything.' result['message'] = 'The backup schedule did not change anything.'

View file

@ -171,9 +171,7 @@ class TestProxmoxBackupScheduleModule(ModuleTestCase):
RESOURCE_LIST RESOURCE_LIST
) )
self.connect_mock.return_value.cluster.backup.get.side_effect = ( self.connect_mock.return_value.cluster.backup.get.side_effect = (
lambda backup_id=None: BACKUP_JOBS if backup_id is None else [ lambda backup_id=None: BACKUP_JOBS if backup_id is None else [job for job in BACKUP_JOBS if job['id'] == backup_id]
job for job in BACKUP_JOBS if job['id'] == backup_id
]
) )
def tearDown(self): def tearDown(self):
@ -189,35 +187,36 @@ 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
assert result['vm_id'] == 105
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
assert result['vm_id'] == 101
if __name__ == '__main__': if __name__ == '__main__':