Improvement of debug messages to the user 01/11501/1
authoruser <user@TRAFCLASS-PACKET1.fuel.local>
Tue, 15 Mar 2016 12:16:39 +0000 (08:16 -0400)
committerJörgen Karlsson <jorgen.w.karlsson@ericsson.com>
Tue, 22 Mar 2016 14:07:17 +0000 (14:07 +0000)
Change-Id: I09fa9cd865021701f53e0df2a2cd79d60ea04d6c
Signed-off-by: user <user@TRAFCLASS-PACKET1.fuel.local>
(cherry picked from commit 6a4bd2c4bdce07b945ab61e1151e67da99be7489)

yardstick/vTC/apexlake/experimental_framework/deployment_unit.py
yardstick/vTC/apexlake/experimental_framework/heat_manager.py
yardstick/vTC/apexlake/tests/deployment_unit_test.py
yardstick/vTC/apexlake/tests/heat_manager_test.py

index 596ee7a..22fec13 100644 (file)
@@ -50,7 +50,8 @@ class DeploymentUnit:
                 time.sleep(5)
                 status = self.heat_manager.check_stack_status(stack_name)
             return True
-        except:
+        except Exception as e:
+            common.LOG.debug(e.message)
             return False
 
     def destroy_all_deployed_stacks(self):
@@ -80,14 +81,16 @@ class DeploymentUnit:
             self.heat_manager.create_stack(template_file, stack_name,
                                            parameters)
             deployed = True
-        except:
+        except Exception as e:
+            common.LOG.debug(e.message)
             deployed = False
 
         if not deployed and 'COMPLETE' in \
                 self.heat_manager.check_stack_status(stack_name):
             try:
                 self.destroy_heat_template(stack_name)
-            except:
+            except Exception as e:
+                common.LOG.debug(e.message)
                 pass
 
         status = self.heat_manager.check_stack_status(stack_name)
index ab3df5c..7400ebd 100644 (file)
@@ -97,6 +97,7 @@ class HeatManager:
                 if stack.stack_name == stack_name:
                     self.heat.stacks.delete(stack.id)
                     return True
-        except:
+        except Exception as e:
+            common.LOG.debug(e.message)
             pass
         return False
index 8117167..cec834e 100644 (file)
 # limitations under the License.
 
 import unittest
+import logging
 import mock
 import experimental_framework.deployment_unit as mut
+import experimental_framework.common as common
 
 __author__ = 'vmriccox'
 
@@ -166,6 +168,7 @@ class TestDeploymentUnit(unittest.TestCase):
         template_file = ''
         stack_name = ''
         parameters = ''
+        common.LOG = logging.getLogger()
         output = du.deploy_heat_template(template_file, stack_name,
                                          parameters, 0)
         self.assertEqual(output, True)
@@ -180,6 +183,7 @@ class TestDeploymentUnit(unittest.TestCase):
         template_file = ''
         stack_name = ''
         parameters = ''
+        common.LOG = logging.getLogger()
         output = du.deploy_heat_template(template_file, stack_name,
                                          parameters, 0)
         self.assertEqual(output, True)
@@ -197,6 +201,7 @@ class TestDeploymentUnit(unittest.TestCase):
         template_file = ''
         stack_name = ''
         parameters = ''
+        common.LOG = logging.getLogger()
         output = du.deploy_heat_template(template_file, stack_name,
                                          parameters, 0)
         self.assertEqual(output, True)
index f1d3d00..0fe8554 100644 (file)
@@ -13,6 +13,9 @@
 # limitations under the License.
 
 import unittest
+import logging
+import experimental_framework.common as common
+
 from experimental_framework import heat_manager
 import mock
 
@@ -172,6 +175,7 @@ class TestHeatManager_2(unittest.TestCase):
         pass
 
     def test_delete_stack_for_success_2(self):
+        common.LOG = logging.getLogger()
         self.assertFalse(self.heat_manager.delete_stack('stack_1'))