mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
138 lines
4.5 KiB
Python
138 lines
4.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
Integration tests for the Dimension Data cloud provider
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
import os
|
|
import random
|
|
import string
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.case import ShellCase
|
|
from tests.support.paths import FILES
|
|
from tests.support.helpers import expensiveTest
|
|
|
|
# Import Salt Libs
|
|
from salt.config import cloud_providers_config
|
|
from salt.ext.six.moves import range # pylint: disable=import-error,redefined-builtin
|
|
|
|
|
|
def _random_name(size=6):
|
|
'''
|
|
Generates a random cloud instance name
|
|
'''
|
|
return 'cloud-test-' + ''.join(
|
|
random.choice(string.ascii_lowercase + string.digits)
|
|
for x in range(size)
|
|
)
|
|
|
|
# Create the cloud instance name to be used throughout the tests
|
|
INSTANCE_NAME = _random_name()
|
|
PROVIDER_NAME = 'dimensiondata'
|
|
|
|
|
|
class DimensionDataTest(ShellCase):
|
|
'''
|
|
Integration tests for the Dimension Data cloud provider in Salt-Cloud
|
|
'''
|
|
|
|
@expensiveTest
|
|
def setUp(self):
|
|
'''
|
|
Sets up the test requirements
|
|
'''
|
|
super(DimensionDataTest, self).setUp()
|
|
|
|
# check if appropriate cloud provider and profile files are present
|
|
profile_str = 'dimensiondata-config'
|
|
providers = self.run_cloud('--list-providers')
|
|
if profile_str + ':' not in providers:
|
|
self.skipTest(
|
|
'Configuration file for {0} was not found. Check {0}.conf files '
|
|
'in tests/integration/files/conf/cloud.*.d/ to run these tests.'
|
|
.format(PROVIDER_NAME)
|
|
)
|
|
|
|
# check if user_id, key, and region are present
|
|
config = cloud_providers_config(
|
|
os.path.join(
|
|
FILES,
|
|
'conf',
|
|
'cloud.providers.d',
|
|
PROVIDER_NAME + '.conf'
|
|
)
|
|
)
|
|
|
|
user_id = config[profile_str][PROVIDER_NAME]['user_id']
|
|
key = config[profile_str][PROVIDER_NAME]['key']
|
|
region = config[profile_str][PROVIDER_NAME]['region']
|
|
|
|
if user_id == '' or key == '' or region == '':
|
|
self.skipTest(
|
|
'A user Id, password, and a region '
|
|
'must be provided to run these tests. Check '
|
|
'tests/integration/files/conf/cloud.providers.d/{0}.conf'
|
|
.format(PROVIDER_NAME)
|
|
)
|
|
|
|
def test_list_images(self):
|
|
'''
|
|
Tests the return of running the --list-images command for the dimensiondata cloud provider
|
|
'''
|
|
image_list = self.run_cloud('--list-images {0}'.format(PROVIDER_NAME))
|
|
self.assertIn(
|
|
'Ubuntu 14.04 2 CPU',
|
|
[i.strip() for i in image_list]
|
|
)
|
|
|
|
def test_list_locations(self):
|
|
'''
|
|
Tests the return of running the --list-locations command for the dimensiondata cloud provider
|
|
'''
|
|
_list_locations = self.run_cloud('--list-locations {0}'.format(PROVIDER_NAME))
|
|
self.assertIn(
|
|
'Australia - Melbourne MCP2',
|
|
[i.strip() for i in _list_locations]
|
|
)
|
|
|
|
def test_list_sizes(self):
|
|
'''
|
|
Tests the return of running the --list-sizes command for the dimensiondata cloud provider
|
|
'''
|
|
_list_sizes = self.run_cloud('--list-sizes {0}'.format(PROVIDER_NAME))
|
|
self.assertIn(
|
|
'default',
|
|
[i.strip() for i in _list_sizes]
|
|
)
|
|
|
|
def test_instance(self):
|
|
'''
|
|
Test creating an instance on Dimension Data's cloud
|
|
'''
|
|
# check if instance with salt installed returned
|
|
try:
|
|
self.assertIn(
|
|
INSTANCE_NAME,
|
|
[i.strip() for i in self.run_cloud('-p dimensiondata-test {0}'.format(INSTANCE_NAME), timeout=500)]
|
|
)
|
|
except AssertionError:
|
|
self.run_cloud('-d {0} --assume-yes'.format(INSTANCE_NAME), timeout=500)
|
|
raise
|
|
|
|
# delete the instance
|
|
try:
|
|
self.assertIn(
|
|
'True',
|
|
[i.strip() for i in self.run_cloud('-d {0} --assume-yes'.format(INSTANCE_NAME), timeout=500)]
|
|
)
|
|
except AssertionError:
|
|
raise
|
|
|
|
# Final clean-up of created instance, in case something went wrong.
|
|
# This was originally in a tearDown function, but that didn't make sense
|
|
# To run this for each test when not all tests create instances.
|
|
if INSTANCE_NAME in [i.strip() for i in self.run_cloud('--query')]:
|
|
self.run_cloud('-d {0} --assume-yes'.format(INSTANCE_NAME), timeout=500)
|