
The gate fails because delete tries to delete a container in creating state. This patch adds delay to wait for the container to finish creating, then deletes it. Change-Id: I7a23dab5e9c1059bab83ca7cb67ce496a1ace5a1 Closes-Bug: #1666442
98 lines
3.5 KiB
Python
98 lines
3.5 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
|
|
from tempest.lib.common.utils import data_utils
|
|
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')
|
|
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.
|
|
|
|
"""
|
|
name = data_utils.rand_name('test_container')
|
|
container_info = self.container_create(name=name)
|
|
self.assertEqual(container_info['name'], name)
|
|
self.assertEqual(container_info['image'], 'cirros')
|
|
container_list = self.container_list()
|
|
self.assertIn(name, [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 node deleted successfully.
|
|
"""
|
|
container = self.container_create(name='test_del')
|
|
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:
|
|
self.container_show(container['name'])
|
|
if container['status'] == 'Running':
|
|
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'])
|