mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #50483 from rallytime/bp-50272
Back-port #50272 to 2018.3
This commit is contained in:
commit
cfb33511df
2 changed files with 41 additions and 4 deletions
|
@ -939,6 +939,9 @@ def compare_containers(first, second, ignore=None):
|
|||
if item == 'Ulimits':
|
||||
val1 = _ulimit_sort(val1)
|
||||
val2 = _ulimit_sort(val2)
|
||||
if item == 'Env':
|
||||
val1 = sorted(val1)
|
||||
val2 = sorted(val2)
|
||||
if val1 != val2:
|
||||
ret.setdefault(conf_dict, {})[item] = {'old': val1, 'new': val2}
|
||||
# Check for optionally-present items that were in the second container
|
||||
|
@ -965,6 +968,9 @@ def compare_containers(first, second, ignore=None):
|
|||
if item == 'Ulimits':
|
||||
val1 = _ulimit_sort(val1)
|
||||
val2 = _ulimit_sort(val2)
|
||||
if item == 'Env':
|
||||
val1 = sorted(val1)
|
||||
val2 = sorted(val2)
|
||||
if val1 != val2:
|
||||
ret.setdefault(conf_dict, {})[item] = {'old': val1, 'new': val2}
|
||||
return ret
|
||||
|
@ -5617,6 +5623,7 @@ def pause(name):
|
|||
.format(name))}
|
||||
return _change_state(name, 'pause', 'paused')
|
||||
|
||||
|
||||
freeze = salt.utils.functools.alias_function(pause, 'freeze')
|
||||
|
||||
|
||||
|
@ -5819,6 +5826,7 @@ def unpause(name):
|
|||
.format(name))}
|
||||
return _change_state(name, 'unpause', 'running')
|
||||
|
||||
|
||||
unfreeze = salt.utils.functools.alias_function(unpause, 'unfreeze')
|
||||
|
||||
|
||||
|
|
|
@ -821,15 +821,44 @@ class DockerTestCase(TestCase, LoaderModuleMockMixin):
|
|||
'container1': {'Config': {},
|
||||
'HostConfig': {
|
||||
'Ulimits': [
|
||||
{u'Hard': -1, u'Soft': -1, u'Name': u'core'},
|
||||
{u'Hard': 65536, u'Soft': 65536, u'Name': u'nofile'}
|
||||
{'Hard': -1, 'Soft': -1, 'Name': 'core'},
|
||||
{'Hard': 65536, 'Soft': 65536, 'Name': 'nofile'}
|
||||
]
|
||||
}},
|
||||
'container2': {'Config': {},
|
||||
'HostConfig': {
|
||||
'Ulimits': [
|
||||
{u'Hard': 65536, u'Soft': 65536, u'Name': u'nofile'},
|
||||
{u'Hard': -1, u'Soft': -1, u'Name': u'core'}
|
||||
{'Hard': 65536, 'Soft': 65536, 'Name': 'nofile'},
|
||||
{'Hard': -1, 'Soft': -1, 'Name': 'core'}
|
||||
]
|
||||
}},
|
||||
}[id_]
|
||||
|
||||
inspect_container_mock = MagicMock(side_effect=_inspect_container_effect)
|
||||
|
||||
with patch.object(docker_mod, 'inspect_container', inspect_container_mock):
|
||||
ret = docker_mod.compare_container('container1', 'container2')
|
||||
self.assertEqual(ret, {})
|
||||
|
||||
def test_compare_container_env_order(self):
|
||||
'''
|
||||
Test comparing two containers when the order of the Env HostConfig
|
||||
values are different, but the values are the same.
|
||||
'''
|
||||
def _inspect_container_effect(id_):
|
||||
return {
|
||||
'container1': {'Config': {},
|
||||
'HostConfig': {
|
||||
'Env': [
|
||||
'FOO=bar',
|
||||
'HELLO=world',
|
||||
]
|
||||
}},
|
||||
'container2': {'Config': {},
|
||||
'HostConfig': {
|
||||
'Env': [
|
||||
'HELLO=world',
|
||||
'FOO=bar',
|
||||
]
|
||||
}},
|
||||
}[id_]
|
||||
|
|
Loading…
Add table
Reference in a new issue