-
-
Notifications
You must be signed in to change notification settings - Fork 177
fix(stripe): store customer ID in profile to prevent duplicate customers #842
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
524a26d
fix(stripe): store customer ID in profile to prevent duplicate customers
Ananya44444 c97ed6b
fixes
Ananya44444 f1ce31f
Merge branch 'main' into stripeid2
Ananya44444 a659340
changed approach
Ananya44444 635dc1c
Merge branch 'main' into stripeid2
Ananya44444 e204bd0
Merge branch 'main' into stripeid2
Ananya44444 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| import json | ||
| from unittest.mock import Mock, patch | ||
|
|
||
| from django.contrib.auth.models import User | ||
| from django.test import Client, TestCase | ||
| from django.urls import reverse | ||
|
|
||
| from ..models import MembershipPlan, Profile, UserMembership | ||
|
|
||
|
|
||
| class CreateDonationSubscriptionViewTests(TestCase): | ||
| def setUp(self): | ||
| self.client = Client() | ||
| self.user = User.objects.create_user(username="test", email="test@example.com", password="pass") | ||
| self.profile, _ = Profile.objects.get_or_create(user=self.user, defaults={"is_teacher": False}) | ||
| self.plan = MembershipPlan.objects.create( | ||
| name="Basic", slug="basic", description="Basic plan", price_monthly=0, price_yearly=0 | ||
| ) | ||
|
|
||
| @patch("stripe.PaymentIntent.create") | ||
| @patch("stripe.Customer.retrieve") | ||
| def test_reuses_existing_stripe_customer(self, mock_retrieve, mock_payment_intent): | ||
| UserMembership.objects.create(user=self.user, plan=self.plan, stripe_customer_id="cus_existing") | ||
| mock_retrieve.return_value = Mock(id="cus_existing") | ||
| mock_payment_intent.return_value = Mock(client_secret="secret", id="pi_123") | ||
| self.client.login(username="test", password="pass") | ||
| response = self.client.post( | ||
| reverse("create_donation_subscription"), | ||
| data=json.dumps({"amount": "10.00", "email": "test@example.com"}), | ||
| content_type="application/json", | ||
| ) | ||
| self.assertEqual(response.status_code, 200) | ||
| mock_retrieve.assert_called_once_with("cus_existing") | ||
|
Ananya44444 marked this conversation as resolved.
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.