本文整理汇总了Python中the_tale.forum.prototypes.SubCategoryPrototype.create方法的典型用法代码示例。如果您正苦于以下问题:Python SubCategoryPrototype.create方法的具体用法?Python SubCategoryPrototype.create怎么用?Python SubCategoryPrototype.create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类the_tale.forum.prototypes.SubCategoryPrototype
的用法示例。
在下文中一共展示了SubCategoryPrototype.create方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setUp
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def setUp(self):
super(TestModeration, self).setUp()
create_test_map()
register_user('main_user', '[email protected]', '111111')
register_user('moderator', '[email protected]', '111111')
register_user('second_user', '[email protected]', '111111')
self.main_account = AccountPrototype.get_by_nick('main_user')
self.moderator = AccountPrototype.get_by_nick('moderator')
self.second_account = AccountPrototype.get_by_nick('second_user')
group = sync_group(forum_settings.MODERATOR_GROUP_NAME, ['forum.moderate_post', 'forum.moderate_thread'])
group.user_set.add(self.moderator._model)
self.client = client.Client()
self.category = CategoryPrototype.create(caption='cat-caption', slug='cat-slug', order=0)
self.subcategory = SubCategoryPrototype.create(category=self.category, caption='subcat-caption', order=0)
self.subcategory2 = SubCategoryPrototype.create(category=self.category, caption='subcat2-caption', order=1, closed=True)
self.thread = ThreadPrototype.create(self.subcategory, 'thread-caption', self.main_account, 'thread-text')
self.post = PostPrototype.create(self.thread, self.main_account, 'post-text')
self.post2 = PostPrototype.create(self.thread, self.main_account, 'post2-text')
self.post5 = PostPrototype.create(self.thread, self.main_account, 'post5-text', technical=True)
self.thread2 = ThreadPrototype.create(self.subcategory, 'thread2-caption', self.main_account, 'thread2-text')
self.post3 = PostPrototype.create(self.thread2, self.main_account, 'post3-text')
self.post4 = PostPrototype.create(self.thread2, self.second_account, 'post4-text')
self.thread3 = ThreadPrototype.create(self.subcategory, 'thread3-caption', self.second_account, 'thread3-text')
示例2: test_subcategories_visible_to_account_with_permissions
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def test_subcategories_visible_to_account_with_permissions(self):
register_user('test_user', '[email protected]', '111111')
register_user('granted_user', '[email protected]', '111111')
register_user('wrong_user', '[email protected]', '111111')
granted_account = AccountPrototype.get_by_nick('granted_user')
wrong_account = AccountPrototype.get_by_nick('wrong_user')
category = CategoryPrototype.create(caption='cat-caption', slug='cat-slug', order=0)
subcategory_1 = SubCategoryPrototype.create(category=category, caption='subcat-1-caption', order=2)
SubCategoryPrototype.create(category=category, caption='subcat-2-caption', order=1, restricted=True)
restricted_subcategory = SubCategoryPrototype.create(category=category, caption='subcat-restricted-caption', order=0, restricted=True)
PermissionPrototype.create(granted_account, restricted_subcategory)
self.assertEqual([s.id for s in SubCategoryPrototype.subcategories_visible_to_account(account=None)],
[subcategory_1.id])
self.assertEqual([s.id for s in SubCategoryPrototype.subcategories_visible_to_account(account=granted_account)],
[restricted_subcategory.id, subcategory_1.id])
self.assertEqual([s.id for s in SubCategoryPrototype.subcategories_visible_to_account(account=wrong_account)],
[subcategory_1.id])
示例3: __init__
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def __init__(self, accounts_factory):
self.account_1 = accounts_factory.create_account()
self.account_2 = accounts_factory.create_account()
# cat1
# |-subcat1
# | |-thread1
# | | |-post1
# | |-thread2
# |-subcat2
# cat2
# | subcat3
# | |- thread3
# cat3
self.cat_1 = CategoryPrototype.create(caption='cat1-caption', slug='cat1-slug', order=0)
# to test, that subcat.id not correlate with order
self.subcat_2 = SubCategoryPrototype.create(category=self.cat_1, caption='subcat2-caption', order=1, closed=True)
self.subcat_1 = SubCategoryPrototype.create(category=self.cat_1, caption='subcat1-caption', order=0)
self.cat_2 = CategoryPrototype.create(caption='cat2-caption', slug='cat2-slug', order=0)
self.subcat_3 = SubCategoryPrototype.create(category=self.cat_2, caption='subcat3-caption', order=0)
self.cat_3 = CategoryPrototype.create(caption='cat3-caption', slug='cat3-slug', order=0)
self.thread_1 = ThreadPrototype.create(self.subcat_1, 'thread1-caption', self.account_1, 'thread1-text')
self.thread_2 = ThreadPrototype.create(self.subcat_1, 'thread2-caption', self.account_1, 'thread2-text')
self.thread_3 = ThreadPrototype.create(self.subcat_3, 'thread3-caption', self.account_1, 'thread3-text')
self.post_1 = PostPrototype.create(self.thread_1, self.account_1, 'post1-text')
# create test clan and clean it's forum artifacts
self.clan_category = CategoryPrototype.create(caption='category-1', slug=clans_settings.FORUM_CATEGORY_SLUG, order=0)
self.clan_1 = ClanPrototype.create(self.account_1, abbr='abbr1', name='name1', motto='motto', description='description')
示例4: __init__
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def __init__(self):
register_user('forum_user', '[email protected]', '111111')
register_user('forum_user_2', '[email protected]', '111111')
self.account_1 = AccountPrototype.get_by_nick('forum_user')
self.account_2 = AccountPrototype.get_by_nick('forum_user_2')
# cat1
# |-subcat1
# | |-thread1
# | | |-post1
# | |-thread2
# |-subcat2
# cat2
# | subcat3
# | |- thread3
# cat3
self.cat_1 = CategoryPrototype.create(caption='cat1-caption', slug='cat1-slug', order=0)
# to test, that subcat.id not correlate with order
self.subcat_2 = SubCategoryPrototype.create(category=self.cat_1, caption='subcat2-caption', order=1, closed=True)
self.subcat_1 = SubCategoryPrototype.create(category=self.cat_1, caption='subcat1-caption', order=0)
self.cat_2 = CategoryPrototype.create(caption='cat2-caption', slug='cat2-slug', order=0)
self.subcat_3 = SubCategoryPrototype.create(category=self.cat_2, caption='subcat3-caption', order=0)
self.cat_3 = CategoryPrototype.create(caption='cat3-caption', slug='cat3-slug', order=0)
self.thread_1 = ThreadPrototype.create(self.subcat_1, 'thread1-caption', self.account_1, 'thread1-text')
self.thread_2 = ThreadPrototype.create(self.subcat_1, 'thread2-caption', self.account_1, 'thread2-text')
self.thread_3 = ThreadPrototype.create(self.subcat_3, 'thread3-caption', self.account_1, 'thread3-text')
self.post_1 = PostPrototype.create(self.thread_1, self.account_1, 'post1-text')
# create test clan and clean it's forum artifacts
self.clan_category = CategoryPrototype.create(caption='category-1', slug=clans_settings.FORUM_CATEGORY_SLUG, order=0)
self.clan_1 = ClanPrototype.create(self.account_1, abbr=u'abbr1', name=u'name1', motto=u'motto', description=u'description')
示例5: setUp
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def setUp(self):
super(CalculateMightTests, self).setUp()
self.place_1, self.place_2, self.place_3 = create_test_map()
self.account = self.accounts_factory.create_account()
self.account_2 = self.accounts_factory.create_account(referral_of_id=self.account.id)
self.forum_category = CategoryPrototype.create('category', 'category-slug', 0)
self.bills_subcategory = SubCategoryPrototype.create(self.forum_category, 'subcategory', order=0, uid=bills_settings.FORUM_CATEGORY_UID)
self.blogs_subcategory = SubCategoryPrototype.create(self.forum_category, blogs_conf.settings.FORUM_CATEGORY_UID + '-caption', order=1, uid=blogs_conf.settings.FORUM_CATEGORY_UID)
self.restricted_subcategory = SubCategoryPrototype.create(self.forum_category, 'restricted-caption', order=2, restricted=True, uid='restricted-sub')
示例6: setUp
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def setUp(self):
super(CalculateMightTests, self).setUp()
self.place_1, self.place_2, self.place_3 = create_test_map()
result, account_id, bundle_id = register_user('test_user', '[email protected]', '111111')
self.account = AccountPrototype.get_by_id(account_id)
result, account_id, bundle_id = register_user('test_user_2', '[email protected]', '111111', referral_of_id=self.account.id)
self.account_2 = AccountPrototype.get_by_id(account_id)
self.forum_category = CategoryPrototype.create('category', 'category-slug', 0)
self.bills_subcategory = SubCategoryPrototype.create(self.forum_category, 'subcategory', order=0, uid=bills_settings.FORUM_CATEGORY_UID)
self.blogs_subcategory = SubCategoryPrototype.create(self.forum_category, blogs_conf.settings.FORUM_CATEGORY_UID + '-caption', order=1, uid=blogs_conf.settings.FORUM_CATEGORY_UID)
示例7: create
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def create(cls, owner, abbr, name, motto, description):
forum_category = CategoryPrototype.get_by_slug(clans_settings.FORUM_CATEGORY_SLUG)
subcategory_order = SubCategoryPrototype._db_filter(category=forum_category.id).aggregate(models.Max('order'))['order__max']
if subcategory_order is None:
subcategory_order = 0
else:
subcategory_order += 1
forum_subcategory = SubCategoryPrototype.create(category=forum_category,
caption=cls.get_forum_subcategory_caption(name),
order=subcategory_order,
restricted=True)
clan_model = cls._model_class.objects.create(name=name,
abbr=abbr,
motto=motto,
description=description,
members_number=1,
forum_subcategory=forum_subcategory._model)
clan = cls(clan_model)
MembershipPrototype.create(owner, clan, role=MEMBER_ROLE.LEADER)
owner.set_clan_id(clan.id)
return clan
示例8: test_2_subcategories_updated
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def test_2_subcategories_updated(self):
subcategory_2 = SubCategoryPrototype.create(category=self.category, caption='subcat-2-caption', order=3)
with mock.patch('the_tale.forum.prototypes.SubCategoryPrototype.update') as subcategory_update:
self.thread.update(new_subcategory_id=subcategory_2.id)
self.assertEqual(subcategory_update.call_count, 2)
示例9: setUp
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def setUp(self):
super(ReadStateTests, self).setUp()
create_test_map()
register_user("user_1", "[email protected]", "111111")
register_user("user_2", "[email protected]", "111111")
self.account = AccountPrototype.get_by_nick("user_1")
self.account_2 = AccountPrototype.get_by_nick("user_2")
category = CategoryPrototype.create(caption="cat-caption", slug="cat-slug", order=0)
self.subcategory = SubCategoryPrototype.create(category=category, caption="subcat-caption", order=0)
self.subcategory_2 = SubCategoryPrototype.create(category=category, caption="subcat-2-caption", order=0)
self.thread = ThreadPrototype.create(self.subcategory, "thread1-caption", self.account_2, "thread-text")
self.thread_2 = ThreadPrototype.create(self.subcategory, "thread2-caption", self.account_2, "thread-2-text")
self.thread_3 = ThreadPrototype.create(self.subcategory_2, "thread2-caption", self.account, "thread-2-text")
示例10: setUp
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def setUp(self):
super(SubscriptionPrototypeTests, self).setUp()
create_test_map()
register_user('user_1', '[email protected]', '111111')
register_user('user_2', '[email protected]', '111111')
self.account = AccountPrototype.get_by_nick('user_1')
self.account_2 = AccountPrototype.get_by_nick('user_2')
self.category = CategoryPrototype.create(caption='cat-caption', slug='cat-slug', order=0)
self.subcategory_1 = SubCategoryPrototype.create(category=self.category, caption='subcat-1-caption', order=0)
self.subcategory_2 = SubCategoryPrototype.create(category=self.category, caption='subcat-2-caption', order=1)
self.thread_1_1 = ThreadPrototype.create(self.subcategory_1, 'thread-1-1-caption', self.account, 'thread-1-1-text')
self.thread_1_2 = ThreadPrototype.create(self.subcategory_1, 'thread-1-2-caption', self.account, 'thread-1-2-text')
self.thread_1_3 = ThreadPrototype.create(self.subcategory_1, 'thread-1-3-caption', self.account_2, 'thread-1-3-text')
self.thread_2_1 = ThreadPrototype.create(self.subcategory_2, 'thread-2-1-caption', self.account, 'thread-2-1-text')
self.thread_2_2 = ThreadPrototype.create(self.subcategory_2, 'thread-2-2-caption', self.account, 'thread-2-2-text')
示例11: test_subcategories_visible_to_account_with_permissions
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def test_subcategories_visible_to_account_with_permissions(self):
granted_account = self.accounts_factory.create_account()
wrong_account = self.accounts_factory.create_account()
category = CategoryPrototype.create(caption='cat-caption', slug='cat-slug', order=0)
subcategory_1 = SubCategoryPrototype.create(category=category, caption='subcat-1-caption', order=2)
SubCategoryPrototype.create(category=category, caption='subcat-2-caption', order=1, restricted=True)
restricted_subcategory = SubCategoryPrototype.create(category=category, caption='subcat-restricted-caption', order=0, restricted=True)
PermissionPrototype.create(granted_account, restricted_subcategory)
self.assertEqual([s.id for s in SubCategoryPrototype.subcategories_visible_to_account(account=None)],
[subcategory_1.id])
self.assertEqual([s.id for s in SubCategoryPrototype.subcategories_visible_to_account(account=granted_account)],
[restricted_subcategory.id, subcategory_1.id])
self.assertEqual([s.id for s in SubCategoryPrototype.subcategories_visible_to_account(account=wrong_account)],
[subcategory_1.id])
示例12: setUp
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def setUp(self):
super(NewForumThreadTests, self).setUp()
create_test_map()
register_user('user_1', '[email protected]', '111111')
self.account_1 = AccountPrototype.get_by_nick('user_1')
self.category = CategoryPrototype.create(caption='cat-caption', slug='cat-slug', order=0)
self.subcategory = SubCategoryPrototype.create(category=self.category, caption='subcat-caption', order=0)
self.thread = ThreadPrototype.create(self.subcategory, 'thread_1-caption', self.account_1, 'thread-text')
self.message = MessagePrototype.get_priority_message()
示例13: test_last_forum_posts_with_permissions
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def test_last_forum_posts_with_permissions(self):
granted_account = self.accounts_factory.create_account()
wrong_account = self.accounts_factory.create_account()
restricted_subcategory = SubCategoryPrototype.create(category=self.category, caption='subcat2-caption', order=1, restricted=True)
PermissionPrototype.create(granted_account, restricted_subcategory)
restricted_thread = ThreadPrototype.create(restricted_subcategory, 'thread-restricted-caption', self.account, 'thread-text')
self.assertEqual(set(t.id for t in ThreadPrototype.get_last_threads(account=None, limit=3)),
set([self.thread.id]))
self.assertEqual(set(t.id for t in ThreadPrototype.get_last_threads(account=granted_account, limit=3)),
set([self.thread.id, restricted_thread.id]))
self.assertEqual(set(t.id for t in ThreadPrototype.get_last_threads(account=wrong_account, limit=3)),
set([self.thread.id]))
示例14: test_last_forum_posts_with_permissions
# 需要导入模块: from the_tale.forum.prototypes import SubCategoryPrototype [as 别名]
# 或者: from the_tale.forum.prototypes.SubCategoryPrototype import create [as 别名]
def test_last_forum_posts_with_permissions(self):
register_user('granted_user', '[email protected]', '111111')
register_user('wrong_user', '[email protected]', '111111')
granted_account = AccountPrototype.get_by_nick('granted_user')
wrong_account = AccountPrototype.get_by_nick('wrong_user')
restricted_subcategory = SubCategoryPrototype.create(category=self.category, caption='subcat2-caption', order=1, restricted=True)
PermissionPrototype.create(granted_account, restricted_subcategory)
restricted_thread = ThreadPrototype.create(restricted_subcategory, 'thread-restricted-caption', self.account, 'thread-text')
self.assertEqual(set(t.id for t in ThreadPrototype.get_last_threads(account=None, limit=3)),
set([self.thread.id]))
self.assertEqual(set(t.id for t in ThreadPrototype.get_last_threads(account=granted_account, limit=3)),
set([self.thread.id, restricted_thread.id]))
self.assertEqual(set(t.id for t in ThreadPrototype.get_last_threads(account=wrong_account, limit=3)),
set([self.thread.id]))