Fix tests to accommodate short-id container alias

Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
Aanand Prasad 2016-06-27 16:21:19 -07:00
parent fe0654603c
commit 8e04582052
1 changed files with 8 additions and 2 deletions

View File

@ -1135,7 +1135,10 @@ class CLITestCase(DockerClientTestCase):
]
for _, config in networks.items():
assert not config['Aliases']
# TODO: once we drop support for API <1.24, this can be changed to:
# assert config['Aliases'] == [container.short_id]
aliases = set(config['Aliases']) - set([container.short_id])
assert not aliases
@v2_only()
def test_run_detached_connects_to_network(self):
@ -1152,7 +1155,10 @@ class CLITestCase(DockerClientTestCase):
]
for _, config in networks.items():
assert not config['Aliases']
# TODO: once we drop support for API <1.24, this can be changed to:
# assert config['Aliases'] == [container.short_id]
aliases = set(config['Aliases']) - set([container.short_id])
assert not aliases
assert self.lookup(container, 'app')
assert self.lookup(container, 'db')