Beispiel #1
0
    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)
    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)
    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)
Beispiel #4
0
 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')
Beispiel #5
0
 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')
    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)
Beispiel #7
0
    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)
 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')
 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.assertTemplateUsed(response, 'phonebook/home.html')