2019-09-02 14:29:19 +03:00
|
|
|
defmodule PlausibleWeb.BillingControllerTest do
|
|
|
|
use PlausibleWeb.ConnCase
|
|
|
|
import Plausible.TestUtils
|
|
|
|
|
|
|
|
describe "GET /change-plan" do
|
|
|
|
setup [:create_user, :log_in]
|
|
|
|
|
2019-10-25 09:51:54 +03:00
|
|
|
test "shows change plan page if user has subsription", %{conn: conn, user: user} do
|
|
|
|
insert(:subscription, user: user)
|
|
|
|
conn = get(conn, "/billing/change-plan")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "Change subscription plan"
|
|
|
|
end
|
|
|
|
|
2019-09-02 14:29:19 +03:00
|
|
|
test "redirects to /upgrade if user does not have a subscription", %{conn: conn} do
|
|
|
|
conn = get(conn, "/billing/change-plan")
|
|
|
|
|
|
|
|
assert redirected_to(conn) == "/billing/upgrade"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /change-plan" do
|
|
|
|
setup [:create_user, :log_in]
|
|
|
|
|
2020-04-21 14:11:38 +03:00
|
|
|
test "calls Paddle API to update subscription", %{conn: conn, user: user} do
|
|
|
|
insert(:subscription, user: user)
|
|
|
|
|
|
|
|
post(conn, "/billing/change-plan/123123")
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2020-04-21 14:11:38 +03:00
|
|
|
subscription = Plausible.Repo.get_by(Plausible.Billing.Subscription, user_id: user.id)
|
|
|
|
assert subscription.paddle_plan_id == "123123"
|
|
|
|
assert subscription.next_bill_date == ~D[2019-07-10]
|
|
|
|
assert subscription.next_bill_amount == "6.00"
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|
|
|
|
end
|
2020-08-18 12:48:01 +03:00
|
|
|
|
|
|
|
describe "GET /billing/upgrade-success" do
|
|
|
|
setup [:create_user, :log_in]
|
|
|
|
|
|
|
|
test "shows success page after user subscribes", %{conn: conn} do
|
|
|
|
conn = get(conn, "/billing/upgrade-success")
|
|
|
|
|
2021-03-15 12:40:53 +03:00
|
|
|
assert html_response(conn, 200) =~ "Subscription created successfully"
|
2020-08-18 12:48:01 +03:00
|
|
|
end
|
|
|
|
end
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|