本文整理汇总了Python中the_tale.game.bills.prototypes.VotePrototype类的典型用法代码示例。如果您正苦于以下问题:Python VotePrototype类的具体用法?Python VotePrototype怎么用?Python VotePrototype使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了VotePrototype类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_not_enough_voices_percents
def test_not_enough_voices_percents(self):
current_time = TimePrototype.get_current_time()
current_time.increment_turn()
current_time.increment_turn()
VotePrototype.create(self.account2, self.bill, relations.VOTE_TYPE.AGAINST)
VotePrototype.create(self.account3, self.bill, relations.VOTE_TYPE.REFRAINED)
self.assertEqual(Post.objects.all().count(), 1)
with self.check_not_changed(lambda: self.place1.attrs.stability):
with mock.patch('the_tale.accounts.workers.accounts_manager.Worker.cmd_run_account_method') as cmd_run_account_method:
self.assertFalse(self.bill.apply())
self.assertEqual(cmd_run_account_method.call_count, 0)
self.assertTrue(self.bill.state.is_REJECTED)
self.assertEqual(Post.objects.all().count(), 2)
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_REJECTED)
places_storage.places.sync(force=True)
self.place1.refresh_attributes()
self.assertEqual(bill.applyed_at_turn, current_time.turn_number)
self.check_place(self.place1.id, self.place1.name, self.place1.utg_name.forms)
开发者ID:Jazzis18,项目名称:the-tale,代码行数:30,代码来源:test_prototype.py
示例2: test_duplicate_apply
def test_duplicate_apply(self):
self.assertEqual(Building.objects.all().count(), 0)
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
noun = names.generator.get_test_name('building-name')
data = linguistics_helpers.get_word_post_data(noun, prefix='name')
data.update({'approved': True})
form = BuildingCreate.ModeratorForm(data)
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.apply())
dup_noun = names.generator.get_test_name('dup-building-name')
data = linguistics_helpers.get_word_post_data(dup_noun, prefix='name')
data.update({'approved': True})
form = BuildingCreate.ModeratorForm(data)
bill = BillPrototype.get_by_id(self.bill.id)
bill.state = BILL_STATE.VOTING
bill.save()
self.assertTrue(form.is_valid())
bill.update_by_moderator(form)
self.assertTrue(bill.apply())
self.assertEqual(Building.objects.all().count(), 1)
self.assertEqual(BuildingPrototype._db_get_object(0).utg_name, noun)
self.assertNotEqual(BuildingPrototype._db_get_object(0).utg_name, dup_noun)
开发者ID:alexudracul,项目名称:the-tale,代码行数:34,代码来源:test_building_create.py
示例3: test_reapply
def test_reapply(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
old_storage_version = resource_exchange_storage._version
self.assertEqual(len(resource_exchange_storage.all()), 1)
form = BillDecline.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.apply())
self.bill.state = BILL_STATE.VOTING
self.bill.save()
with mock.patch('the_tale.game.bills.prototypes.BillPrototype.decline') as skipped_decline:
self.assertTrue(self.bill.apply())
self.assertEqual(skipped_decline.call_count, 0)
self.assertNotEqual(old_storage_version, resource_exchange_storage._version)
self.assertEqual(len(resource_exchange_storage.all()), 0)
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_ACCEPTED)
declined_bill = BillPrototype.get_by_id(self.declined_bill.id)
self.assertTrue(declined_bill.state.is_ACCEPTED)
self.assertTrue(declined_bill.is_declined)
self.assertTrue(declined_bill.declined_by.id, bill.id)
开发者ID:alexudracul,项目名称:the-tale,代码行数:32,代码来源:test_bill_decline.py
示例4: test_reapply
def test_reapply(self):
VotePrototype.create(self.account2, self.bill, relations.VOTE_TYPE.AGAINST)
VotePrototype.create(self.account3, self.bill, relations.VOTE_TYPE.FOR)
old_storage_version = places_storage.resource_exchanges._version
self.assertEqual(len(places_storage.resource_exchanges.all()), 1)
data = self.bill.user_form_initials
data["approved"] = True
form = self.bill.data.get_moderator_form_update(data)
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.apply())
self.bill.state = relations.BILL_STATE.VOTING
self.bill.save()
with mock.patch("the_tale.game.bills.prototypes.BillPrototype.decline") as skipped_decline:
self.assertTrue(self.bill.apply())
self.assertEqual(skipped_decline.call_count, 0)
self.assertNotEqual(old_storage_version, places_storage.resource_exchanges._version)
self.assertEqual(len(places_storage.resource_exchanges.all()), 0)
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_ACCEPTED)
declined_bill = BillPrototype.get_by_id(self.declined_bill.id)
self.assertTrue(declined_bill.state.is_ACCEPTED)
self.assertTrue(declined_bill.is_declined)
self.assertTrue(declined_bill.declined_by.id, bill.id)
开发者ID:Tiendil,项目名称:the-tale,代码行数:35,代码来源:test_bill_decline.py
示例5: test_apply_without_person
def test_apply_without_person(self):
self.assertEqual(Building.objects.all().count(), 0)
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
noun = names.generator.get_test_name('building-name')
data = linguistics_helpers.get_word_post_data(noun, prefix='name')
data.update({'approved': True})
form = BuildingCreate.ModeratorForm(data)
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.person_1.move_out_game()
self.assertTrue(self.bill.apply())
bill = BillPrototype.get_by_id(self.bill.id)
bill.state = BILL_STATE.VOTING
bill.save()
self.assertTrue(bill.apply())
self.assertEqual(Building.objects.all().count(), 0)
开发者ID:alexudracul,项目名称:the-tale,代码行数:27,代码来源:test_building_create.py
示例6: test_apply
def test_apply(self):
VotePrototype.create(self.account2, self.bill, relations.VOTE_TYPE.AGAINST)
VotePrototype.create(self.account3, self.bill, relations.VOTE_TYPE.FOR)
old_storage_version = places_storage.resource_exchanges._version
self.assertEqual(len(places_storage.resource_exchanges.all()), 1)
data = self.bill.user_form_initials
data["approved"] = True
form = self.bill.data.get_moderator_form_update(data)
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.apply())
self.assertNotEqual(old_storage_version, places_storage.resource_exchanges._version)
self.assertEqual(len(places_storage.resource_exchanges.all()), 0)
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_ACCEPTED)
declined_bill = BillPrototype.get_by_id(self.declined_bill.id)
self.assertTrue(declined_bill.state.is_ACCEPTED)
self.assertTrue(declined_bill.is_declined)
self.assertTrue(declined_bill.declined_by.id, bill.id)
开发者ID:Tiendil,项目名称:the-tale,代码行数:27,代码来源:test_bill_decline.py
示例7: test_apply
def test_apply(self):
self.assertEqual(Building.objects.all().count(), 0)
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
noun = names.generator.get_test_name('r-building-name')
data = linguistics_helpers.get_word_post_data(noun, prefix='name')
data.update({'approved': True})
form = BuildingCreate.ModeratorForm(data)
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.apply())
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_ACCEPTED)
self.assertEqual(Building.objects.all().count(), 1)
building = buildings_storage.all()[0]
self.assertEqual(building.person.id, self.person_1.id)
self.assertEqual(building.place.id, self.place1.id)
self.assertEqual(building.utg_name, noun)
开发者ID:alexudracul,项目名称:the-tale,代码行数:28,代码来源:test_building_create.py
示例8: test_is_make_sense__person_out_game
def test_is_make_sense__person_out_game(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = PersonChronicle.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.bill.data.person.move_out_game()
self.assertFalse(self.bill.has_meaning())
开发者ID:alexudracul,项目名称:the-tale,代码行数:11,代码来源:test_person_chronicle.py
示例9: apply_bill
def apply_bill(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = PlaceResourceExchange.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertEqual(len(places_storage.resource_exchanges.all()), 0)
self.assertTrue(self.bill.apply())
开发者ID:ruckysolis,项目名称:the-tale,代码行数:11,代码来源:test_place_resource_exchange.py
示例10: test_has_meaning__duplicate_modifier
def test_has_meaning__duplicate_modifier(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = PlaceModifier.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.bill.data.place.modifier = self.bill.data.modifier_id
self.bill.data.place.save()
self.assertFalse(self.bill.has_meaning())
开发者ID:alexudracul,项目名称:the-tale,代码行数:12,代码来源:test_place_modifier.py
示例11: test_has_meaning__duplicate_description
def test_has_meaning__duplicate_description(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = PlaceDescripton.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.place.description = 'new description'
self.place.save()
self.assertFalse(self.bill.has_meaning())
开发者ID:alexudracul,项目名称:the-tale,代码行数:12,代码来源:test_place_description.py
示例12: test_apply
def test_apply(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = PlaceModifier.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.apply())
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_ACCEPTED)
self.assertTrue(self.place._modifier.is_TRADE_CENTER)
开发者ID:Jazzis18,项目名称:the-tale,代码行数:14,代码来源:test_place_modifier.py
示例13: test_has_meaning__no_building
def test_has_meaning__no_building(self):
self.assertEqual(Building.objects.filter(state=BUILDING_STATE.WORKING).count(), 2)
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = BuildingDestroy.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.building_1.destroy()
self.building_1.save()
self.assertFalse(self.bill.has_meaning())
开发者ID:alexudracul,项目名称:the-tale,代码行数:14,代码来源:test_building_destroy.py
示例14: test_has_meaning
def test_has_meaning(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = BillDecline.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.has_meaning())
self.declined_bill.is_declined = True
self.declined_bill.save()
self.assertFalse(self.bill.has_meaning())
开发者ID:alexudracul,项目名称:the-tale,代码行数:14,代码来源:test_bill_decline.py
示例15: get_achievement_type_value
def get_achievement_type_value(self, achievement_type):
from the_tale.game.bills.prototypes import BillPrototype, VotePrototype
if achievement_type.is_POLITICS_ACCEPTED_BILLS:
return BillPrototype.accepted_bills_count(self.id)
elif achievement_type.is_POLITICS_VOTES_TOTAL:
return VotePrototype.votes_count(self.id)
elif achievement_type.is_POLITICS_VOTES_FOR:
return VotePrototype.votes_for_count(self.id)
elif achievement_type.is_POLITICS_VOTES_AGAINST:
return VotePrototype.votes_against_count(self.id)
elif achievement_type.is_KEEPER_MIGHT:
return self.might
raise exceptions.UnkwnownAchievementTypeError(achievement_type=achievement_type)
开发者ID:ruckysolis,项目名称:the-tale,代码行数:15,代码来源:prototypes.py
示例16: test_votes_agains_count
def test_votes_agains_count(self):
VotePrototype.create(self.account2, self.bill, relations.VOTE_TYPE.AGAINST)
VotePrototype.create(self.account3, self.bill, relations.VOTE_TYPE.REFRAINED)
self.assertEqual(VotePrototype.votes_against_count(self.account1.id), 0)
self.assertEqual(VotePrototype.votes_against_count(self.account2.id), 1)
self.assertEqual(VotePrototype.votes_against_count(self.account3.id), 0)
self.assertEqual(VotePrototype.votes_against_count(self.account4.id), 0)
开发者ID:Jazzis18,项目名称:the-tale,代码行数:8,代码来源:test_prototype.py
示例17: test_apply
def test_apply(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = PlaceDescripton.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.apply())
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_ACCEPTED)
self.assertNotEqual(self.place.description, 'old description' )
self.assertEqual(self.place.description, 'new description' )
开发者ID:Alkalit,项目名称:the-tale,代码行数:15,代码来源:test_place_description.py
示例18: check_apply
def check_apply(self, change_power_mock):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = PersonChronicle.ModeratorForm({'approved': True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
with mock.patch('the_tale.game.persons.prototypes.PersonPrototype.cmd_change_power') as cmd_change_power:
self.assertTrue(self.bill.apply())
self.assertEqual(cmd_change_power.call_args_list, change_power_mock)
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_ACCEPTED)
开发者ID:alexudracul,项目名称:the-tale,代码行数:15,代码来源:test_person_chronicle.py
示例19: test_apply
def test_apply(self):
VotePrototype.create(self.account2, self.bill, False)
VotePrototype.create(self.account3, self.bill, True)
form = PlaceModifier.ModeratorForm({"approved": True})
self.assertTrue(form.is_valid())
self.bill.update_by_moderator(form)
self.assertTrue(self.bill.apply())
bill = BillPrototype.get_by_id(self.bill.id)
self.assertTrue(bill.state.is_ACCEPTED)
self.assertNotEqual(self.place.modifier, None)
self.assertEqual(self.place.modifier, TradeCenter(self.place))
开发者ID:nbadp,项目名称:the-tale,代码行数:15,代码来源:test_place_modifier.py
示例20: test_vote_refrained_achievements
def test_vote_refrained_achievements(self):
with mock.patch('the_tale.accounts.achievements.storage.AchievementsStorage.verify_achievements') as verify_achievements:
VotePrototype.create(self.account2, self.bill, relations.VOTE_TYPE.REFRAINED)
self.assertEqual(verify_achievements.call_args_list, [mock.call(account_id=self.account2.id,
type=ACHIEVEMENT_TYPE.POLITICS_VOTES_TOTAL,
old_value=0,
new_value=1),
mock.call(account_id=self.account2.id,
type=ACHIEVEMENT_TYPE.POLITICS_VOTES_FOR,
old_value=0,
new_value=0),
mock.call(account_id=self.account2.id,
type=ACHIEVEMENT_TYPE.POLITICS_VOTES_AGAINST,
old_value=0,
new_value=0)])
开发者ID:Jazzis18,项目名称:the-tale,代码行数:16,代码来源:test_prototype.py
注:本文中的the_tale.game.bills.prototypes.VotePrototype类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论