mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
8cdb9ea54f
This makes the 2.x usage invalid syntax and forces the use of print as a function. This adds the import to the files which I've updated in the last couple of days but forgot to add it.
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.case import SSHCase
|
|
from tests.support.unit import skipIf
|
|
|
|
# Import Salt Libs
|
|
import salt.utils.platform
|
|
|
|
|
|
@skipIf(salt.utils.platform.is_windows(), 'salt-ssh not available on Windows')
|
|
class SSHPillarTest(SSHCase):
|
|
'''
|
|
testing pillar with salt-ssh
|
|
'''
|
|
def test_pillar_items(self):
|
|
'''
|
|
test pillar.items with salt-ssh
|
|
'''
|
|
ret = self.run_function('pillar.items')
|
|
self.assertDictContainsSubset({'monty': 'python'}, ret)
|
|
self.assertDictContainsSubset(
|
|
{'knights': ['Lancelot', 'Galahad', 'Bedevere', 'Robin']},
|
|
ret)
|
|
|
|
def test_pillar_get(self):
|
|
'''
|
|
test pillar.get with salt-ssh
|
|
'''
|
|
ret = self.run_function('pillar.get', ['monty'])
|
|
self.assertEqual(ret, 'python')
|
|
|
|
def test_pillar_get_doesnotexist(self):
|
|
'''
|
|
test pillar.get when pillar does not exist with salt-ssh
|
|
'''
|
|
ret = self.run_function('pillar.get', ['doesnotexist'])
|
|
self.assertEqual(ret, '')
|