Initial checkin of Stress Test for nova.

Change-Id: I1c4c656e3b8ec715524d369c226ec122920f89fb
diff --git a/stress/tools/nova_destroy_all.py b/stress/tools/nova_destroy_all.py
new file mode 100755
index 0000000..1fa0487
--- /dev/null
+++ b/stress/tools/nova_destroy_all.py
@@ -0,0 +1,53 @@
+#!/usr/bin/env python

+

+# vim: tabstop=4 shiftwidth=4 softtabstop=4

+

+# Copyright 2011 Quanta Research Cambridge, Inc.

+#

+#    Licensed under the Apache License, Version 2.0 (the "License");

+#    you may not use this file except in compliance with the License.

+#    You may obtain a copy of the License at

+#

+#        http://www.apache.org/licenses/LICENSE-2.0

+#

+#    Unless required by applicable law or agreed to in writing, software

+#    distributed under the License is distributed on an "AS IS" BASIS,

+#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

+#    See the License for the specific language governing permissions and

+#    limitations under the License.

+

+from novaclient.v1_1 import client

+import tempest.config

+

+# get the environment variables for credentials

+identity = tempest.config.TempestConfig().identity

+

+nt = client.Client(identity.username, identity.password,

+                   identity.tenant_name, identity.auth_url)

+

+flavor_list = nt.flavors.list()

+server_list = nt.servers.list()

+images_list = nt.images.list()

+keypairs_list = nt.keypairs.list()

+floating_ips_list = nt.floating_ips.list()

+

+print "total servers: %3d, total flavors: %3d, total images: %3d," % \

+    (len(server_list),

+     len(flavor_list),

+     len(images_list)),

+

+print "total keypairs: %3d, total floating ips: %3d" % \

+    (len(keypairs_list),

+     len(floating_ips_list))

+

+print "deleting all servers"

+for s in server_list:

+    s.delete()

+

+print "deleting all keypairs"

+for s in keypairs_list:

+    s.delete()

+

+print "deleting all floating_ips"

+for s in floating_ips_list:

+    s.delete()