mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
108 lines
3.1 KiB
Python
108 lines
3.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Nicole Thomas <nicole@saltstack.com>`
|
|
'''
|
|
|
|
# Import Python Libs
|
|
import os
|
|
|
|
# Import Salt Testing Libs
|
|
from salttesting import skipIf
|
|
from salttesting.helpers import ensure_in_syspath, expensiveTest
|
|
|
|
ensure_in_syspath('../../../')
|
|
|
|
# Import Salt Libs
|
|
import integration
|
|
from salt.config import cloud_providers_config
|
|
|
|
# Import Third-Party Libs
|
|
try:
|
|
import libcloud # pylint: disable=W0611
|
|
HAS_LIBCLOUD = True
|
|
except ImportError:
|
|
HAS_LIBCLOUD = False
|
|
|
|
|
|
@skipIf(HAS_LIBCLOUD is False, 'salt-cloud requires >= libcloud 0.13.2')
|
|
class LinodeTest(integration.ShellCase):
|
|
'''
|
|
Integration tests for the Linode cloud provider in Salt-Cloud
|
|
'''
|
|
|
|
@expensiveTest
|
|
def setUp(self):
|
|
'''
|
|
Sets up the test requirements
|
|
'''
|
|
super(LinodeTest, self).setUp()
|
|
|
|
# check if appropriate cloud provider and profile files are present
|
|
profile_str = 'linode-config:'
|
|
provider = 'linode'
|
|
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)
|
|
)
|
|
|
|
# check if apikey and password are present
|
|
path = os.path.join(integration.FILES,
|
|
'conf',
|
|
'cloud.providers.d',
|
|
provider + '.conf')
|
|
config = cloud_providers_config(path)
|
|
api = config['linode-config']['linode']['apikey']
|
|
password = config['linode-config']['linode']['password']
|
|
if api == '' or password == '':
|
|
self.skipTest(
|
|
'An api key and password must be provided to run these tests. Check '
|
|
'tests/integration/files/conf/cloud.providers.d/{0}.conf'.format(
|
|
provider
|
|
)
|
|
)
|
|
|
|
def test_instance(self):
|
|
'''
|
|
Test creating an instance on Linode
|
|
'''
|
|
name = 'linode-testing'
|
|
|
|
# create the instance
|
|
instance = self.run_cloud('-p linode-test {0}'.format(name))
|
|
ret_str = ' {0}'.format(name)
|
|
|
|
# check if instance with salt installed returned
|
|
try:
|
|
self.assertIn(ret_str, instance)
|
|
except AssertionError:
|
|
self.run_cloud('-d {0} --assume-yes'.format(name))
|
|
raise
|
|
|
|
# delete the instance
|
|
delete = self.run_cloud('-d {0} --assume-yes'.format(name))
|
|
ret_str = ' True'
|
|
try:
|
|
self.assertIn(ret_str, delete)
|
|
except AssertionError:
|
|
raise
|
|
|
|
def tearDown(self):
|
|
'''
|
|
Clean up after tests
|
|
'''
|
|
name = 'linode-testing'
|
|
query = self.run_cloud('--query')
|
|
ret_str = ' {0}:'.format(name)
|
|
|
|
# if test instance is still present, delete it
|
|
if ret_str in query:
|
|
self.run_cloud('-d {0} --assume-yes'.format(name))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(LinodeTest)
|