12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # -*- coding: utf-8 -*-
- """
- :codeauthor: Nicole Thomas <nicole@saltstack.com>
- :codeauthor: Tomas Sirny <tsirny@gmail.com>
- """
- # 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 GCETest(CloudTest):
- """
- Integration tests for the GCE cloud provider in Salt-Cloud
- """
- PROVIDER = "gce"
- REQUIRED_PROVIDER_CONFIG_ITEMS = (
- "project",
- "service_account_email_address",
- "service_account_private_key",
- )
- def test_instance(self):
- """
- Tests creating and deleting an instance on GCE
- """
- # create the instance
- ret_str = self.run_cloud(
- "-p gce-test {0}".format(self.instance_name), timeout=TIMEOUT
- )
- # check if instance returned with salt installed
- self.assertInstanceExists(ret_str)
- self.assertDestroyInstance()
- def test_instance_extra(self):
- """
- Tests creating and deleting an instance on GCE
- """
- # create the instance
- ret_str = self.run_cloud(
- "-p gce-test-extra {0}".format(self.instance_name), timeout=TIMEOUT
- )
- # check if instance returned with salt installed
- self.assertInstanceExists(ret_str)
- self.assertDestroyInstance()
|