-
-
Notifications
You must be signed in to change notification settings - Fork 3k
fix(billing): safely initialize Stripe only when publishable key is present (#5344) #5442
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
Closed
fliptrigga13
wants to merge
1
commit into
Dokploy:canary
from
fliptrigga13:fix/issue-5344-self-hosted-stripe-error
+84
−8
Closed
Changes from all commits
Commits
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
67 changes: 67 additions & 0 deletions
67
apps/dokploy/__test__/billing/stripe-initialization.test.ts
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,67 @@ | ||
| import { describe, expect, it, vi } from "vitest"; | ||
|
|
||
| describe("Stripe Initialization in Self-Hosted vs Cloud (Fixes Issue #5344)", () => { | ||
| const createStripeLoader = (loadStripeMock: (key: string) => Promise<any>) => { | ||
| return (publishableKey?: string) => { | ||
| return publishableKey ? loadStripeMock(publishableKey) : null; | ||
| }; | ||
| }; | ||
|
|
||
| it("safely evaluates to null and avoids throwing IntegrationError when publishable key is not set", () => { | ||
| const loadStripeMock = vi.fn((key: string) => { | ||
| if (!key || typeof key !== "string") { | ||
| throw new Error("Missing value for Stripe(): apiKey should be a string."); | ||
| } | ||
| return Promise.resolve({ redirectToCheckout: vi.fn() }); | ||
| }); | ||
|
|
||
| const initStripe = createStripeLoader(loadStripeMock); | ||
|
|
||
| // Self-hosted environment: process.env.NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY is undefined | ||
| const stripePromise = initStripe(undefined); | ||
|
|
||
| expect(stripePromise).toBeNull(); | ||
| expect(loadStripeMock).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it("initializes Stripe normally when publishable key is present in Cloud environment", async () => { | ||
| const mockStripeInstance = { redirectToCheckout: vi.fn() }; | ||
| const loadStripeMock = vi.fn(async (key: string) => mockStripeInstance); | ||
|
|
||
| const initStripe = createStripeLoader(loadStripeMock); | ||
|
|
||
| // Cloud environment: key is configured | ||
| const stripePromise = initStripe("pk_live_12345"); | ||
|
|
||
| expect(stripePromise).not.toBeNull(); | ||
| expect(loadStripeMock).toHaveBeenCalledWith("pk_live_12345"); | ||
|
|
||
| const stripe = await stripePromise; | ||
| expect(stripe).toBe(mockStripeInstance); | ||
| }); | ||
|
|
||
| it("handles checkout attempt safely when Stripe is not configured without crashing", async () => { | ||
| let toastErrorCalledWith: string | null = null; | ||
| const toastMock = { | ||
| error: (msg: string) => { | ||
| toastErrorCalledWith = msg; | ||
| }, | ||
| }; | ||
|
|
||
| const stripePromise: Promise<any> | null = null; | ||
|
|
||
| const handleCheckout = async () => { | ||
| const stripe = stripePromise ? await stripePromise : null; | ||
| if (!stripe) { | ||
| toastMock.error("Stripe is not configured"); | ||
| return false; | ||
| } | ||
| return true; | ||
| }; | ||
|
|
||
| const result = await handleCheckout(); | ||
|
|
||
| expect(result).toBe(false); | ||
| expect(toastErrorCalledWith).toBe("Stripe is not configured"); | ||
| }); | ||
| }); | ||
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These tests recreate the Stripe initialization and checkout guards locally instead of importing or exercising either changed production module. Reverting or breaking the guards in
PlanSteporShowBillingwould therefore leave all three tests passing, so CI does not protect against this dashboard crash returning. Extract the initialization behavior into an imported helper or test the production modules withloadStripemocked. The checkout handler at lines 53–60 has the same problem.