Make it possible to only add users
authorSverre Rabbelier <srabbelier@gmail.com>
Wed, 11 Mar 2009 19:26:41 +0000
changeset 1793 fd77432057b0
parent 1792 719ab05b00ff
child 1794 6ffd25bedef9
Make it possible to only add users Patch by: Sverre Rabbelier
app/soc/models/seed_db.py
--- a/app/soc/models/seed_db.py	Wed Mar 11 19:26:11 2009 +0000
+++ b/app/soc/models/seed_db.py	Wed Mar 11 19:26:41 2009 +0000
@@ -55,8 +55,9 @@
         a e-mail address in the auth domain
     user_start: where to start adding new users at
     user_end: where to stop adding new users at
-    user_goal: how many users to add in total
+    user_goal: how many users to add in total, implies user_only
     user_step: how many users to add per request, defaults to 15
+    user_only: stop after adding new users
     many_orgs: create 200 pre-accepted and 200 pre-denied org apps
         instead of just 1- pre-accepted ones, also create 200
         orgs instead of just 15.
@@ -98,6 +99,7 @@
   user_start = int(get_args.get('user_start', '0'))
   user_end = int(get_args.get('user_end', '0'))
   user_step = int(get_args.get('user_step', '15'))
+  user_only = get_args.get('user_only') or user_goal
 
   for i in range(100 if many_users else 15):
     user_properties = {
@@ -137,6 +139,9 @@
         user_start+user_step, user_end+user_step, user_goal)
     return http.HttpResponseRedirect(url)
 
+  if user_only:
+    return http.HttpResponse('Done with users')
+
 
   group_properties = {
        'key_name': 'google',