本文整理匯總了Python中mozillians.phonebook.tests.InviteFactory類的典型用法代碼示例。如果您正苦於以下問題:Python InviteFactory類的具體用法?Python InviteFactory怎麽用?Python InviteFactory使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了InviteFactory類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_invite_delete
def test_invite_delete(self):
user = UserFactory.create(userprofile={'is_vouched': True})
invite = InviteFactory.create(inviter=user.userprofile)
url = reverse('phonebook:delete_invite', prefix='/en-US/', kwargs={'invite_pk': invite.pk})
with self.login(user) as client:
response = client.post(url, follow=True)
eq_(Invite.objects.all().count(), 0)
eq_(response.status_code, 200)
示例2: test_invite_delete_redeemed
def test_invite_delete_redeemed(self):
user = UserFactory.create(userprofile={"is_vouched": True})
invite = InviteFactory.create(inviter=user.userprofile, redeemed=datetime.now())
url = reverse("phonebook:delete_invite", prefix="/en-US/", kwargs={"invite_pk": invite.pk})
with self.login(user) as client:
response = client.post(url)
eq_(Invite.objects.all().count(), 1)
eq_(response.status_code, 404)
示例3: test_register_unvouched
def test_register_unvouched(self, update_invites_mock):
user = UserFactory.create()
invite = InviteFactory.create(inviter=user.userprofile)
url = urlparams(reverse('phonebook:register'), code=invite.code)
with self.login(user) as client:
response = client.get(url, follow=True)
user = User.objects.get(id=user.id)
ok_(user.userprofile.is_vouched)
ok_(update_invites_mock.called)
self.assertTemplateUsed(response, 'phonebook/home.html')
示例4: test_invite_delete_redeemed
def test_invite_delete_redeemed(self):
user = UserFactory.create(userprofile={'is_vouched': True})
invite = InviteFactory.create(inviter=user.userprofile, redeemed=datetime.now())
with override_script_prefix('/en-US/'):
url = reverse('phonebook:delete_invite', kwargs={'invite_pk': invite.pk})
with self.login(user) as client:
response = client.post(url)
eq_(Invite.objects.all().count(), 1)
eq_(response.status_code, 404)
示例5: test_register_vouched
def test_register_vouched(self, redeem_invite_mock):
voucher_1 = UserFactory.create()
voucher_2 = UserFactory.create()
user = UserFactory.create(vouched=False)
user.userprofile.vouch(voucher_1.userprofile)
invite = InviteFactory.create(inviter=voucher_2.userprofile)
url = urlparams(reverse('phonebook:register'), code=invite.code)
with self.login(user) as client:
response = client.get(url, follow=True)
user = User.objects.get(id=user.id)
ok_(user.userprofile.is_vouched)
ok_(user.userprofile.vouched_by, voucher_1.userprofile)
ok_(not redeem_invite_mock.called)
self.assertJinja2TemplateUsed(response, 'phonebook/home.html')