1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
# 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'])
|