summaryrefslogtreecommitdiffstats
path: root/README.auth-server
diff options
context:
space:
mode:
authorjabdul <abdulkader.j@hcl.com>2011-05-11 00:20:48 +0530
committerjabdul <abdulkader.j@hcl.com>2011-05-11 00:20:48 +0530
commit91c82cfcefd8d0a7719dfbcca6c3e50ec438d074 (patch)
tree1adfc78e9bdbc6a6fb52cab1931114d66d96745a /README.auth-server
parent5aa65ad3b71043ae9b9b4bfbc568369d0266fe6b (diff)
parent3b1cdf2ab31e47b020ffa9af36f9593290b043f8 (diff)
Merge branch 'master' of https://git.hcleai.com/keystone
Conflicts: test/unit/test_identity.py
Diffstat (limited to 'README.auth-server')
-rw-r--r--README.auth-server62
1 files changed, 0 insertions, 62 deletions
diff --git a/README.auth-server b/README.auth-server
deleted file mode 100644
index dbe7d66a..00000000
--- a/README.auth-server
+++ /dev/null
@@ -1,62 +0,0 @@
-Auth Server is the Keystone which replace bottle totally with
-eventlet. A copy of the template classes in bottle is copied and
-placed is common is template.py. This needs to be replaced with a
-perhaps moe widely used templating module.
-
-In addition, daemonization code is copied from glance project and added.
-
-
-Starting and Stopping Auth Server
----------------------------------
-
-From the topdir
-
-bin/keystone-control --config-file etc/keystone.conf --pid-file=pidfile auth <start|stop|restart>
-
-The "start" command invokes bin/keystone-auth. During development you can also run
-
-bin/keystone-auth etc/keystone.conf
-
-
-The first time you run keystone-auth, a sqlite database keystone.db is created in keystone directory. After it is created run
-
-sqlite3 keystone/keystone.db < test/test_setup.sql
-
-
-Running the Tests
------------------
-
-cd test/unit
-
-grep class test_identity.py lists all the tests in the file
-
-Right now you get
-
-
-class identity_test(unittest.TestCase):
-class authorize_test(identity_test):
-class validate_token(authorize_test):
-class tenant_test(unittest.TestCase):
-class create_tenant_test(tenant_test):
-class get_tenants_test(tenant_test):
-class get_tenant_test(tenant_test):
-class update_tenant_test(tenant_test):
-class delete_tenant_test(tenant_test):
-class tenant_group_test(unittest.TestCase):
-class create_tenant_group_test(tenant_group_test):
-class get_tenant_groups_test(tenant_group_test):
-class get_tenant_group_test(tenant_group_test):
-class update_tenant_group_test(tenant_group_test):
-class delete_tenant_group_test(tenant_test):
-class global_group_test(unittest.TestCase):
-class create_global_group_test(global_group_test):
-class create_tenant_group_test(tenant_group_test):
-
-
-You can run all of the tests with
-
-python test_identity.py
-
-You can run any subset of the test by giving the class name e.g.
-
-python test_identity.py delete_tenant_test \ No newline at end of file