Sort by dict key in order to make the test deterministic
Change-Id: I34e95e7dde4049c2f85dd1efe37ab77e5837d045
This commit is contained in:
parent
c5b2c92dfd
commit
a431d34202
@ -101,7 +101,7 @@ class BaseInstaller(object):
|
||||
raise KeyError("'%s' is an invalid metadata!" % key)
|
||||
|
||||
def _get_tmpl_vars_helper(self, metadata, config, output):
|
||||
for key, config_value in config.iteritems():
|
||||
for key, config_value in sorted(config.iteritems()):
|
||||
is_regular_key, sub_meta = self._get_submeta_by_key(metadata, key)
|
||||
mapping_to = self._get_key_mapping(sub_meta, key, is_regular_key)
|
||||
|
||||
|
@ -65,10 +65,6 @@ class TestCobblerInstaller(unittest2.TestCase):
|
||||
}
|
||||
},
|
||||
"partition": {
|
||||
"/var": {
|
||||
"vol_size": 30,
|
||||
"vol_percentage": 30
|
||||
},
|
||||
"/home": {
|
||||
"vol_size": 50,
|
||||
"vol_percentage": 40
|
||||
@ -76,6 +72,10 @@ class TestCobblerInstaller(unittest2.TestCase):
|
||||
"/test": {
|
||||
"vol_size": 10,
|
||||
"vol_percentage": 10
|
||||
},
|
||||
"/var": {
|
||||
"vol_size": 30,
|
||||
"vol_percentage": 30
|
||||
}
|
||||
},
|
||||
"server_credentials": {
|
||||
@ -148,7 +148,7 @@ class TestCobblerInstaller(unittest2.TestCase):
|
||||
"ksmeta": {
|
||||
"promisc_nics": "",
|
||||
"timezone": "UTC",
|
||||
"partition": "/test 10%;/var 30%;/home 40%",
|
||||
"partition": "/home 40%;/test 10%;/var 30%",
|
||||
"https_proxy": "",
|
||||
"ntp_server": "127.0.0.1",
|
||||
"chef_url": "https://127.0.0.1",
|
||||
|
@ -38,7 +38,7 @@
|
||||
,
|
||||
"ksmeta":{
|
||||
#set partition_config = ''
|
||||
#for k, v in $host.partition.iteritems():
|
||||
#for k, v in sorted($host.partition.iteritems()):
|
||||
#set path = ''
|
||||
#if v['vol_percentage']:
|
||||
#set $path = k + ' ' + str(v['vol_percentage']) + '%'
|
||||
|
Loading…
Reference in New Issue
Block a user