123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # -*- coding: utf-8 -*-
- """
- Integration tests for the Dimension Data cloud provider
- """
- # Import Python Libs
- from __future__ import absolute_import, print_function, unicode_literals
- # Import Salt Testing Libs
- from tests.integration.cloud.helpers.cloud_test_base import TIMEOUT, CloudTest
- class DimensionDataTest(CloudTest):
- """
- Integration tests for the Dimension Data cloud provider in Salt-Cloud
- """
- PROVIDER = "dimensiondata"
- REQUIRED_PROVIDER_CONFIG_ITEMS = ("key", "region", "user_id")
- 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(self.PROVIDER))
- 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(self.PROVIDER))
- 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(self.PROVIDER))
- 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
- ret_val = self.run_cloud(
- "-p dimensiondata-test {0}".format(self.instance_name), timeout=TIMEOUT
- )
- self.assertInstanceExists(ret_val)
- self.assertDestroyInstance()
|