
- Force delete containers. - Consolidate _zun & _zun_osc method. Closes-Bug: #1695992 Change-Id: Ice6d4e00612fb092caeb59b15393d3c37ca4f49d
134 lines
4.9 KiB
Python
134 lines
4.9 KiB
Python
# Copyright (c) 2016 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import ddt
|
|
import time
|
|
|
|
from zunclient.tests.functional.osc.v1 import base
|
|
|
|
|
|
@ddt.ddt
|
|
class ContainerTests(base.TestCase):
|
|
"""Functional tests for container commands."""
|
|
|
|
def setUp(self):
|
|
super(ContainerTests, self).setUp()
|
|
|
|
def test_list(self):
|
|
"""Check container list command.
|
|
|
|
"""
|
|
container = self.container_create(name='test_list')
|
|
container_list = self.container_list()
|
|
self.assertIn(container['name'], [x['name'] for x in
|
|
container_list])
|
|
self.assertIn(container['uuid'], [x['uuid'] for x in
|
|
container_list])
|
|
|
|
# Now delete the container and then see the list
|
|
self.container_delete(container['name'])
|
|
|
|
def test_create(self):
|
|
"""Check container create command.
|
|
|
|
"""
|
|
container_info = self.container_create(name='test_create')
|
|
self.assertEqual(container_info['name'], 'test_create')
|
|
self.assertEqual(container_info['image'], 'cirros')
|
|
container_list = self.container_list()
|
|
self.assertIn('test_create', [x['name'] for x in container_list])
|
|
self.container_delete(container_info['name'])
|
|
|
|
def test_delete(self):
|
|
"""Check container delete command with name/UUID argument.
|
|
|
|
Test steps:
|
|
1) Create container in setUp.
|
|
2) Delete container by name/UUID.
|
|
3) Check that container deleted successfully.
|
|
"""
|
|
container = self.container_create(name='test_delete')
|
|
container_list = self.container_list()
|
|
self.assertIn(container['name'],
|
|
[x['name'] for x in container_list])
|
|
self.assertIn(container['uuid'],
|
|
[x['uuid'] for x in container_list])
|
|
count = 0
|
|
while count < 5:
|
|
container = self.container_show(container['name'])
|
|
if container['status'] == 'Created':
|
|
break
|
|
if container['status'] == 'Error':
|
|
break
|
|
time.sleep(2)
|
|
count = count + 1
|
|
self.container_delete(container['name'])
|
|
container_list = self.container_list()
|
|
self.assertNotIn(container['name'],
|
|
[x['name'] for x in container_list])
|
|
self.assertNotIn(container['uuid'],
|
|
[x['uuid'] for x in container_list])
|
|
|
|
def test_show(self):
|
|
"""Check container show command with name and UUID arguments.
|
|
|
|
Test steps:
|
|
1) Create container in setUp.
|
|
2) Show container calling it with name and UUID arguments.
|
|
3) Check name, uuid and image in container show output.
|
|
"""
|
|
container = self.container_create(name='test_show')
|
|
self.container_show(container['name'])
|
|
self.assertEqual(container['name'], container['name'])
|
|
self.assertEqual(container['image'], container['image'])
|
|
self.container_delete(container['name'])
|
|
|
|
def test_rename(self):
|
|
"""Check container rename command with name and UUID arguments.
|
|
|
|
Test steps:
|
|
1) Create container in setUp.
|
|
2) rename container calling it with name and UUID arguments.
|
|
3) Check new name.
|
|
"""
|
|
container = self.container_create(name='test_rename')
|
|
new_name = 'test_new'
|
|
self.container_rename(container['name'], new_name)
|
|
container_list = self.container_list()
|
|
self.assertIn(new_name, [x['name'] for x in container_list])
|
|
self.container_delete(new_name)
|
|
|
|
def test_execute(self):
|
|
"""Check container execute command with name and UUID arguments.
|
|
|
|
Test steps:
|
|
1) Create container in setUp.
|
|
2) Execute command calling it with name and UUID arguments.
|
|
3) Check the container logs.
|
|
"""
|
|
container = self.container_run(name='test_execute')
|
|
count = 0
|
|
while count < 50:
|
|
container = self.container_show(container['name'])
|
|
if container['status'] == 'Running':
|
|
break
|
|
if container['status'] == 'Error':
|
|
break
|
|
time.sleep(2)
|
|
count = count + 1
|
|
command = "sh -c 'echo hello'"
|
|
result = self.container_execute(container['name'], command)
|
|
self.assertIn('hello', result)
|
|
self.container_delete(container['name'])
|