2015-05-04 10:40:54 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
|
|
:codeauthor: :email:`Jayesh Kariya <jayeshk@saltstack.com>`
|
|
|
|
'''
|
|
|
|
# Import Python libs
|
2018-01-22 11:35:45 +00:00
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
2015-05-04 10:40:54 +00:00
|
|
|
|
|
|
|
# Import Salt Testing Libs
|
2017-02-27 13:58:07 +00:00
|
|
|
from tests.support.unit import skipIf, TestCase
|
|
|
|
from tests.support.mock import (
|
2015-05-04 10:40:54 +00:00
|
|
|
NO_MOCK,
|
|
|
|
NO_MOCK_REASON)
|
|
|
|
|
|
|
|
# Import Salt Libs
|
2017-03-21 17:15:36 +00:00
|
|
|
import salt.states.gnomedesktop as gnomedesktop
|
2015-05-04 10:40:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
|
|
class GnomedesktopTestCase(TestCase):
|
|
|
|
'''
|
|
|
|
Test cases for salt.states.gnomedesktop
|
|
|
|
'''
|
|
|
|
# 'wm_preferences' function tests: 1
|
|
|
|
|
|
|
|
def test_wm_preferences(self):
|
|
|
|
'''
|
|
|
|
Test to sets values in the org.gnome.desktop.wm.preferences schema
|
|
|
|
'''
|
|
|
|
name = 'salt'
|
|
|
|
|
|
|
|
ret = {'name': name,
|
|
|
|
'result': True,
|
|
|
|
'comment': '',
|
|
|
|
'changes': {}}
|
|
|
|
|
|
|
|
self.assertDictEqual(gnomedesktop.wm_preferences(name), ret)
|
|
|
|
|
|
|
|
# 'desktop_lockdown' function tests: 1
|
|
|
|
|
|
|
|
def test_desktop_lockdown(self):
|
|
|
|
'''
|
|
|
|
Test to sets values in the org.gnome.desktop.lockdown schema
|
|
|
|
'''
|
|
|
|
name = 'salt'
|
|
|
|
|
|
|
|
ret = {'name': name,
|
|
|
|
'result': True,
|
|
|
|
'comment': '',
|
|
|
|
'changes': {}}
|
|
|
|
|
|
|
|
self.assertDictEqual(gnomedesktop.desktop_lockdown(name), ret)
|
|
|
|
|
|
|
|
# 'desktop_interface' function tests: 1
|
|
|
|
|
|
|
|
def test_desktop_interface(self):
|
|
|
|
'''
|
|
|
|
Test to sets values in the org.gnome.desktop.interface schema
|
|
|
|
'''
|
|
|
|
name = 'salt'
|
|
|
|
|
|
|
|
ret = {'name': name,
|
|
|
|
'result': True,
|
|
|
|
'comment': '',
|
|
|
|
'changes': {}}
|
|
|
|
|
|
|
|
self.assertDictEqual(gnomedesktop.desktop_interface(name), ret)
|