2017-07-28 16:40:34 +00:00
|
|
|
#external library imports
|
2013-06-03 16:31:39 +00:00
|
|
|
import json
|
2011-11-22 01:12:13 +00:00
|
|
|
import re
|
2016-03-25 18:13:39 +00:00
|
|
|
import mimetypes
|
2011-11-22 01:12:13 +00:00
|
|
|
|
2013-06-03 16:31:39 +00:00
|
|
|
from datetime import timedelta
|
|
|
|
from decimal import Decimal as D
|
|
|
|
|
2017-07-28 16:40:34 +00:00
|
|
|
#django imports
|
2016-07-23 16:08:28 +00:00
|
|
|
from django.contrib import auth
|
2013-06-03 16:31:39 +00:00
|
|
|
from django.contrib.auth.models import User
|
2012-11-02 21:46:49 +00:00
|
|
|
from django.core import mail
|
2013-06-03 16:31:39 +00:00
|
|
|
from django.core.urlresolvers import reverse
|
|
|
|
from django.test import TestCase
|
|
|
|
from django.test.client import Client
|
|
|
|
|
|
|
|
from notification.models import Notice
|
2012-11-02 21:46:49 +00:00
|
|
|
|
2017-07-28 16:40:34 +00:00
|
|
|
#regluit imports
|
2016-07-14 16:25:18 +00:00
|
|
|
from regluit.core.models import Work, Campaign, RightsHolder, Claim, Subject
|
2012-11-01 21:06:11 +00:00
|
|
|
from regluit.payment.models import Transaction
|
|
|
|
from regluit.payment.manager import PaymentManager
|
2012-11-06 19:22:25 +00:00
|
|
|
from regluit.payment.stripelib import StripeClient, TEST_CARDS, ERROR_TESTING, card
|
2012-03-07 19:42:16 +00:00
|
|
|
from regluit.utils.localdatetime import now
|
2011-08-31 03:46:55 +00:00
|
|
|
|
2011-10-10 16:57:10 +00:00
|
|
|
class WishlistTests(TestCase):
|
2016-12-29 19:11:17 +00:00
|
|
|
fixtures = ['initial_data.json', 'neuromancer.json']
|
2011-10-10 16:57:10 +00:00
|
|
|
def setUp(self):
|
|
|
|
self.user = User.objects.create_user('test', 'test@example.org', 'test')
|
|
|
|
self.client = Client()
|
|
|
|
self.client.login(username='test', password='test')
|
2011-08-31 03:46:55 +00:00
|
|
|
|
2011-10-10 16:57:10 +00:00
|
|
|
def test_add_remove(self):
|
|
|
|
# add a book to the wishlist
|
2017-07-28 16:40:34 +00:00
|
|
|
r = self.client.post("/wishlist/", {"googlebooks_id": "IDFfMPW32hQC"},
|
2011-10-10 16:57:10 +00:00
|
|
|
HTTP_X_REQUESTED_WITH="XMLHttpRequest")
|
2013-03-13 03:37:53 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
2011-10-10 16:57:10 +00:00
|
|
|
self.assertEqual(self.user.wishlist.works.all().count(), 1)
|
2017-07-28 16:40:34 +00:00
|
|
|
wished = self.user.wishlist.works.all()[0]
|
2011-12-19 22:09:01 +00:00
|
|
|
# test the work page
|
2012-02-07 20:47:32 +00:00
|
|
|
r = self.client.get("/work/%s/" % wished.id)
|
2011-12-19 22:09:01 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
anon_client = Client()
|
2012-02-07 20:47:32 +00:00
|
|
|
r = anon_client.get("/work/%s/" % wished.id)
|
2011-12-19 22:09:01 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
|
2011-10-10 16:57:10 +00:00
|
|
|
# remove the book
|
2017-07-28 16:40:34 +00:00
|
|
|
r = self.client.post("/wishlist/", {"remove_work_id": wished.id},
|
2011-10-10 16:57:10 +00:00
|
|
|
HTTP_X_REQUESTED_WITH="XMLHttpRequest")
|
|
|
|
self.assertEqual(self.user.wishlist.works.all().count(), 0)
|
2011-10-17 18:37:31 +00:00
|
|
|
|
2016-07-14 16:25:18 +00:00
|
|
|
class RhPageTests(TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.user = User.objects.create_user('test', 'test@example.org', 'test')
|
|
|
|
self.rh_user = User.objects.create_user('rh', 'rh@example.org', 'test')
|
|
|
|
self.staff_user = User.objects.create_superuser('staff', 'staff@example.org', 'test')
|
2017-07-28 16:40:34 +00:00
|
|
|
self.work = Work.objects.create(title="test work", language='en')
|
2016-07-14 16:25:18 +00:00
|
|
|
rh = RightsHolder.objects.create(rights_holder_name='test', owner=self.rh_user)
|
2017-07-28 16:40:34 +00:00
|
|
|
Claim.objects.create(work=self.work, user=self.rh_user, status='active', rights_holder=rh)
|
2016-07-14 16:25:18 +00:00
|
|
|
self.kw = Subject.objects.create(name="Fiction")
|
|
|
|
|
|
|
|
def test_anonymous(self):
|
|
|
|
anon_client = Client()
|
|
|
|
r = anon_client.get("/work/{}/".format(self.work.id))
|
2018-01-12 17:05:13 +00:00
|
|
|
r = anon_client.head("/work/{}/".format(self.work.id))
|
2016-07-14 16:25:18 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
csrfmatch = re.search("name='csrfmiddlewaretoken' value='([^']*)'", r.content)
|
|
|
|
self.assertFalse(csrfmatch)
|
|
|
|
r = anon_client.post("/work/{}/kw/".format(self.work.id))
|
|
|
|
self.assertEqual(r.status_code, 302)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2016-07-14 16:25:18 +00:00
|
|
|
def can_edit(self, client, can=True):
|
|
|
|
r = client.get("/work/{}/".format(self.work.id))
|
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
csrfmatch = re.search("name='csrfmiddlewaretoken' value='([^']*)'", r.content)
|
|
|
|
self.assertTrue(csrfmatch)
|
2017-07-28 16:40:34 +00:00
|
|
|
csrf = csrfmatch.group(1)
|
2016-07-14 16:25:18 +00:00
|
|
|
r = client.post("/work/{}/kw/".format(self.work.id), {
|
2017-07-28 16:40:34 +00:00
|
|
|
u'csrfmiddlewaretoken': csrf,
|
2016-07-14 16:25:18 +00:00
|
|
|
u'kw_add':u'true',
|
|
|
|
u'add_kw_0':u'Fiction',
|
|
|
|
u'add_kw_1':self.kw.id
|
|
|
|
})
|
|
|
|
if can:
|
|
|
|
self.assertEqual(r.content, u'Fiction')
|
|
|
|
else:
|
|
|
|
self.assertEqual(r.content, u'true')
|
|
|
|
r = client.post("/work/{}/kw/".format(self.work.id), {
|
2017-07-28 16:40:34 +00:00
|
|
|
u'csrfmiddlewaretoken': csrf,
|
2016-07-14 16:25:18 +00:00
|
|
|
u'remove_kw' : u'Fiction'
|
|
|
|
})
|
|
|
|
if can:
|
|
|
|
self.assertEqual(r.content, u'removed Fiction')
|
|
|
|
else:
|
|
|
|
self.assertEqual(r.content, u'False')
|
|
|
|
|
|
|
|
def test_user(self):
|
|
|
|
# test non-RightsHolder
|
|
|
|
client = Client()
|
|
|
|
client.login(username='test', password='test')
|
|
|
|
self.can_edit(client, can=False)
|
|
|
|
|
|
|
|
def test_rh(self):
|
|
|
|
# test RightsHolder
|
|
|
|
client = Client()
|
|
|
|
client.login(username='rh', password='test')
|
|
|
|
self.can_edit(client)
|
|
|
|
|
|
|
|
def test_staff(self):
|
|
|
|
client = Client()
|
|
|
|
client.login(username='staff', password='test')
|
|
|
|
self.can_edit(client)
|
|
|
|
|
|
|
|
|
2011-12-19 22:09:01 +00:00
|
|
|
class PageTests(TestCase):
|
2011-10-17 18:37:31 +00:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.user = User.objects.create_user('test', 'test@example.org', 'test')
|
2016-07-14 16:25:18 +00:00
|
|
|
User.objects.create_user('test_other', 'test@example.org', 'test_other')
|
2011-10-17 18:37:31 +00:00
|
|
|
self.client = Client()
|
|
|
|
self.client.login(username='test', password='test')
|
2017-07-28 16:40:34 +00:00
|
|
|
w = Work.objects.create(title="test work", language='en')
|
2016-03-25 18:13:39 +00:00
|
|
|
|
|
|
|
def test_setttings(self):
|
2017-07-28 16:40:34 +00:00
|
|
|
self.assertEqual(mimetypes.guess_type('/whatever/my_file.epub')[0], 'application/epub+zip')
|
2011-10-17 18:37:31 +00:00
|
|
|
|
2011-12-19 22:09:01 +00:00
|
|
|
def test_view_by_self(self):
|
2011-10-17 18:37:31 +00:00
|
|
|
# logged in
|
|
|
|
r = self.client.get("/supporter/test/")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2012-01-10 20:20:02 +00:00
|
|
|
r = self.client.get("/search/?q=sverige")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2015-02-12 18:37:51 +00:00
|
|
|
r = self.client.get("/search/?q=sverige&page=2")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2016-05-25 13:12:37 +00:00
|
|
|
r = self.client.get("/notification/settings/")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2011-12-19 22:09:01 +00:00
|
|
|
|
|
|
|
def test_view_by_other(self):
|
|
|
|
# someone else's supporter page
|
|
|
|
r = self.client.get("/supporter/test_other/")
|
2017-07-28 16:40:34 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
2011-12-19 22:09:01 +00:00
|
|
|
|
|
|
|
def test_view_by_anonymous(self):
|
2011-10-17 18:37:31 +00:00
|
|
|
# not logged in
|
|
|
|
anon_client = Client()
|
2011-12-19 22:09:01 +00:00
|
|
|
r = anon_client.get("/supporter/test/")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
r = anon_client.get("/")
|
2011-10-17 18:37:31 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
2012-01-10 20:20:02 +00:00
|
|
|
r = anon_client.get("/search/?q=sverige")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2015-02-12 18:37:51 +00:00
|
|
|
r = anon_client.get("/search/?q=sverige&page=2")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2012-03-08 03:06:30 +00:00
|
|
|
r = anon_client.get("/info/metrics.html")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2013-07-29 20:49:50 +00:00
|
|
|
r = anon_client.get("/marc/")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2014-12-03 16:47:59 +00:00
|
|
|
r = anon_client.get("/creativecommons/?order_by=popular")
|
2014-05-08 15:57:22 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
r = anon_client.get("/creativecommons/by")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2014-12-03 16:47:59 +00:00
|
|
|
r = anon_client.get("/free/by-nc/?order_by=title")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
r = anon_client.get("/free/epub/gfdl/")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2011-11-22 01:12:13 +00:00
|
|
|
|
|
|
|
class GoogleBooksTest(TestCase):
|
2016-12-29 19:11:17 +00:00
|
|
|
fixtures = ['initial_data.json', 'neuromancer.json']
|
2011-11-22 01:12:13 +00:00
|
|
|
def test_googlebooks_id(self):
|
2016-12-29 19:11:17 +00:00
|
|
|
r = self.client.get("/googlebooks/IDFfMPW32hQC/")
|
2011-11-22 01:12:13 +00:00
|
|
|
self.assertEqual(r.status_code, 302)
|
|
|
|
work_url = r['location']
|
2017-07-28 16:40:34 +00:00
|
|
|
self.assertTrue(re.match(r'.*/work/\d+/$', work_url))
|
2011-11-22 01:12:13 +00:00
|
|
|
|
2012-01-04 22:14:37 +00:00
|
|
|
class CampaignUiTests(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.user = User.objects.create_user('test', 'test@example.org', 'test')
|
|
|
|
self.client = Client()
|
|
|
|
# load a Work and a Campaign to create a Pledge page
|
|
|
|
self.work = Work(title="test Work")
|
|
|
|
self.work.save()
|
2012-03-07 19:42:16 +00:00
|
|
|
self.campaign = Campaign(target=D('1000.00'), deadline=now() + timedelta(days=180),
|
2014-02-21 18:16:55 +00:00
|
|
|
work=self.work, description='dummy description')
|
2012-01-04 22:14:37 +00:00
|
|
|
self.campaign.save()
|
2012-04-03 14:45:48 +00:00
|
|
|
|
|
|
|
rh = RightsHolder(owner = self.user, rights_holder_name = 'rights holder name')
|
|
|
|
rh.save()
|
|
|
|
cl = Claim(rights_holder = rh, work = self.work, user = self.user, status = 'active')
|
|
|
|
cl.save()
|
|
|
|
|
2012-01-04 22:14:37 +00:00
|
|
|
self.campaign.activate()
|
|
|
|
|
|
|
|
def test_login_required_for_pledge(self):
|
|
|
|
""" Make sure that the user has to be logged in to be able to access a pledge page"""
|
|
|
|
pledge_path = reverse("pledge", kwargs={'work_id': self.work.id})
|
|
|
|
r = self.client.get(pledge_path)
|
|
|
|
self.assertEqual(r.status_code, 302)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-01-04 22:14:37 +00:00
|
|
|
# now login and see whether the pledge page is accessible
|
|
|
|
self.client.login(username='test', password='test')
|
|
|
|
r = self.client.get(pledge_path)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-01-04 22:14:37 +00:00
|
|
|
def tearDown(self):
|
2012-10-10 20:59:04 +00:00
|
|
|
pass
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-10 20:59:04 +00:00
|
|
|
class PledgingUiTests(TestCase):
|
2016-12-29 19:11:17 +00:00
|
|
|
fixtures = ['initial_data.json', 'neuromancer.json']
|
2012-10-10 20:59:04 +00:00
|
|
|
def setUp(self):
|
|
|
|
self.USERNAME = 'testname'
|
|
|
|
self.PASSWORD = 'testpw'
|
|
|
|
self.EMAIL = 'test@example.org'
|
|
|
|
self.user = User.objects.create_user(self.USERNAME, self.EMAIL, self.PASSWORD)
|
|
|
|
self.client = Client()
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-10 20:59:04 +00:00
|
|
|
# login and heck whether user logged in
|
|
|
|
self.assertTrue(self.client.login(username=self.USERNAME, password=self.PASSWORD))
|
2017-07-27 14:33:13 +00:00
|
|
|
# https://stackoverflow.com/a/6013115
|
2016-07-23 16:08:28 +00:00
|
|
|
#self.assertEqual(self.client.session['_auth_user_id'], self.user.pk)
|
|
|
|
|
|
|
|
user = auth.get_user(self.client)
|
|
|
|
assert user.is_authenticated()
|
2017-07-28 16:40:34 +00:00
|
|
|
|
|
|
|
|
2012-10-10 20:59:04 +00:00
|
|
|
# load a Work by putting it on the User's wishlist
|
2017-07-28 16:40:34 +00:00
|
|
|
r = self.client.post("/wishlist/", {"googlebooks_id": "IDFfMPW32hQC"},
|
2012-10-10 20:59:04 +00:00
|
|
|
HTTP_X_REQUESTED_WITH="XMLHttpRequest")
|
2013-03-13 03:37:53 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
2012-10-10 20:59:04 +00:00
|
|
|
self.assertEqual(self.user.wishlist.works.all().count(), 1)
|
2017-07-28 16:40:34 +00:00
|
|
|
wished = self.user.wishlist.works.all()[0]
|
2012-10-10 20:59:04 +00:00
|
|
|
# test the work page
|
|
|
|
r = self.client.get("/work/%s/" % wished.id)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
anon_client = Client()
|
|
|
|
r = anon_client.get("/work/%s/" % wished.id)
|
2017-07-28 16:40:34 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
|
2012-10-10 20:59:04 +00:00
|
|
|
# load a Work and a Campaign to create a Pledge page
|
|
|
|
self.work = self.user.wishlist.works.all()[0]
|
|
|
|
self.campaign = Campaign(target=D('1000.00'), deadline=now() + timedelta(days=180),
|
2014-02-21 18:16:55 +00:00
|
|
|
work=self.work, description='dummy description')
|
2012-10-10 20:59:04 +00:00
|
|
|
self.campaign.save()
|
|
|
|
|
|
|
|
rh = RightsHolder(owner = self.user, rights_holder_name = 'rights holder name')
|
|
|
|
rh.save()
|
|
|
|
cl = Claim(rights_holder = rh, work = self.work, user = self.user, status = 'active')
|
|
|
|
cl.save()
|
|
|
|
|
2017-07-28 16:40:34 +00:00
|
|
|
self.campaign.activate()
|
|
|
|
|
2012-10-10 20:59:04 +00:00
|
|
|
|
|
|
|
def test_successful_stripe_pledge(self):
|
|
|
|
"""can we land on the work page and submit a stripe token?"""
|
|
|
|
# work page and hit support
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-10 20:59:04 +00:00
|
|
|
r = self.client.get("/work/%s/" % self.work.id)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
|
|
|
|
# go to pledge page
|
|
|
|
r = self.client.get("/pledge/%s" % self.work.id, data={}, follow=True)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-10 20:59:04 +00:00
|
|
|
# submit to pledge page
|
|
|
|
r = self.client.post("/pledge/%s" % self.work.id, data={'preapproval_amount':'10',
|
|
|
|
'premium_id':'150'}, follow=True)
|
2017-07-28 16:40:34 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
|
|
|
|
|
2012-10-10 20:59:04 +00:00
|
|
|
def tearDown(self):
|
|
|
|
pass
|
2012-10-31 18:08:46 +00:00
|
|
|
|
|
|
|
class UnifiedCampaignTests(TestCase):
|
2017-07-28 16:40:34 +00:00
|
|
|
fixtures = ['initial_data.json','basic_campaign_test.json']
|
|
|
|
|
2017-07-28 17:13:18 +00:00
|
|
|
def verify_setup(self):
|
2012-10-31 18:08:46 +00:00
|
|
|
# testing basics: are there 3 users?
|
2012-10-31 18:57:39 +00:00
|
|
|
|
2012-10-31 18:08:46 +00:00
|
|
|
self.assertEqual(User.objects.count(), 3)
|
|
|
|
# make sure we know the passwords for the users
|
|
|
|
#RaymondYee / raymond.yee@gmail.com / Test_Password_
|
|
|
|
#hmelville / rdhyee@yahoo.com / gofish!
|
|
|
|
#dataunbound / raymond.yee@dataunbound.com / numbers_unbound
|
|
|
|
self.client = Client()
|
|
|
|
self.assertTrue(self.client.login(username="RaymondYee", password="Test_Password_"))
|
|
|
|
self.assertTrue(self.client.login(username="hmelville", password="gofish!"))
|
|
|
|
self.assertTrue(self.client.login(username="dataunbound", password="numbers_unbound"))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-31 18:57:39 +00:00
|
|
|
# how many works and campaigns?
|
|
|
|
self.assertEqual(Work.objects.count(), 3)
|
|
|
|
self.assertEqual(Campaign.objects.count(), 2)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2017-07-28 17:13:18 +00:00
|
|
|
def do_test_junk_webhook(self):
|
2012-11-02 21:46:49 +00:00
|
|
|
"""send in junk json and then an event that doesn't exist"""
|
|
|
|
# non-json
|
|
|
|
ipn_url = reverse("HandleIPN", args=('stripelib',))
|
|
|
|
r = self.client.post(ipn_url, data="X", content_type="application/json; charset=utf-8")
|
|
|
|
self.assertEqual(r.status_code, 400)
|
|
|
|
# junk event_id
|
|
|
|
r = self.client.post(ipn_url, data='{"id": "evt_XXXXXXXXX"}', content_type="application/json; charset=utf-8")
|
2017-07-28 16:40:34 +00:00
|
|
|
self.assertEqual(r.status_code, 400)
|
2012-10-31 18:57:39 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
def pledge_to_work_with_cc(self, username, password, work_id, card, preapproval_amount='10', premium_id='150'):
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-31 18:08:46 +00:00
|
|
|
# how much of test.campaigntest.test_relaunch can be done here?
|
2012-11-06 19:22:25 +00:00
|
|
|
self.assertTrue(self.client.login(username=username, password=password))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-31 18:57:39 +00:00
|
|
|
# Pro Web 2.0 Mashups
|
2012-11-06 19:22:25 +00:00
|
|
|
self.work = Work.objects.get(id=work_id)
|
2012-10-31 18:57:39 +00:00
|
|
|
r = self.client.get("/work/%s/" % (self.work.id))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-31 18:57:39 +00:00
|
|
|
r = self.client.get("/work/%s/" % self.work.id)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
|
|
|
|
# go to pledge page
|
|
|
|
r = self.client.get("/pledge/%s" % self.work.id, data={}, follow=True)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-10-31 18:57:39 +00:00
|
|
|
# submit to pledge page
|
2012-11-06 19:22:25 +00:00
|
|
|
r = self.client.post("/pledge/%s/" % self.work.id, data={'preapproval_amount': preapproval_amount,
|
|
|
|
'premium_id':premium_id}, follow=True)
|
2012-11-01 21:06:11 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-01 21:06:11 +00:00
|
|
|
# Should now be on the fund page
|
|
|
|
pledge_fund_path = r.request.get('PATH_INFO')
|
2013-08-20 05:01:36 +00:00
|
|
|
self.assertTrue(pledge_fund_path.startswith('/payment/fund'))
|
2012-11-01 21:06:11 +00:00
|
|
|
# pull out the transaction info
|
2013-08-20 05:01:36 +00:00
|
|
|
t_id = int(pledge_fund_path.replace('/payment/fund/',''))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-01 21:06:11 +00:00
|
|
|
# r.content holds the page content
|
|
|
|
# create a stripe token to submit to form
|
2017-07-28 16:40:34 +00:00
|
|
|
|
|
|
|
|
2012-11-01 21:06:11 +00:00
|
|
|
sc = StripeClient()
|
2012-11-06 19:22:25 +00:00
|
|
|
stripe_token = sc.create_token(card=card)
|
2017-07-28 16:26:26 +00:00
|
|
|
|
|
|
|
# track start time and end time of these stipe interactions so that we can limit the window of Events to look for
|
|
|
|
# time0 = time.time() <--- this method was brittle because of clock skew and latency
|
|
|
|
time0 = stripe_token['created']
|
2012-11-01 21:06:11 +00:00
|
|
|
r = self.client.post(pledge_fund_path, data={'stripe_token':stripe_token.id}, follow=True)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-01 21:06:11 +00:00
|
|
|
# where are we now?
|
2013-08-20 05:01:36 +00:00
|
|
|
self.assertEqual(r.request.get('PATH_INFO'), '/fund/complete/')
|
2012-11-01 21:06:11 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-01 21:06:11 +00:00
|
|
|
# dig up the transaction and charge it
|
|
|
|
pm = PaymentManager()
|
|
|
|
transaction = Transaction.objects.get(id=t_id)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
# catch any exception and pass it along
|
|
|
|
try:
|
|
|
|
self.assertTrue(pm.execute_transaction(transaction, ()))
|
|
|
|
except Exception, charge_exception:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
charge_exception = None
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2017-07-28 16:26:26 +00:00
|
|
|
# retrieve events from this period
|
|
|
|
events = list(sc._all_objs('Event', created={'gte': time0}))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
return (events, charge_exception)
|
|
|
|
|
|
|
|
def good_cc_scenario(self):
|
|
|
|
# how much of test.campaigntest.test_relaunch can be done here?
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
card1 = card(number=TEST_CARDS[0][0], exp_month=1, exp_year='2020', cvc='123', name='Raymond Yee',
|
|
|
|
address_line1="100 Jackson St.", address_line2="", address_zip="94706", address_state="CA", address_country=None) # good card
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
(events, charge_exception) = self.pledge_to_work_with_cc(username="RaymondYee", password="Test_Password_", work_id=1, card=card1,
|
|
|
|
preapproval_amount='10', premium_id='150')
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
self.assertEqual(charge_exception, None)
|
2012-11-01 21:06:11 +00:00
|
|
|
|
2013-07-15 21:52:29 +00:00
|
|
|
# expect to have 3 events (there is a possibility that someone else could be running tests on this stripe account at the same time)
|
2017-07-28 16:40:34 +00:00
|
|
|
# events returned sorted in reverse chronological order.
|
|
|
|
|
2013-07-15 21:52:29 +00:00
|
|
|
self.assertEqual(len(events), 3)
|
2012-11-01 21:06:11 +00:00
|
|
|
self.assertEqual(events[0].type, 'charge.succeeded')
|
2013-07-15 21:52:29 +00:00
|
|
|
self.assertEqual(events[1].type, 'customer.card.created')
|
|
|
|
self.assertEqual(events[2].type, 'customer.created')
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-02 21:46:49 +00:00
|
|
|
# now feed each of the events to the IPN processor.
|
|
|
|
ipn_url = reverse("HandleIPN", args=('stripelib',))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-02 21:46:49 +00:00
|
|
|
for (i, event) in enumerate(events):
|
|
|
|
r = self.client.post(ipn_url, data=json.dumps({"id": event.id}), content_type="application/json; charset=utf-8")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-22 00:42:04 +00:00
|
|
|
# expected notices
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-22 00:42:04 +00:00
|
|
|
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_you_have_pledged', recipient__username='RaymondYee')), 1)
|
|
|
|
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_charged', recipient__username='RaymondYee')), 1)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
|
|
|
|
def bad_cc_scenario(self):
|
|
|
|
"""Goal of this scenario: enter a CC that will cause a charge.failed event, have user repledge succesfully"""
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
card1 = card(number=ERROR_TESTING['BAD_ATTACHED_CARD'][0])
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
(events, charge_exception) = self.pledge_to_work_with_cc(username="dataunbound", password="numbers_unbound", work_id=2, card=card1,
|
|
|
|
preapproval_amount='10', premium_id='150')
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
# we should have an exception when the charge was attempted
|
|
|
|
self.assertTrue(charge_exception is not None)
|
2012-11-02 21:46:49 +00:00
|
|
|
|
2013-07-15 21:52:29 +00:00
|
|
|
# expect to have 3 events (there is a possibility that someone else could be running tests on this stripe account at the same time)
|
2017-07-28 16:40:34 +00:00
|
|
|
# events returned sorted in reverse chronological order.
|
|
|
|
|
2013-07-15 21:52:29 +00:00
|
|
|
self.assertEqual(len(events), 3)
|
2012-11-06 19:22:25 +00:00
|
|
|
self.assertEqual(events[0].type, 'charge.failed')
|
2013-07-15 21:52:29 +00:00
|
|
|
self.assertEqual(events[1].type, 'customer.card.created')
|
|
|
|
self.assertEqual(events[2].type, 'customer.created')
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
# now feed each of the events to the IPN processor.
|
|
|
|
ipn_url = reverse("HandleIPN", args=('stripelib',))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
for (i, event) in enumerate(events):
|
|
|
|
r = self.client.post(ipn_url, data=json.dumps({"id": event.id}), content_type="application/json; charset=utf-8")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-22 00:42:04 +00:00
|
|
|
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_you_have_pledged', recipient__username='dataunbound')), 1)
|
2017-07-28 16:40:34 +00:00
|
|
|
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_failed', recipient__username='dataunbound')), 1)
|
|
|
|
|
|
|
|
def recharge_with_new_card(self):
|
|
|
|
|
2012-11-12 20:48:03 +00:00
|
|
|
# mark campaign as SUCCESSFUL -- campaign for work 2
|
|
|
|
c = Work.objects.get(id=2).last_campaign()
|
|
|
|
c.status = 'SUCCESSFUL'
|
|
|
|
c.save()
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-12 20:48:03 +00:00
|
|
|
# set up a good card
|
|
|
|
card1 = card(number=TEST_CARDS[0][0], exp_month=1, exp_year='2020', cvc='123', name='dataunbound',
|
|
|
|
address_line1="100 Jackson St.", address_line2="", address_zip="94706", address_state="CA", address_country=None) # good card
|
2012-11-01 21:06:11 +00:00
|
|
|
|
2012-11-12 20:48:03 +00:00
|
|
|
sc = StripeClient()
|
|
|
|
stripe_token = sc.create_token(card=card1)
|
2017-07-28 16:26:26 +00:00
|
|
|
|
|
|
|
# track start time and end time of these stipe interactions so that we can limit the window of Events to look for
|
|
|
|
time0 = stripe_token['created']
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-12 20:48:03 +00:00
|
|
|
r = self.client.post("/accounts/manage/", data={'stripe_token':stripe_token.id}, follow=True)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2017-07-28 16:26:26 +00:00
|
|
|
#time1 = time.time()
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-14 22:33:37 +00:00
|
|
|
# retrieve events from this period -- need to pass in ints for event creation times
|
2017-07-28 16:26:26 +00:00
|
|
|
events = list(sc._all_objs('Event', created={'gte': time0}))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-14 22:33:37 +00:00
|
|
|
# now feed each of the events to the IPN processor.
|
|
|
|
ipn_url = reverse("HandleIPN", args=('stripelib',))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-14 22:33:37 +00:00
|
|
|
for (i, event) in enumerate(events):
|
|
|
|
r = self.client.post(ipn_url, data=json.dumps({"id": event.id}), content_type="application/json; charset=utf-8")
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2012-11-22 00:42:04 +00:00
|
|
|
|
|
|
|
# a charge should now go through
|
|
|
|
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_charged', recipient__username='dataunbound')), 1)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
|
|
|
|
2012-11-06 19:22:25 +00:00
|
|
|
def test_good_bad_cc_scenarios(self):
|
2017-07-28 17:13:18 +00:00
|
|
|
self.verify_setup()
|
|
|
|
self.do_test_junk_webhook()
|
2012-11-06 19:22:25 +00:00
|
|
|
self.good_cc_scenario()
|
|
|
|
self.bad_cc_scenario()
|
2012-11-12 20:48:03 +00:00
|
|
|
self.recharge_with_new_card()
|
2012-11-14 22:33:37 +00:00
|
|
|
self.stripe_token_none()
|
2017-07-28 17:13:18 +00:00
|
|
|
self.assertEqual(len(mail.outbox), 9)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2017-07-28 16:26:26 +00:00
|
|
|
# expect these 6 notices :
|
|
|
|
# u'pledge_charged', <User: dataunbound>,
|
|
|
|
# u'pledge_failed', <User: dataunbound>,
|
|
|
|
# u'new_wisher', <User: hmelville>,
|
|
|
|
# u'pledge_you_have_pledged', <User: dataunbound>,
|
|
|
|
# u'pledge_charged', <User: RaymondYee>,
|
|
|
|
# u'pledge_you_have_pledged', <User: RaymondYee>,
|
2017-07-28 16:40:34 +00:00
|
|
|
# plus two customer creation emails
|
|
|
|
|
2012-11-14 22:33:37 +00:00
|
|
|
def stripe_token_none(self):
|
2012-11-14 20:14:06 +00:00
|
|
|
"""Test that if an empty stripe_token is submitted to pledge page, we catch that issue and present normal error page to user"""
|
2017-07-28 16:40:34 +00:00
|
|
|
|
|
|
|
username = "hmelville"
|
|
|
|
password = "gofish!"
|
|
|
|
work_id = 1
|
|
|
|
preapproval_amount = '10'
|
|
|
|
premium_id = '150'
|
|
|
|
|
2012-11-14 19:39:56 +00:00
|
|
|
self.assertTrue(self.client.login(username=username, password=password))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-14 19:39:56 +00:00
|
|
|
# Pro Web 2.0 Mashups
|
|
|
|
self.work = Work.objects.get(id=work_id)
|
|
|
|
r = self.client.get("/work/%s/" % (self.work.id))
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-14 19:39:56 +00:00
|
|
|
r = self.client.get("/work/%s/" % self.work.id)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
|
|
|
|
# go to pledge page
|
|
|
|
r = self.client.get("/pledge/%s" % self.work.id, data={}, follow=True)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-14 19:39:56 +00:00
|
|
|
# submit to pledge page
|
|
|
|
r = self.client.post("/pledge/%s/" % self.work.id, data={'preapproval_amount': preapproval_amount,
|
|
|
|
'premium_id':premium_id}, follow=True)
|
|
|
|
self.assertEqual(r.status_code, 200)
|
2017-07-28 16:40:34 +00:00
|
|
|
|
2012-11-14 19:39:56 +00:00
|
|
|
# Should now be on the fund page
|
|
|
|
pledge_fund_path = r.request.get('PATH_INFO')
|
2013-08-20 05:01:36 +00:00
|
|
|
self.assertTrue(pledge_fund_path.startswith('/payment/fund'))
|
2012-11-14 19:39:56 +00:00
|
|
|
# pull out the transaction info
|
2017-07-28 16:40:34 +00:00
|
|
|
t_id = int(pledge_fund_path.replace('/payment/fund/',''))
|
|
|
|
|
2012-11-14 19:39:56 +00:00
|
|
|
stripe_token = ''
|
2012-11-14 20:14:06 +00:00
|
|
|
|
2012-11-14 19:39:56 +00:00
|
|
|
r = self.client.post(pledge_fund_path, data={'stripe_token':stripe_token}, follow=True)
|
2012-11-14 20:14:06 +00:00
|
|
|
self.assertEqual(r.status_code, 200)
|
|
|
|
|