-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into state-sls-docs
- Loading branch information
Showing
6 changed files
with
539 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
# -*- coding: utf-8 -*- | ||
''' | ||
:codeauthor: :email:`Jorge Schrauwen <sjorge@blackdot.be>` | ||
''' | ||
# Import Python libs | ||
from __future__ import absolute_import, print_function, unicode_literals | ||
|
||
# Import Salt Testing Libs | ||
from tests.support.unit import TestCase, skipIf | ||
from tests.support.mock import ( | ||
patch, | ||
NO_MOCK, | ||
NO_MOCK_REASON, | ||
Mock, | ||
) | ||
|
||
# Import Salt Libs | ||
import salt.grains.mdata as mdata | ||
|
||
|
||
@skipIf(NO_MOCK, NO_MOCK_REASON) | ||
class MdataGrainsTestCase(TestCase): | ||
''' | ||
Test cases for mdata grains | ||
''' | ||
def setup_loader_modules(self): | ||
return { | ||
mdata: { | ||
'__salt__': {}, | ||
}, | ||
} | ||
|
||
def test_user_mdata_missing_cmd_both(self): | ||
''' | ||
When both or either of the commands is missing there should | ||
be no grain output. | ||
''' | ||
grains_exp_res = {} | ||
|
||
which_mock = Mock(side_effect=[ | ||
None, | ||
None, | ||
]) | ||
with patch('salt.utils.path.which', which_mock): | ||
grains_res = mdata._user_mdata() | ||
self.assertEqual(grains_exp_res, grains_res) | ||
|
||
def test_user_mdata_missing_cmd_one(self): | ||
''' | ||
When both or either of the commands is missing there should | ||
be no grain output. | ||
''' | ||
grains_exp_res = {} | ||
|
||
which_mock = Mock(side_effect=[ | ||
"/usr/sbin/mdata-list", | ||
None, | ||
]) | ||
with patch('salt.utils.path.which', which_mock): | ||
grains_res = mdata._user_mdata() | ||
self.assertEqual(grains_exp_res, grains_res) | ||
|
||
def test_user_mdata_empty_list(self): | ||
''' | ||
When there are no user grains, there are no mdata-get calls | ||
so there are also no grains. | ||
''' | ||
grains_exp_res = {} | ||
|
||
which_mock = Mock(side_effect=[ | ||
"/usr/sbin/mdata-list", | ||
"/usr/sbin/mdata-get", | ||
]) | ||
cmd_mock = Mock(side_effect=[ | ||
"", | ||
]) | ||
with patch('salt.utils.path.which', which_mock), \ | ||
patch.dict(mdata.__salt__, {'cmd.run': cmd_mock}): | ||
grains_res = mdata._user_mdata() | ||
self.assertEqual(grains_exp_res, grains_res) | ||
|
||
def test_user_mdata(self): | ||
''' | ||
We have a list of two grains, so there should be two mdata-get | ||
calls, resulting in 2 grains. | ||
''' | ||
grains_exp_res = { | ||
'mdata': { | ||
'multi_text_data': 'multi\nline\ntext', | ||
'simple_text_data': 'some text data', | ||
}, | ||
} | ||
|
||
which_mock = Mock(side_effect=[ | ||
"/usr/sbin/mdata-list", | ||
"/usr/sbin/mdata-get", | ||
]) | ||
cmd_mock = Mock(side_effect=[ | ||
"simple_text_data\nmulti_text_data", | ||
"some text data", | ||
"multi\nline\ntext", | ||
]) | ||
with patch('salt.utils.path.which', which_mock), \ | ||
patch.dict(mdata.__salt__, {'cmd.run': cmd_mock}): | ||
grains_res = mdata._user_mdata() | ||
|
||
self.assertEqual(grains_exp_res, grains_res) | ||
|
||
def test_sdc_mdata_missing_cmd_both(self): | ||
''' | ||
When both or either of the commands is missing there should | ||
be no grain output. | ||
''' | ||
which_mock = Mock(side_effect=[ | ||
None, | ||
None, | ||
]) | ||
with patch('salt.utils.path.which', which_mock): | ||
grains = mdata._sdc_mdata() | ||
assert grains == {} | ||
|
||
def test_sdc_mdata_missing_cmd_one(self): | ||
''' | ||
When both or either of the commands is missing there should | ||
be no grain output. | ||
''' | ||
grains_exp_res = {} | ||
|
||
which_mock = Mock(side_effect=[ | ||
"/usr/sbin/mdata-list", | ||
None, | ||
]) | ||
with patch('salt.utils.path.which', which_mock): | ||
grains_res = mdata._sdc_mdata() | ||
self.assertEqual(grains_exp_res, grains_res) | ||
|
||
def test_sdc_mdata(self): | ||
''' | ||
Simulate all mdata_get calls from a test zone. | ||
''' | ||
grains_exp_res = { | ||
'mdata': { | ||
'sdc': { | ||
'alias': 'test', | ||
'dns_domain': 'example.org', | ||
'hostname': 'test_salt', | ||
'nics': [ | ||
{ | ||
'gateway': '10.12.3.1', | ||
'gateways': ['10.12.3.1'], | ||
'interface': 'net0', | ||
'ip': '10.12.3.123', | ||
'ips': ['10.12.3.123/24', '2001:ffff:ffff:123::123/64'], | ||
'mac': '00:00:00:00:00:01', | ||
'mtu': 1500, | ||
'netmask': '255.255.255.0', | ||
'nic_tag': 'trunk', | ||
'primary': True, | ||
'vlan_id': 123, | ||
} | ||
], | ||
'resolvers': ['10.12.3.1', '2001:ffff:ffff:123::1'], | ||
'routes': [], | ||
'server_uuid': '00000000-0000-0000-0000-000123456789', | ||
'uuid': 'bae504b1-4594-47de-e2ed-e4f454776689', | ||
}, | ||
}, | ||
} | ||
|
||
which_mock = Mock(side_effect=[ | ||
"/usr/sbin/mdata-list", | ||
"/usr/sbin/mdata-get", | ||
]) | ||
cmd_mock = Mock(side_effect=[ | ||
"bae504b1-4594-47de-e2ed-e4f454776689", | ||
"00000000-0000-0000-0000-000123456789", | ||
"No metadata for 'sdc:datacenter_name'", | ||
"test_salt", | ||
"example.org", | ||
"test", | ||
'["10.12.3.1","2001:ffff:ffff:123::1"]', | ||
'[{"interface":"net0","mac":"00:00:00:00:00:01","vlan_id":123,"nic_tag":"trunk","gateway":"10.12.3.1","gateways":["10.12.3.1"],"netmask":"255.255.255.0","ip":"10.12.3.123","ips":["10.12.3.123/24","2001:ffff:ffff:123::123/64"],"mtu":1500,"primary":true}]', | ||
"[]", | ||
]) | ||
with patch('salt.utils.path.which', which_mock), \ | ||
patch.dict(mdata.__salt__, {'cmd.run': cmd_mock}): | ||
grains_res = mdata._sdc_mdata() | ||
|
||
self.assertEqual(grains_exp_res, grains_res) |
Oops, something went wrong.