commit
075c2d7734
|
@ -1,18 +1,12 @@
|
|||
"""
|
||||
external library imports
|
||||
"""
|
||||
#external library imports
|
||||
import json
|
||||
import re
|
||||
import time
|
||||
import mimetypes
|
||||
|
||||
from datetime import timedelta
|
||||
from decimal import Decimal as D
|
||||
|
||||
"""
|
||||
django imports
|
||||
"""
|
||||
from django.conf import settings
|
||||
#django imports
|
||||
from django.contrib import auth
|
||||
from django.contrib.auth.models import User
|
||||
from django.core import mail
|
||||
|
@ -22,9 +16,7 @@ from django.test.client import Client
|
|||
|
||||
from notification.models import Notice
|
||||
|
||||
"""
|
||||
regluit imports
|
||||
"""
|
||||
#regluit imports
|
||||
from regluit.core.models import Work, Campaign, RightsHolder, Claim, Subject
|
||||
from regluit.payment.models import Transaction
|
||||
from regluit.payment.manager import PaymentManager
|
||||
|
@ -40,11 +32,11 @@ class WishlistTests(TestCase):
|
|||
|
||||
def test_add_remove(self):
|
||||
# add a book to the wishlist
|
||||
r = self.client.post("/wishlist/", {"googlebooks_id": "IDFfMPW32hQC"},
|
||||
r = self.client.post("/wishlist/", {"googlebooks_id": "IDFfMPW32hQC"},
|
||||
HTTP_X_REQUESTED_WITH="XMLHttpRequest")
|
||||
self.assertEqual(r.status_code, 200)
|
||||
self.assertEqual(self.user.wishlist.works.all().count(), 1)
|
||||
wished= self.user.wishlist.works.all()[0]
|
||||
wished = self.user.wishlist.works.all()[0]
|
||||
# test the work page
|
||||
r = self.client.get("/work/%s/" % wished.id)
|
||||
self.assertEqual(r.status_code, 200)
|
||||
|
@ -53,7 +45,7 @@ class WishlistTests(TestCase):
|
|||
self.assertEqual(r.status_code, 200)
|
||||
|
||||
# remove the book
|
||||
r = self.client.post("/wishlist/", {"remove_work_id": wished.id},
|
||||
r = self.client.post("/wishlist/", {"remove_work_id": wished.id},
|
||||
HTTP_X_REQUESTED_WITH="XMLHttpRequest")
|
||||
self.assertEqual(self.user.wishlist.works.all().count(), 0)
|
||||
|
||||
|
@ -63,9 +55,9 @@ class RhPageTests(TestCase):
|
|||
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')
|
||||
self.work = Work.objects.create(title="test work",language='en')
|
||||
self.work = Work.objects.create(title="test work", language='en')
|
||||
rh = RightsHolder.objects.create(rights_holder_name='test', owner=self.rh_user)
|
||||
Claim.objects.create(work=self.work, user=self.rh_user, status='active',rights_holder=rh)
|
||||
Claim.objects.create(work=self.work, user=self.rh_user, status='active', rights_holder=rh)
|
||||
self.kw = Subject.objects.create(name="Fiction")
|
||||
|
||||
def test_anonymous(self):
|
||||
|
@ -76,15 +68,15 @@ class RhPageTests(TestCase):
|
|||
self.assertFalse(csrfmatch)
|
||||
r = anon_client.post("/work/{}/kw/".format(self.work.id))
|
||||
self.assertEqual(r.status_code, 302)
|
||||
|
||||
|
||||
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)
|
||||
csrf=csrfmatch.group(1)
|
||||
csrf = csrfmatch.group(1)
|
||||
r = client.post("/work/{}/kw/".format(self.work.id), {
|
||||
u'csrfmiddlewaretoken': csrf,
|
||||
u'csrfmiddlewaretoken': csrf,
|
||||
u'kw_add':u'true',
|
||||
u'add_kw_0':u'Fiction',
|
||||
u'add_kw_1':self.kw.id
|
||||
|
@ -94,7 +86,7 @@ class RhPageTests(TestCase):
|
|||
else:
|
||||
self.assertEqual(r.content, u'true')
|
||||
r = client.post("/work/{}/kw/".format(self.work.id), {
|
||||
u'csrfmiddlewaretoken': csrf,
|
||||
u'csrfmiddlewaretoken': csrf,
|
||||
u'remove_kw' : u'Fiction'
|
||||
})
|
||||
if can:
|
||||
|
@ -127,10 +119,10 @@ class PageTests(TestCase):
|
|||
User.objects.create_user('test_other', 'test@example.org', 'test_other')
|
||||
self.client = Client()
|
||||
self.client.login(username='test', password='test')
|
||||
w= Work.objects.create(title="test work",language='en')
|
||||
w = Work.objects.create(title="test work", language='en')
|
||||
|
||||
def test_setttings(self):
|
||||
self.assertEqual(mimetypes.guess_type('/whatever/my_file.epub')[0], 'application/epub+zip')
|
||||
self.assertEqual(mimetypes.guess_type('/whatever/my_file.epub')[0], 'application/epub+zip')
|
||||
|
||||
def test_view_by_self(self):
|
||||
# logged in
|
||||
|
@ -146,7 +138,7 @@ class PageTests(TestCase):
|
|||
def test_view_by_other(self):
|
||||
# someone else's supporter page
|
||||
r = self.client.get("/supporter/test_other/")
|
||||
self.assertEqual(r.status_code, 200)
|
||||
self.assertEqual(r.status_code, 200)
|
||||
|
||||
def test_view_by_anonymous(self):
|
||||
# not logged in
|
||||
|
@ -178,7 +170,7 @@ class GoogleBooksTest(TestCase):
|
|||
r = self.client.get("/googlebooks/IDFfMPW32hQC/")
|
||||
self.assertEqual(r.status_code, 302)
|
||||
work_url = r['location']
|
||||
self.assertTrue(re.match('.*/work/\d+/$', work_url))
|
||||
self.assertTrue(re.match(r'.*/work/\d+/$', work_url))
|
||||
|
||||
class CampaignUiTests(TestCase):
|
||||
def setUp(self):
|
||||
|
@ -203,15 +195,15 @@ class CampaignUiTests(TestCase):
|
|||
pledge_path = reverse("pledge", kwargs={'work_id': self.work.id})
|
||||
r = self.client.get(pledge_path)
|
||||
self.assertEqual(r.status_code, 302)
|
||||
|
||||
|
||||
# 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)
|
||||
|
||||
|
||||
def tearDown(self):
|
||||
pass
|
||||
|
||||
|
||||
class PledgingUiTests(TestCase):
|
||||
fixtures = ['initial_data.json', 'neuromancer.json']
|
||||
def setUp(self):
|
||||
|
@ -220,29 +212,29 @@ class PledgingUiTests(TestCase):
|
|||
self.EMAIL = 'test@example.org'
|
||||
self.user = User.objects.create_user(self.USERNAME, self.EMAIL, self.PASSWORD)
|
||||
self.client = Client()
|
||||
|
||||
|
||||
# login and heck whether user logged in
|
||||
self.assertTrue(self.client.login(username=self.USERNAME, password=self.PASSWORD))
|
||||
# http://stackoverflow.com/a/6013115
|
||||
#self.assertEqual(self.client.session['_auth_user_id'], self.user.pk)
|
||||
|
||||
#self.assertEqual(self.client.session['_auth_user_id'], self.user.pk)
|
||||
|
||||
user = auth.get_user(self.client)
|
||||
assert user.is_authenticated()
|
||||
|
||||
|
||||
|
||||
|
||||
# load a Work by putting it on the User's wishlist
|
||||
r = self.client.post("/wishlist/", {"googlebooks_id": "IDFfMPW32hQC"},
|
||||
r = self.client.post("/wishlist/", {"googlebooks_id": "IDFfMPW32hQC"},
|
||||
HTTP_X_REQUESTED_WITH="XMLHttpRequest")
|
||||
self.assertEqual(r.status_code, 200)
|
||||
self.assertEqual(self.user.wishlist.works.all().count(), 1)
|
||||
wished= self.user.wishlist.works.all()[0]
|
||||
wished = self.user.wishlist.works.all()[0]
|
||||
# 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)
|
||||
self.assertEqual(r.status_code, 200)
|
||||
|
||||
self.assertEqual(r.status_code, 200)
|
||||
|
||||
# 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),
|
||||
|
@ -254,32 +246,32 @@ class PledgingUiTests(TestCase):
|
|||
cl = Claim(rights_holder = rh, work = self.work, user = self.user, status = 'active')
|
||||
cl.save()
|
||||
|
||||
self.campaign.activate()
|
||||
self.campaign.activate()
|
||||
|
||||
|
||||
|
||||
def test_successful_stripe_pledge(self):
|
||||
"""can we land on the work page and submit a stripe token?"""
|
||||
# work page and hit support
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
# submit to pledge page
|
||||
r = self.client.post("/pledge/%s" % self.work.id, data={'preapproval_amount':'10',
|
||||
'premium_id':'150'}, follow=True)
|
||||
self.assertEqual(r.status_code, 200)
|
||||
|
||||
|
||||
self.assertEqual(r.status_code, 200)
|
||||
|
||||
|
||||
def tearDown(self):
|
||||
pass
|
||||
|
||||
class UnifiedCampaignTests(TestCase):
|
||||
fixtures=['initial_data.json','basic_campaign_test.json']
|
||||
|
||||
fixtures = ['initial_data.json','basic_campaign_test.json']
|
||||
|
||||
def test_setup(self):
|
||||
# testing basics: are there 3 users?
|
||||
|
||||
|
@ -292,11 +284,11 @@ class UnifiedCampaignTests(TestCase):
|
|||
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"))
|
||||
|
||||
|
||||
# how many works and campaigns?
|
||||
self.assertEqual(Work.objects.count(), 3)
|
||||
self.assertEqual(Campaign.objects.count(), 2)
|
||||
|
||||
|
||||
def test_junk_webhook(self):
|
||||
"""send in junk json and then an event that doesn't exist"""
|
||||
# non-json
|
||||
|
@ -305,53 +297,55 @@ class UnifiedCampaignTests(TestCase):
|
|||
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")
|
||||
self.assertEqual(r.status_code, 400)
|
||||
self.assertEqual(r.status_code, 400)
|
||||
|
||||
def pledge_to_work_with_cc(self, username, password, work_id, card, preapproval_amount='10', premium_id='150'):
|
||||
|
||||
|
||||
# how much of test.campaigntest.test_relaunch can be done here?
|
||||
self.assertTrue(self.client.login(username=username, password=password))
|
||||
|
||||
|
||||
# Pro Web 2.0 Mashups
|
||||
self.work = Work.objects.get(id=work_id)
|
||||
r = self.client.get("/work/%s/" % (self.work.id))
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
# 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)
|
||||
|
||||
|
||||
# Should now be on the fund page
|
||||
pledge_fund_path = r.request.get('PATH_INFO')
|
||||
self.assertTrue(pledge_fund_path.startswith('/payment/fund'))
|
||||
# pull out the transaction info
|
||||
t_id = int(pledge_fund_path.replace('/payment/fund/',''))
|
||||
|
||||
|
||||
# r.content holds the page content
|
||||
# create a stripe token to submit to form
|
||||
|
||||
# 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()
|
||||
|
||||
|
||||
|
||||
sc = StripeClient()
|
||||
stripe_token = sc.create_token(card=card)
|
||||
|
||||
# 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']
|
||||
r = self.client.post(pledge_fund_path, data={'stripe_token':stripe_token.id}, follow=True)
|
||||
|
||||
|
||||
# where are we now?
|
||||
self.assertEqual(r.request.get('PATH_INFO'), '/fund/complete/')
|
||||
self.assertEqual(r.status_code, 200)
|
||||
|
||||
|
||||
# dig up the transaction and charge it
|
||||
pm = PaymentManager()
|
||||
transaction = Transaction.objects.get(id=t_id)
|
||||
|
||||
|
||||
# catch any exception and pass it along
|
||||
try:
|
||||
self.assertTrue(pm.execute_transaction(transaction, ()))
|
||||
|
@ -359,185 +353,160 @@ class UnifiedCampaignTests(TestCase):
|
|||
pass
|
||||
else:
|
||||
charge_exception = None
|
||||
|
||||
time1 = time.time()
|
||||
|
||||
# retrieve events from this period -- need to pass in ints for event creation times
|
||||
events = list(sc._all_objs('Event', created={'gte':int(time0-1.0), 'lte':int(time1+1.0)}))
|
||||
|
||||
|
||||
# retrieve events from this period
|
||||
events = list(sc._all_objs('Event', created={'gte': time0}))
|
||||
|
||||
return (events, charge_exception)
|
||||
|
||||
def good_cc_scenario(self):
|
||||
# how much of test.campaigntest.test_relaunch can be done here?
|
||||
|
||||
|
||||
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
|
||||
|
||||
|
||||
(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')
|
||||
|
||||
|
||||
self.assertEqual(charge_exception, None)
|
||||
|
||||
# expect to have 3 events (there is a possibility that someone else could be running tests on this stripe account at the same time)
|
||||
# events returned sorted in reverse chronological order.
|
||||
|
||||
# events returned sorted in reverse chronological order.
|
||||
|
||||
self.assertEqual(len(events), 3)
|
||||
self.assertEqual(events[0].type, 'charge.succeeded')
|
||||
self.assertEqual(events[1].type, 'customer.card.created')
|
||||
self.assertEqual(events[2].type, 'customer.created')
|
||||
|
||||
|
||||
# now feed each of the events to the IPN processor.
|
||||
ipn_url = reverse("HandleIPN", args=('stripelib',))
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
# expected notices
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
|
||||
def bad_cc_scenario(self):
|
||||
"""Goal of this scenario: enter a CC that will cause a charge.failed event, have user repledge succesfully"""
|
||||
|
||||
|
||||
card1 = card(number=ERROR_TESTING['BAD_ATTACHED_CARD'][0])
|
||||
|
||||
|
||||
(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')
|
||||
|
||||
|
||||
# we should have an exception when the charge was attempted
|
||||
self.assertTrue(charge_exception is not None)
|
||||
|
||||
# expect to have 3 events (there is a possibility that someone else could be running tests on this stripe account at the same time)
|
||||
# events returned sorted in reverse chronological order.
|
||||
|
||||
# events returned sorted in reverse chronological order.
|
||||
|
||||
self.assertEqual(len(events), 3)
|
||||
self.assertEqual(events[0].type, 'charge.failed')
|
||||
self.assertEqual(events[1].type, 'customer.card.created')
|
||||
self.assertEqual(events[2].type, 'customer.created')
|
||||
|
||||
|
||||
# now feed each of the events to the IPN processor.
|
||||
ipn_url = reverse("HandleIPN", args=('stripelib',))
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_you_have_pledged', recipient__username='dataunbound')), 1)
|
||||
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_failed', recipient__username='dataunbound')), 1)
|
||||
|
||||
def recharge_with_new_card(self):
|
||||
|
||||
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_failed', recipient__username='dataunbound')), 1)
|
||||
|
||||
def recharge_with_new_card(self):
|
||||
|
||||
# mark campaign as SUCCESSFUL -- campaign for work 2
|
||||
c = Work.objects.get(id=2).last_campaign()
|
||||
c.status = 'SUCCESSFUL'
|
||||
c.save()
|
||||
|
||||
|
||||
# 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
|
||||
|
||||
# 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()
|
||||
|
||||
sc = StripeClient()
|
||||
stripe_token = sc.create_token(card=card1)
|
||||
|
||||
|
||||
# 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']
|
||||
|
||||
r = self.client.post("/accounts/manage/", data={'stripe_token':stripe_token.id}, follow=True)
|
||||
|
||||
time1 = time.time()
|
||||
|
||||
|
||||
#time1 = time.time()
|
||||
|
||||
# retrieve events from this period -- need to pass in ints for event creation times
|
||||
events = list(sc._all_objs('Event', created={'gte':int(time0-1.0), 'lte':int(time1+1.0)}))
|
||||
|
||||
events = list(sc._all_objs('Event', created={'gte': time0}))
|
||||
|
||||
# now feed each of the events to the IPN processor.
|
||||
ipn_url = reverse("HandleIPN", args=('stripelib',))
|
||||
|
||||
|
||||
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)
|
||||
|
||||
# a charge should now go through
|
||||
self.assertEqual(len(Notice.objects.filter(notice_type__label='pledge_charged', recipient__username='dataunbound')), 1)
|
||||
|
||||
|
||||
|
||||
|
||||
def test_good_bad_cc_scenarios(self):
|
||||
num_prev_emails = len(mail.outbox)
|
||||
self.good_cc_scenario()
|
||||
self.bad_cc_scenario()
|
||||
self.recharge_with_new_card()
|
||||
self.stripe_token_none()
|
||||
self.confirm_num_mail()
|
||||
|
||||
self.assertEqual(len(mail.outbox), num_prev_emails + 8)
|
||||
|
||||
# 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>,
|
||||
# plus two customer creation emails
|
||||
|
||||
def stripe_token_none(self):
|
||||
"""Test that if an empty stripe_token is submitted to pledge page, we catch that issue and present normal error page to user"""
|
||||
|
||||
username="hmelville"
|
||||
password="gofish!"
|
||||
work_id =1
|
||||
preapproval_amount='10'
|
||||
premium_id='150'
|
||||
|
||||
|
||||
username = "hmelville"
|
||||
password = "gofish!"
|
||||
work_id = 1
|
||||
preapproval_amount = '10'
|
||||
premium_id = '150'
|
||||
|
||||
self.assertTrue(self.client.login(username=username, password=password))
|
||||
|
||||
|
||||
# Pro Web 2.0 Mashups
|
||||
self.work = Work.objects.get(id=work_id)
|
||||
r = self.client.get("/work/%s/" % (self.work.id))
|
||||
|
||||
|
||||
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)
|
||||
|
||||
|
||||
# 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)
|
||||
|
||||
|
||||
# Should now be on the fund page
|
||||
pledge_fund_path = r.request.get('PATH_INFO')
|
||||
self.assertTrue(pledge_fund_path.startswith('/payment/fund'))
|
||||
# pull out the transaction info
|
||||
t_id = int(pledge_fund_path.replace('/payment/fund/',''))
|
||||
|
||||
t_id = int(pledge_fund_path.replace('/payment/fund/',''))
|
||||
|
||||
stripe_token = ''
|
||||
|
||||
r = self.client.post(pledge_fund_path, data={'stripe_token':stripe_token}, follow=True)
|
||||
self.assertEqual(r.status_code, 200)
|
||||
|
||||
|
||||
def confirm_num_mail(self):
|
||||
# look at emails generated through these scenarios
|
||||
#print len(mail.outbox)
|
||||
#for (i, m) in enumerate(mail.outbox):
|
||||
# print i, m.subject
|
||||
# if i in [5]:
|
||||
# print m.body
|
||||
|
||||
self.assertEqual(len(mail.outbox), 9)
|
||||
|
||||
# print out notices and eventually write tests here to check expected
|
||||
|
||||
#from notification.models import Notice
|
||||
#print [(n.id, n.notice_type.label, n.recipient, n.added) for n in Notice.objects.all()]
|
||||
|
||||
#[(6L, u'pledge_charged', <User: dataunbound>, datetime.datetime(2012, 11, 21, 18, 33, 15)),
|
||||
#(5L, u'pledge_failed', <User: dataunbound>, datetime.datetime(2012, 11, 21, 18, 33, 10)),
|
||||
#(4L, u'new_wisher', <User: hmelville>, datetime.datetime(2012, 11, 21, 18, 33, 8)),
|
||||
#(3L, u'pledge_you_have_pledged', <User: dataunbound>, datetime.datetime(2012, 11, 21, 18, 33, 7)),
|
||||
#(2L, u'pledge_charged', <User: RaymondYee>, datetime.datetime(2012, 11, 21, 18, 33, 3)),
|
||||
#(1L, u'pledge_you_have_pledged', <User: RaymondYee>, datetime.datetime(2012, 11, 21, 18, 32, 56))]
|
||||
|
||||
#0 [localhost:8000] Thank you for supporting Pro Web 2.0 Mashups at Unglue.it!
|
||||
#1 [localhost:8000] Thanks to you, the campaign for Pro Web 2.0 Mashups has succeeded!
|
||||
#2 Stripe Customer (id cus_0ji1hFS8xLluuZ; description: RaymondYee) created
|
||||
#3 [localhost:8000] Thank you for supporting Moby Dick at Unglue.it!
|
||||
#4 [localhost:8000] Someone new has wished for your work at Unglue.it
|
||||
#5 [localhost:8000] Thanks to you, the campaign for Moby Dick has succeeded! However, your credit card charge failed.
|
||||
#6 Stripe Customer (id cus_0ji2Cmu6sXKBCi; description: dataunbound) created
|
||||
#7 [localhost:8000] Thanks to you, the campaign for Moby Dick has succeeded!
|
||||
#8 Stripe Customer (id cus_0ji24dPDiFGWU2; description: dataunbound) created
|
||||
|
||||
|
|
Loading…
Reference in New Issue