fix vyos_user configuration (#26166)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha 2017-06-28 12:13:27 +05:30 committed by GitHub
parent 9474f20f2d
commit 34eca3816d
2 changed files with 6 additions and 6 deletions

View file

@ -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'])