Move everything under the kong/ namespace.
diff --git a/kong/tests/999_test_cleanup.py b/kong/tests/999_test_cleanup.py
new file mode 100644
index 0000000..9e435da
--- /dev/null
+++ b/kong/tests/999_test_cleanup.py
@@ -0,0 +1,91 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2011 OpenStack, LLC
+# All Rights Reserved.
+#
+# 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.
+
+"""Functional test case that utilizes cURL against the API server"""
+
+import httplib2
+
+from pprint import pprint
+
+from kong import tests
+
+
+class TestCleanUp(tests.FunctionalTest):
+ def test_995_delete_server(self):
+ path = "http://%s:%s/%s/servers/%s" % (self.nova['host'],
+ self.nova['port'],
+ self.nova['ver'],
+ self.nova['single_server_id'])
+ http = httplib2.Http()
+ headers = {'X-Auth-User': '%s' % (self.nova['user']),
+ 'X-Auth-Token': '%s' % (self.nova['X-Auth-Token'])}
+ response, content = http.request(path, 'DELETE', headers=headers)
+ self.assertEqual(response.status, 202)
+ test_995_delete_server.tags = ['nova']
+
+ def test_996_delete_multi_server(self):
+ print "Deleting %s instances." % (len(self.nova['multi_server']))
+ for k, v in self.nova['multi_server'].iteritems():
+ path = "http://%s:%s/%s/servers/%s" % (self.nova['host'],
+ self.nova['port'],
+ self.nova['ver'],
+ v)
+ http = httplib2.Http()
+ headers = {'X-Auth-User': '%s' % (self.nova['user']),
+ 'X-Auth-Token': '%s' % (self.nova['X-Auth-Token'])}
+ response, content = http.request(path, 'DELETE', headers=headers)
+ self.assertEqual(204, response.status)
+ test_996_delete_multi_server.tags = ['nova']
+
+ def test_997_delete_kernel_from_glance(self):
+ if 'apiver' in self.glance:
+ path = "http://%s:%s/%s/images/%s" % (self.glance['host'],
+ self.glance['port'], self.glance['apiver'],
+ self.glance['kernel_id'])
+ else:
+ path = "http://%s:%s/images/%s" % (self.glance['host'],
+ self.glance['port'], self.glance['kernel_id'])
+ http = httplib2.Http()
+ response, content = http.request(path, 'DELETE')
+ self.assertEqual(200, response.status)
+ test_997_delete_kernel_from_glance.tags = ['glance', 'nova']
+
+ def test_998_delete_initrd_from_glance(self):
+ if 'apiver' in self.glance:
+ path = "http://%s:%s/%s/images/%s" % (self.glance['host'],
+ self.glance['port'], self.glance['apiver'],
+ self.glance['ramdisk_id'])
+ else:
+ path = "http://%s:%s/images/%s" % (self.glance['host'],
+ self.glance['port'], self.glance['ramdisk_id'])
+ http = httplib2.Http()
+ response, content = http.request(path, 'DELETE')
+ self.assertEqual(200, response.status)
+ test_998_delete_initrd_from_glance.tags = ['glance', 'nova']
+
+ def test_999_delete_image_from_glance(self):
+ if 'apiver' in self.glance:
+ path = "http://%s:%s/%s/images/%s" % (self.glance['host'],
+ self.glance['port'], self.glance['apiver'],
+ self.glance['image_id'])
+ else:
+ path = "http://%s:%s/images/%s" % (self.glance['host'],
+ self.glance['port'], self.glance['image_id'])
+ http = httplib2.Http()
+ response, content = http.request(path, 'DELETE')
+ self.assertEqual(200, response.status)
+ test_999_delete_image_from_glance.tags = ['glance', 'nova']