mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 15:21:25 -07:00
fix vyos_user configuration (#26166)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
9474f20f2d
commit
34eca3816d
2 changed files with 6 additions and 6 deletions
|
@ -48,7 +48,7 @@ class TestVyosUserModule(TestVyosModule):
|
|||
def test_vyos_user_password(self):
|
||||
set_module_args(dict(name='ansible', password='test'))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'], ['set system login user ansible authentication encrypted-password test'])
|
||||
self.assertEqual(result['commands'], ['set system login user ansible authentication plaintext-password test'])
|
||||
|
||||
def test_vyos_user_delete(self):
|
||||
set_module_args(dict(name='ansible', state='absent'))
|
||||
|
@ -73,14 +73,14 @@ class TestVyosUserModule(TestVyosModule):
|
|||
def test_vyos_user_update_password_changed(self):
|
||||
set_module_args(dict(name='test', password='test', update_password='on_create'))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'], ['set system login user test authentication encrypted-password test'])
|
||||
self.assertEqual(result['commands'], ['set system login user test authentication plaintext-password test'])
|
||||
|
||||
def test_vyos_user_update_password_on_create_ok(self):
|
||||
set_module_args(dict(name='ansible', password='test', update_password='on_create'))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'], ['set system login user ansible authentication encrypted-password test'])
|
||||
self.assertEqual(result['commands'], ['set system login user ansible authentication plaintext-password test'])
|
||||
|
||||
def test_vyos_user_update_password_always(self):
|
||||
set_module_args(dict(name='ansible', password='test', update_password='always'))
|
||||
result = self.execute_module(changed=True)
|
||||
self.assertEqual(result['commands'], ['set system login user ansible authentication encrypted-password test'])
|
||||
self.assertEqual(result['commands'], ['set system login user ansible authentication plaintext-password test'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue