2012-09-04 20:26:45 +02:00
|
|
|
from django.core.management.base import BaseCommand
|
2012-08-28 23:08:38 +02:00
|
|
|
from django.utils.timezone import utc
|
2012-08-28 18:45:10 +02:00
|
|
|
|
|
|
|
from django.contrib.auth.models import User
|
2012-09-05 18:38:35 +02:00
|
|
|
from zephyr.models import Zephyr, UserProfile, ZephyrClass, Recipient, \
|
2012-09-05 21:49:56 +02:00
|
|
|
Subscription, Huddle, get_huddle, Realm, create_user_profile
|
2012-08-28 18:45:10 +02:00
|
|
|
|
|
|
|
import datetime
|
|
|
|
import random
|
2012-09-04 20:26:45 +02:00
|
|
|
from optparse import make_option
|
2012-08-28 18:45:10 +02:00
|
|
|
|
2012-09-04 20:26:45 +02:00
|
|
|
class Command(BaseCommand):
|
2012-08-28 18:45:10 +02:00
|
|
|
help = "Populate a test database"
|
|
|
|
|
2012-09-04 20:26:45 +02:00
|
|
|
option_list = BaseCommand.option_list + (
|
|
|
|
make_option('-n', '--num-zephyrs',
|
|
|
|
dest='num_zephyrs',
|
|
|
|
type='int',
|
2012-09-05 18:38:35 +02:00
|
|
|
default=120,
|
2012-09-04 20:26:45 +02:00
|
|
|
help='The number of zephyrs to create.'),
|
2012-09-05 18:38:35 +02:00
|
|
|
make_option('--huddles',
|
|
|
|
dest='num_huddles',
|
|
|
|
type='int',
|
|
|
|
default=3,
|
|
|
|
help='The number of huddles to create.'),
|
|
|
|
make_option('--personals',
|
|
|
|
dest='num_personals',
|
|
|
|
type='int',
|
|
|
|
default=6,
|
|
|
|
help='The number of personal pairs to create.'),
|
|
|
|
make_option('--percent-huddles',
|
|
|
|
dest='percent_huddles',
|
|
|
|
type='float',
|
|
|
|
default=15,
|
|
|
|
help='The percent of messages to be huddles.'),
|
|
|
|
make_option('--percent-personals',
|
|
|
|
dest='percent_personals',
|
|
|
|
type='float',
|
|
|
|
default=15,
|
|
|
|
help='The percent of messages to be personals.'),
|
2012-09-05 19:38:48 +02:00
|
|
|
make_option('--stickyness',
|
|
|
|
dest='stickyness',
|
|
|
|
type='float',
|
|
|
|
default=20,
|
|
|
|
help='The percent of messages to repeat recent folks.'),
|
2012-09-04 20:26:45 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def handle(self, **options):
|
2012-09-05 18:38:35 +02:00
|
|
|
if options["percent_huddles"] + options["percent_personals"] > 100:
|
|
|
|
self.stderr.write("Error! More than 100% of messages allocated.\n")
|
|
|
|
return
|
|
|
|
|
2012-09-05 21:49:56 +02:00
|
|
|
for klass in [Zephyr, ZephyrClass, UserProfile, User, Recipient,
|
|
|
|
Realm, Subscription, Huddle]:
|
2012-08-28 18:45:10 +02:00
|
|
|
klass.objects.all().delete()
|
2012-09-05 17:23:58 +02:00
|
|
|
|
2012-09-05 21:49:56 +02:00
|
|
|
# Create a test realm
|
|
|
|
realm = Realm(domain="humbughq.com")
|
|
|
|
realm.save()
|
|
|
|
|
2012-08-31 16:58:09 +02:00
|
|
|
# Create test Users (UserProfiles are automatically created,
|
|
|
|
# as are subscriptions to the ability to receive personals).
|
2012-08-29 17:50:44 +02:00
|
|
|
usernames = ["othello", "iago", "prospero", "cordelia", "hamlet"]
|
|
|
|
for username in usernames:
|
2012-09-05 21:49:56 +02:00
|
|
|
user = User.objects.create_user(username=username, password=username)
|
|
|
|
user.save()
|
|
|
|
create_user_profile(user, realm)
|
2012-09-05 18:38:35 +02:00
|
|
|
users = [user.id for user in User.objects.all()]
|
2012-09-05 17:23:58 +02:00
|
|
|
|
2012-08-29 17:50:44 +02:00
|
|
|
# Create public classes.
|
2012-08-28 18:45:10 +02:00
|
|
|
for name in ["Verona", "Denmark", "Scotland", "Venice", "Rome"]:
|
2012-08-30 20:18:59 +02:00
|
|
|
new_class = ZephyrClass(name=name)
|
2012-08-28 18:45:10 +02:00
|
|
|
new_class.save()
|
2012-08-28 21:27:42 +02:00
|
|
|
|
2012-09-04 22:22:06 +02:00
|
|
|
recipient = Recipient(type_id=new_class.pk, type="class")
|
2012-08-28 21:27:42 +02:00
|
|
|
recipient.save()
|
2012-09-05 17:23:58 +02:00
|
|
|
|
2012-09-05 18:38:35 +02:00
|
|
|
# Create several initial huddles
|
|
|
|
huddle_members = {}
|
|
|
|
for i in range(0, options["num_huddles"]):
|
|
|
|
user_ids = random.sample(users, random.randint(3, 4))
|
|
|
|
huddle_members[get_huddle(user_ids).id] = user_ids
|
|
|
|
|
|
|
|
# Create several initial pairs for personals
|
|
|
|
personals_pairs = []
|
|
|
|
for i in range(0, options["num_personals"]):
|
|
|
|
personals_pairs.append(random.sample(users, 2))
|
|
|
|
|
|
|
|
recipient_classes = [klass.type_id for klass in Recipient.objects.filter(type="class")]
|
|
|
|
recipient_huddles = [h.type_id for h in Recipient.objects.filter(type="huddle")]
|
|
|
|
|
|
|
|
# Create subscriptions to classes
|
|
|
|
profiles = UserProfile.objects.all()
|
|
|
|
for i, profile in enumerate(profiles):
|
|
|
|
# Subscribe to some classes.
|
|
|
|
for recipient in recipient_classes[:int(len(recipient_classes) * float(i)/len(profiles)) + 1]:
|
|
|
|
new_subscription = Subscription(userprofile_id=profile,
|
|
|
|
recipient_id=Recipient.objects.get(type="class",
|
|
|
|
type_id=recipient))
|
|
|
|
new_subscription.save()
|
|
|
|
|
2012-08-28 18:45:10 +02:00
|
|
|
# Create some test zephyrs, including:
|
|
|
|
# - multiple classes
|
|
|
|
# - multiple instances per class
|
|
|
|
# - multiple zephyrs per instance
|
|
|
|
# - both single and multi-line content
|
2012-09-05 18:38:35 +02:00
|
|
|
|
2012-08-28 18:45:10 +02:00
|
|
|
texts = file("zephyr/management/commands/test_zephyrs.txt", "r").readlines()
|
|
|
|
offset = 0
|
2012-09-04 20:26:45 +02:00
|
|
|
num_zephyrs = 0
|
2012-09-05 18:38:35 +02:00
|
|
|
random_max = 1000000
|
2012-09-05 19:38:48 +02:00
|
|
|
recipients = {}
|
2012-09-04 20:26:45 +02:00
|
|
|
while num_zephyrs < options["num_zephyrs"]:
|
2012-09-05 19:38:48 +02:00
|
|
|
saved_data = ''
|
2012-08-28 18:45:10 +02:00
|
|
|
new_zephyr = Zephyr()
|
|
|
|
length = random.randint(1, 5)
|
|
|
|
new_zephyr.content = "".join(texts[offset: offset + length])
|
|
|
|
offset += length
|
2012-09-04 20:26:45 +02:00
|
|
|
offset = offset % len(texts)
|
2012-09-05 18:38:35 +02:00
|
|
|
|
|
|
|
randkey = random.randint(1, random_max)
|
2012-09-05 19:38:48 +02:00
|
|
|
if (num_zephyrs > 0 and
|
|
|
|
random.randint(1, random_max) * 100. / random_max < options["stickyness"]):
|
|
|
|
# Use an old recipient
|
|
|
|
zephyr_type, recipient, saved_data = recipients[num_zephyrs - 1]
|
|
|
|
if zephyr_type == "personal":
|
|
|
|
personals_pair = saved_data
|
|
|
|
random.shuffle(personals_pair)
|
|
|
|
elif zephyr_type == "class":
|
|
|
|
new_zephyr.instance = saved_data
|
|
|
|
new_zephyr.recipient = recipient
|
|
|
|
elif zephyr_type == "huddle":
|
|
|
|
new_zephyr.recipient = recipient
|
|
|
|
elif (randkey <= random_max * options["percent_huddles"] / 100.):
|
|
|
|
zephyr_type = "huddle"
|
2012-09-05 18:38:35 +02:00
|
|
|
new_zephyr.recipient = Recipient.objects.get(type="huddle", type_id=random.choice(recipient_huddles))
|
|
|
|
elif (randkey <= random_max * (options["percent_huddles"] + options["percent_personals"]) / 100.):
|
2012-09-05 19:38:48 +02:00
|
|
|
zephyr_type = "personal"
|
2012-09-05 21:49:56 +02:00
|
|
|
personals_pair = random.choice(personals_pairs)
|
2012-09-05 19:38:48 +02:00
|
|
|
random.shuffle(personals_pair)
|
2012-09-05 18:38:35 +02:00
|
|
|
elif (randkey <= random_max * 1.0):
|
2012-09-05 19:38:48 +02:00
|
|
|
zephyr_type = "class"
|
2012-09-05 18:38:35 +02:00
|
|
|
new_zephyr.recipient = Recipient.objects.get(type="class", type_id=random.choice(recipient_classes))
|
2012-09-05 19:38:48 +02:00
|
|
|
|
|
|
|
if zephyr_type == "huddle":
|
|
|
|
new_zephyr.sender = UserProfile.objects.get(id=random.choice(huddle_members[new_zephyr.recipient.type_id]))
|
|
|
|
elif zephyr_type == "personal":
|
|
|
|
new_zephyr.recipient = Recipient.objects.get(type="personal", type_id=personals_pair[0])
|
|
|
|
new_zephyr.sender = UserProfile.objects.get(id=personals_pair[1])
|
|
|
|
saved_data = personals_pair
|
|
|
|
elif zephyr_type == "class":
|
2012-09-05 18:38:35 +02:00
|
|
|
zephyr_class = ZephyrClass.objects.get(pk=new_zephyr.recipient.type_id)
|
2012-09-05 19:38:48 +02:00
|
|
|
# Pick a random subscriber to the class
|
|
|
|
new_zephyr.sender = random.choice(Subscription.objects.filter(recipient_id=new_zephyr.recipient.id)).userprofile_id
|
2012-09-05 18:38:35 +02:00
|
|
|
new_zephyr.instance = zephyr_class.name + str(random.randint(1, 3))
|
2012-09-05 19:38:48 +02:00
|
|
|
saved_data = new_zephyr.instance
|
|
|
|
|
2012-08-28 23:08:38 +02:00
|
|
|
new_zephyr.pub_date = datetime.datetime.utcnow().replace(tzinfo=utc)
|
2012-08-28 18:45:10 +02:00
|
|
|
new_zephyr.save()
|
2012-09-05 19:38:48 +02:00
|
|
|
|
|
|
|
recipients[num_zephyrs] = [zephyr_type, new_zephyr.recipient, saved_data]
|
2012-09-04 20:26:45 +02:00
|
|
|
num_zephyrs += 1
|
2012-08-28 18:45:10 +02:00
|
|
|
|
2012-08-28 22:57:45 +02:00
|
|
|
self.stdout.write("Successfully populated test database.\n")
|