Merge "refactor push_result_to_db print thing"
[functest.git] / utils / openstack_clean.py
old mode 100644 (file)
new mode 100755 (executable)
index 3eb39a2..8aba763
 # http://www.apache.org/licenses/LICENSE-2.0
 #
 
-""" logging configuration """
-
 import time
-
-from cinderclient import client as cinderclient
 import functest.utils.functest_logger as ft_logger
 import functest.utils.functest_utils as ft_utils
 import functest.utils.openstack_utils as os_utils
-from keystoneclient.v2_0 import client as keystoneclient
-from neutronclient.v2_0 import client as neutronclient
-from novaclient import client as novaclient
 import yaml
 
 
@@ -41,11 +34,11 @@ OS_SNAPSHOT_FILE = ft_utils.get_parameter_from_yaml(
 
 
 def separator():
-    logger.info("-------------------------------------------")
+    logger.debug("-------------------------------------------")
 
 
 def remove_instances(nova_client, default_instances):
-    logger.info("Removing Nova instances...")
+    logger.debug("Removing Nova instances...")
     instances = os_utils.get_instances(nova_client)
     if instances is None or len(instances) == 0:
         logger.debug("No instances found.")
@@ -55,7 +48,8 @@ def remove_instances(nova_client, default_instances):
         instance_name = getattr(instance, 'name')
         instance_id = getattr(instance, 'id')
         logger.debug("'%s', ID=%s " % (instance_name, instance_id))
-        if instance_id not in default_instances:
+        if (instance_id not in default_instances and
+                instance_name not in default_instances.values()):
             logger.debug("Removing instance '%s' ..." % instance_id)
             if os_utils.delete_instance(nova_client, instance_id):
                 logger.debug("  > Request sent.")
@@ -80,7 +74,7 @@ def remove_instances(nova_client, default_instances):
 
 
 def remove_images(nova_client, default_images):
-    logger.info("Removing Glance images...")
+    logger.debug("Removing Glance images...")
     images = os_utils.get_images(nova_client)
     if images is None or len(images) == 0:
         logger.debug("No images found.")
@@ -90,7 +84,8 @@ def remove_images(nova_client, default_images):
         image_name = getattr(image, 'name')
         image_id = getattr(image, 'id')
         logger.debug("'%s', ID=%s " % (image_name, image_id))
-        if image_id not in default_images:
+        if (image_id not in default_images and
+                image_name not in default_images.values()):
             logger.debug("Removing image '%s', ID=%s ..."
                          % (image_name, image_id))
             if os_utils.delete_glance_image(nova_client, image_id):
@@ -104,7 +99,7 @@ def remove_images(nova_client, default_images):
 
 
 def remove_volumes(cinder_client, default_volumes):
-    logger.info("Removing Cinder volumes...")
+    logger.debug("Removing Cinder volumes...")
     volumes = os_utils.get_volumes(cinder_client)
     if volumes is None or len(volumes) == 0:
         logger.debug("No volumes found.")
@@ -114,7 +109,8 @@ def remove_volumes(cinder_client, default_volumes):
         volume_id = getattr(volume, 'id')
         volume_name = getattr(volume, 'display_name')
         logger.debug("'%s', ID=%s " % (volume_name, volume_id))
-        if volume_id not in default_volumes:
+        if (volume_id not in default_volumes and
+                volume_name not in default_volumes.values()):
             logger.debug("Removing cinder volume %s ..." % volume_id)
             if os_utils.delete_volume(cinder_client, volume_id):
                 logger.debug("  > Done!")
@@ -133,7 +129,7 @@ def remove_volumes(cinder_client, default_volumes):
 
 
 def remove_floatingips(nova_client, default_floatingips):
-    logger.info("Removing floating IPs...")
+    logger.debug("Removing floating IPs...")
     floatingips = os_utils.get_floating_ips(nova_client)
     if floatingips is None or len(floatingips) == 0:
         logger.debug("No floating IPs found.")
@@ -145,7 +141,8 @@ def remove_floatingips(nova_client, default_floatingips):
         fip_id = getattr(fip, 'id')
         fip_ip = getattr(fip, 'ip')
         logger.debug("'%s', ID=%s " % (fip_ip, fip_id))
-        if fip_id not in default_floatingips:
+        if (fip_id not in default_floatingips and
+                fip_ip not in default_floatingips.values()):
             logger.debug("Removing floating IP %s ..." % fip_id)
             if os_utils.delete_floating_ip(nova_client, fip_id):
                 logger.debug("  > Done!")
@@ -169,7 +166,7 @@ def remove_floatingips(nova_client, default_floatingips):
 
 
 def remove_networks(neutron_client, default_networks, default_routers):
-    logger.info("Removing Neutron objects")
+    logger.debug("Removing Neutron objects")
     network_ids = []
     networks = os_utils.get_network_list(neutron_client)
     if networks is None:
@@ -180,7 +177,8 @@ def remove_networks(neutron_client, default_networks, default_routers):
             net_id = network['id']
             net_name = network['name']
             logger.debug(" '%s', ID=%s " % (net_name, net_id))
-            if net_id in default_networks:
+            if (net_id in default_networks and
+                    net_name in default_networks.values()):
                 logger.debug("   > this is a default network and will "
                              "NOT be deleted.")
             elif network['router:external'] is True:
@@ -222,8 +220,8 @@ def remove_ports(neutron_client, ports, network_ids):
             try:
                 subnet_id = port['fixed_ips'][0]['subnet_id']
             except:
-                logger.info("  > WARNING: Port %s does not contain 'fixed_ips'"
-                            % port_id)
+                logger.debug("  > WARNING: Port %s does not contain fixed_ips"
+                             % port_id)
                 print port
             router_id = port['device_id']
             if len(port['fixed_ips']) == 0 and router_id == '':
@@ -267,7 +265,8 @@ def remove_routers(neutron_client, routers, default_routers):
     for router in routers:
         router_id = router['id']
         router_name = router['name']
-        if router_id not in default_routers:
+        if (router_id not in default_routers and
+                router_name not in default_routers.values()):
             logger.debug("Checking '%s' with ID=(%s) ..." % (router_name,
                                                              router_id))
             if router['external_gateway_info'] is not None:
@@ -291,7 +290,7 @@ def remove_routers(neutron_client, routers, default_routers):
 
 
 def remove_security_groups(neutron_client, default_security_groups):
-    logger.info("Removing Security groups...")
+    logger.debug("Removing Security groups...")
     secgroups = os_utils.get_security_groups(neutron_client)
     if secgroups is None or len(secgroups) == 0:
         logger.debug("No security groups found.")
@@ -314,7 +313,7 @@ def remove_security_groups(neutron_client, default_security_groups):
 
 
 def remove_users(keystone_client, default_users):
-    logger.info("Removing Users...")
+    logger.debug("Removing Users...")
     users = os_utils.get_users(keystone_client)
     if users is None:
         logger.debug("There are no users in the deployment. ")
@@ -324,7 +323,8 @@ def remove_users(keystone_client, default_users):
         user_name = getattr(user, 'name')
         user_id = getattr(user, 'id')
         logger.debug("'%s', ID=%s " % (user_name, user_id))
-        if user_id not in default_users:
+        if (user_id not in default_users and
+                user_name not in default_users.values()):
             logger.debug(" Removing '%s'..." % user_name)
             if os_utils.delete_user(keystone_client, user_id):
                 logger.debug("  > Done!")
@@ -337,7 +337,7 @@ def remove_users(keystone_client, default_users):
 
 
 def remove_tenants(keystone_client, default_tenants):
-    logger.info("Removing Tenants...")
+    logger.debug("Removing Tenants...")
     tenants = os_utils.get_tenants(keystone_client)
     if tenants is None:
         logger.debug("There are no tenants in the deployment. ")
@@ -347,7 +347,8 @@ def remove_tenants(keystone_client, default_tenants):
         tenant_name = getattr(tenant, 'name')
         tenant_id = getattr(tenant, 'id')
         logger.debug("'%s', ID=%s " % (tenant_name, tenant_id))
-        if tenant_id not in default_tenants:
+        if (tenant_id not in default_tenants and
+                tenant_name not in default_tenants.values()):
             logger.debug(" Removing '%s'..." % tenant_name)
             if os_utils.delete_tenant(keystone_client, tenant_id):
                 logger.debug("  > Done!")
@@ -360,9 +361,12 @@ def remove_tenants(keystone_client, default_tenants):
 
 
 def main():
-    logger.info("+++++++++++++++++++++++++++++++")
     logger.info("Cleaning OpenStack resources...")
-    logger.info("+++++++++++++++++++++++++++++++")
+
+    nova_client = os_utils.get_nova_client()
+    neutron_client = os_utils.get_neutron_client()
+    keystone_client = os_utils.get_keystone_client()
+    cinder_client = os_utils.get_cinder_client()
 
     try:
         with open(OS_SNAPSHOT_FILE) as f:
@@ -382,23 +386,6 @@ def main():
     default_users = snapshot_yaml.get('users')
     default_tenants = snapshot_yaml.get('tenants')
 
-    creds_nova = os_utils.get_credentials("nova")
-    nova_client = novaclient.Client('2', **creds_nova)
-
-    creds_neutron = os_utils.get_credentials("neutron")
-    neutron_client = neutronclient.Client(**creds_neutron)
-
-    creds_keystone = os_utils.get_credentials("keystone")
-    keystone_client = keystoneclient.Client(**creds_keystone)
-
-    creds_cinder = os_utils.get_credentials("cinder")
-    # cinder_client = cinderclient.Client(**creds_cinder)
-    cinder_client = cinderclient.Client('1', creds_cinder['username'],
-                                        creds_cinder['api_key'],
-                                        creds_cinder['project_id'],
-                                        creds_cinder['auth_url'],
-                                        service_type="volume")
-
     if not os_utils.check_credentials():
         logger.error("Please source the openrc credentials and run "
                      "the script again.")