
Right now, for renaming the container we need to use zun rename but we can move this into PATCH /containers/<container> https://github.com/openstack/zun/blob/master/zun/api/controllers/v1/containers.py#L570) because this is the convention of API design in OpenStack (e.g. nova implements server rename at PUT /servers/<server>). This PS adds support for rename container using update command as well: zun update [--cpu <cpu>] [-m <memory>] [--name <name>] <container> Change-Id: I237a849dec549f53efe560a04fc0ca64929c14e7 Related-Bug: #1759459
127 lines
4.6 KiB
Python
127 lines
4.6 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'])
|
|
# Wait for the container to be deleted
|
|
count = 0
|
|
while count < 5:
|
|
container_list = self.container_list()
|
|
if container['name'] not in [x['name'] for x in container_list]:
|
|
break
|
|
time.sleep(2)
|
|
count = count + 1
|
|
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_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'])
|