本文整理汇总了Python中the_tale.game.bills.prototypes.VotePrototype类的典型用法代码示例。如果您正苦于以下问题:Python VotePrototype类的具体用法?Python VotePrototype怎么用?Python VotePrototype使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了VotePrototype类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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)
示例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)
示例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)
示例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)
示例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)
示例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)
示例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)
示例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())
示例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())
示例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())
示例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())
示例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)
示例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())
示例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())
示例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)