| # vim: tabstop=4 shiftwidth=4 softtabstop=4 |
| |
| # Copyright 2012 OpenStack, LLC |
| # All Rights Reserved. |
| # |
| # 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 base64 |
| |
| from nose.plugins.attrib import attr |
| import unittest2 as unittest |
| |
| import tempest.config |
| from tempest.common.utils.data_utils import rand_name |
| from tempest.common.utils.linux.remote_client import RemoteClient |
| from tempest.tests.compute import base |
| |
| |
| class ServersTest(object): |
| |
| run_ssh = tempest.config.TempestConfig().compute.run_ssh |
| |
| @staticmethod |
| def setUpClass(cls): |
| cls.meta = {'hello': 'world'} |
| cls.accessIPv4 = '1.1.1.1' |
| cls.accessIPv6 = '::babe:220.12.22.2' |
| cls.name = rand_name('server') |
| file_contents = 'This is a test file.' |
| personality = [{'path': '/etc/test.txt', |
| 'contents': base64.b64encode(file_contents)}] |
| cls.client = cls.servers_client |
| cls.resp, cls.server_initial = cls.client.create_server(cls.name, |
| cls.image_ref, |
| cls.flavor_ref, |
| meta=cls.meta, |
| accessIPv4=cls.accessIPv4, |
| accessIPv6=cls.accessIPv6, |
| personality=personality) |
| cls.password = cls.server_initial['adminPass'] |
| cls.client.wait_for_server_status(cls.server_initial['id'], 'ACTIVE') |
| resp, cls.server = cls.client.get_server(cls.server_initial['id']) |
| |
| @staticmethod |
| def tearDownClass(cls): |
| cls.client.delete_server(cls.server_initial['id']) |
| |
| @attr(type='smoke') |
| def test_create_server_response(self): |
| """Check that the required fields are returned with values""" |
| self.assertEqual(202, self.resp.status) |
| self.assertTrue(self.server_initial['id'] is not None) |
| self.assertTrue(self.server_initial['adminPass'] is not None) |
| |
| @attr(type='smoke') |
| def test_verify_server_details(self): |
| """Verify the specified server attributes are set correctly""" |
| |
| self.assertEqual(self.accessIPv4, self.server['accessIPv4']) |
| self.assertEqual(self.accessIPv6, self.server['accessIPv6']) |
| self.assertEqual(self.name, self.server['name']) |
| self.assertEqual(self.image_ref, self.server['image']['id']) |
| self.assertEqual(str(self.flavor_ref), self.server['flavor']['id']) |
| self.assertEqual(self.meta, self.server['metadata']) |
| |
| @attr(type='smoke') |
| def test_list_servers(self): |
| """The created server should be in the list of all servers""" |
| resp, body = self.client.list_servers() |
| servers = body['servers'] |
| found = any([i for i in servers if i['id'] == self.server['id']]) |
| self.assertTrue(found) |
| |
| @attr(type='smoke') |
| def test_list_servers_with_detail(self): |
| """The created server should be in the detailed list of all servers""" |
| resp, body = self.client.list_servers_with_detail() |
| servers = body['servers'] |
| found = any([i for i in servers if i['id'] == self.server['id']]) |
| self.assertTrue(found) |
| |
| @attr(type='positive') |
| @unittest.skipIf(not run_ssh, 'Instance validation tests are disabled.') |
| def test_can_log_into_created_server(self): |
| """Check that the user can authenticate with the generated password""" |
| linux_client = RemoteClient(self.server, self.ssh_user, self.password) |
| self.assertTrue(linux_client.can_authenticate()) |
| |
| @attr(type='positive') |
| @unittest.skipIf(not run_ssh, 'Instance validation tests are disabled.') |
| def test_verify_created_server_vcpus(self): |
| """ |
| Verify that the number of vcpus reported by the instance matches |
| the amount stated by the flavor |
| """ |
| resp, flavor = self.flavors_client.get_flavor_details(self.flavor_ref) |
| linux_client = RemoteClient(self.server, self.ssh_user, self.password) |
| self.assertEqual(flavor['vcpus'], linux_client.get_number_of_vcpus()) |
| |
| @attr(type='positive') |
| @unittest.skipIf(not run_ssh, 'Instance validation tests are disabled.') |
| def test_host_name_is_same_as_server_name(self): |
| """Verify the instance host name is the same as the server name""" |
| linux_client = RemoteClient(self.server, self.ssh_user, self.password) |
| self.assertTrue(linux_client.hostname_equals_servername(self.name)) |
| |
| |
| class ServersTestJSON(base.BaseComputeTestJSON, |
| ServersTest): |
| @classmethod |
| def setUpClass(cls): |
| super(ServersTestJSON, cls).setUpClass() |
| ServersTest.setUpClass(cls) |
| |
| @classmethod |
| def tearDownClass(cls): |
| ServersTest.tearDownClass(cls) |
| super(ServersTestJSON, cls).tearDownClass() |
| |
| |
| class ServersTestXML(base.BaseComputeTestXML, |
| ServersTest): |
| @classmethod |
| def setUpClass(cls): |
| super(ServersTestXML, cls).setUpClass() |
| ServersTest.setUpClass(cls) |
| |
| @classmethod |
| def tearDownClass(cls): |
| ServersTest.tearDownClass(cls) |
| super(ServersTestXML, cls).tearDownClass() |