blob: 446c87a72e4eb6504e9bff5ec5727ef992b9c7ef [file] [log] [blame]
ZhiQiang Fan39f97222013-09-20 04:49:44 +08001# Copyright 2012 OpenStack Foundation
Jay Pipes051075a2012-04-28 17:39:37 -04002# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
Alexander Gubanov509e2842015-06-09 15:29:51 +030016import json
Alexander Gubanovdac47382016-06-24 16:49:36 +030017import re
Alexander Gubanov509e2842015-06-09 15:29:51 +030018
Doug Hellmann583ce2c2015-03-11 14:55:46 +000019from oslo_log import log as logging
20
Matthew Treinish6c072292014-01-29 19:15:52 +000021from tempest import config
Yaroslav Lobankov117a48f2015-08-11 11:40:44 +030022from tempest import exceptions
Sean Dague6dbc6da2013-05-08 17:49:46 -040023from tempest.scenario import manager
Masayuki Igawa4ded9f02014-02-17 15:05:59 +090024from tempest import test
Jay Pipes051075a2012-04-28 17:39:37 -040025
Matthew Treinish6c072292014-01-29 19:15:52 +000026CONF = config.CONF
27
Jay Pipes051075a2012-04-28 17:39:37 -040028LOG = logging.getLogger(__name__)
29
30
Ghanshyam5a305c42014-08-27 14:24:58 +090031class TestServerBasicOps(manager.ScenarioTest):
Jay Pipes051075a2012-04-28 17:39:37 -040032
Ken'ichi Ohmichic4e4f1c2015-11-17 08:16:12 +000033 """The test suite for server basic operations
Jay Pipes051075a2012-04-28 17:39:37 -040034
Ken'ichi Ohmichic4e4f1c2015-11-17 08:16:12 +000035 This smoke test case follows this basic set of operations:
Jay Pipes051075a2012-04-28 17:39:37 -040036 * Create a keypair for use in launching an instance
37 * Create a security group to control network access in instance
38 * Add simple permissive rules to the security group
39 * Launch an instance
ghanshyam416c94c2014-10-02 13:47:25 +090040 * Perform ssh to instance
YAMAMOTO Takashi1f62af22015-06-16 03:29:50 +090041 * Verify metadata service
Alexander Gubanov509e2842015-06-09 15:29:51 +030042 * Verify metadata on config_drive
Jay Pipes051075a2012-04-28 17:39:37 -040043 * Terminate the instance
44 """
45
Andrea Frittolif5da28b2013-12-06 07:08:07 +000046 def setUp(self):
47 super(TestServerBasicOps, self).setUp()
Matthew Treinishf2c45012016-06-22 21:13:42 -040048 self.image_ref = CONF.compute.image_ref
49 self.flavor_ref = CONF.compute.flavor_ref
50 self.run_ssh = CONF.validation.run_validation
51 self.ssh_user = CONF.validation.image_ssh_user
Andrea Frittolif5da28b2013-12-06 07:08:07 +000052
Jordan Pittierbbb17122016-01-26 17:10:55 +010053 def verify_ssh(self, keypair):
Andrea Frittolif5da28b2013-12-06 07:08:07 +000054 if self.run_ssh:
55 # Obtain a floating IP
Alexander Gubanov2388e2a2015-11-07 11:16:28 +020056 self.fip = self.create_floating_ip(self.instance)['ip']
Andrea Frittolif5da28b2013-12-06 07:08:07 +000057 # Check ssh
YAMAMOTO Takashi1f62af22015-06-16 03:29:50 +090058 self.ssh_client = self.get_remote_client(
Sean Dague20e98612016-01-06 14:33:28 -050059 ip_address=self.fip,
YAMAMOTO Takashi42189bf2016-06-24 16:02:53 +090060 username=self.ssh_user,
Jordan Pittierbbb17122016-01-26 17:10:55 +010061 private_key=keypair['private_key'])
Andrea Frittolif5da28b2013-12-06 07:08:07 +000062
YAMAMOTO Takashi1f62af22015-06-16 03:29:50 +090063 def verify_metadata(self):
64 if self.run_ssh and CONF.compute_feature_enabled.metadata_service:
65 # Verify metadata service
Yaroslav Lobankov117a48f2015-08-11 11:40:44 +030066 md_url = 'http://169.254.169.254/latest/meta-data/public-ipv4'
67
68 def exec_cmd_and_verify_output():
69 cmd = 'curl ' + md_url
Yaroslav Lobankov117a48f2015-08-11 11:40:44 +030070 result = self.ssh_client.exec_command(cmd)
71 if result:
72 msg = ('Failed while verifying metadata on server. Result '
Alexander Gubanov2388e2a2015-11-07 11:16:28 +020073 'of command "%s" is NOT "%s".' % (cmd, self.fip))
74 self.assertEqual(self.fip, result, msg)
Yaroslav Lobankov117a48f2015-08-11 11:40:44 +030075 return 'Verification is successful!'
76
77 if not test.call_until_true(exec_cmd_and_verify_output,
78 CONF.compute.build_timeout,
79 CONF.compute.build_interval):
80 raise exceptions.TimeoutException('Timed out while waiting to '
81 'verify metadata on server. '
82 '%s is empty.' % md_url)
YAMAMOTO Takashi1f62af22015-06-16 03:29:50 +090083
Alexander Gubanov509e2842015-06-09 15:29:51 +030084 def verify_metadata_on_config_drive(self):
85 if self.run_ssh and CONF.compute_feature_enabled.config_drive:
86 # Verify metadata on config_drive
Alexander Gubanovdac47382016-06-24 16:49:36 +030087 cmd_blkid = 'blkid | grep -i config-2'
88 result = self.ssh_client.exec_command(cmd_blkid)
89 dev_name = re.match('([^:]+)', result).group()
Alexander Gubanov509e2842015-06-09 15:29:51 +030090 self.ssh_client.exec_command('sudo mount %s /mnt' % dev_name)
91 cmd_md = 'sudo cat /mnt/openstack/latest/meta_data.json'
92 result = self.ssh_client.exec_command(cmd_md)
93 self.ssh_client.exec_command('sudo umount /mnt')
94 result = json.loads(result)
95 self.assertIn('meta', result)
96 msg = ('Failed while verifying metadata on config_drive on server.'
97 ' Result of command "%s" is NOT "%s".' % (cmd_md, self.md))
98 self.assertEqual(self.md, result['meta'], msg)
99
Chris Hoge7579c1a2015-02-26 14:12:15 -0800100 @test.idempotent_id('7fff3fb3-91d8-4fd0-bd7d-0204f1f180ba')
Sean Dague3c634d12015-04-27 12:09:19 -0400101 @test.attr(type='smoke')
Masayuki Igawa4ded9f02014-02-17 15:05:59 +0900102 @test.services('compute', 'network')
Tong Liu9bee3b92016-03-23 23:53:43 +0000103 def test_server_basic_ops(self):
Jordan Pittierbbb17122016-01-26 17:10:55 +0100104 keypair = self.create_keypair()
Yair Fried1fc32a12014-08-04 09:11:30 +0300105 self.security_group = self._create_security_group()
lanoux5fc14522015-09-21 08:17:35 +0000106 security_groups = [{'name': self.security_group['name']}]
107 self.md = {'meta1': 'data1', 'meta2': 'data2', 'metaN': 'dataN'}
108 self.instance = self.create_server(
109 image_id=self.image_ref,
110 flavor=self.flavor_ref,
Jordan Pittierbbb17122016-01-26 17:10:55 +0100111 key_name=keypair['name'],
lanoux5fc14522015-09-21 08:17:35 +0000112 security_groups=security_groups,
113 config_drive=CONF.compute_feature_enabled.config_drive,
114 metadata=self.md,
115 wait_until='ACTIVE')
Jordan Pittierbbb17122016-01-26 17:10:55 +0100116 self.verify_ssh(keypair)
YAMAMOTO Takashi1f62af22015-06-16 03:29:50 +0900117 self.verify_metadata()
Alexander Gubanov509e2842015-06-09 15:29:51 +0300118 self.verify_metadata_on_config_drive()
Ghanshyam5a305c42014-08-27 14:24:58 +0900119 self.servers_client.delete_server(self.instance['id'])