mirror of
https://github.com/plausible/analytics.git
synced 2024-12-01 20:27:17 +03:00
147 lines
4.0 KiB
Elixir
147 lines
4.0 KiB
Elixir
|
defmodule Plausible.Workers.CheckUsageTest do
|
||
|
use Plausible.DataCase
|
||
|
use Bamboo.Test
|
||
|
import Double
|
||
|
import Plausible.TestUtils
|
||
|
alias Plausible.Workers.CheckUsage
|
||
|
alias Plausible.Billing.Plans
|
||
|
|
||
|
setup [:create_user, :create_site]
|
||
|
@paddle_id_10k Plans.plans()[:monthly][:"10k"][:product_id]
|
||
|
|
||
|
test "ignores user without subscription" do
|
||
|
CheckUsage.perform(nil, nil)
|
||
|
|
||
|
assert_no_emails_delivered()
|
||
|
end
|
||
|
|
||
|
test "ignores user with subscription but no usage", %{user: user} do
|
||
|
insert(:subscription,
|
||
|
user: user,
|
||
|
paddle_plan_id: @paddle_id_10k,
|
||
|
last_bill_date: Timex.shift(Timex.today(), days: -1)
|
||
|
)
|
||
|
|
||
|
CheckUsage.perform(nil, nil)
|
||
|
|
||
|
assert_no_emails_delivered()
|
||
|
end
|
||
|
|
||
|
test "does not send an email if account has been over the limit for one billing month", %{
|
||
|
user: user
|
||
|
} do
|
||
|
billing_stub =
|
||
|
stub(Plausible.Billing, :last_two_billing_months_usage, fn _user -> {9_000, 11_000} end)
|
||
|
|
||
|
insert(:subscription,
|
||
|
user: user,
|
||
|
paddle_plan_id: @paddle_id_10k,
|
||
|
last_bill_date: Timex.shift(Timex.today(), days: -1)
|
||
|
)
|
||
|
|
||
|
CheckUsage.perform(nil, nil, billing_stub)
|
||
|
|
||
|
assert_no_emails_delivered()
|
||
|
end
|
||
|
|
||
|
test "sends an email when an account is over their limit for two consecutive billing months", %{
|
||
|
user: user
|
||
|
} do
|
||
|
billing_stub =
|
||
|
stub(Plausible.Billing, :last_two_billing_months_usage, fn _user -> {11_000, 11_000} end)
|
||
|
|
||
|
insert(:subscription,
|
||
|
user: user,
|
||
|
paddle_plan_id: @paddle_id_10k,
|
||
|
last_bill_date: Timex.shift(Timex.today(), days: -1)
|
||
|
)
|
||
|
|
||
|
CheckUsage.perform(nil, nil, billing_stub)
|
||
|
|
||
|
assert_email_delivered_with(
|
||
|
# to: [user],
|
||
|
subject: "You have outgrown your Plausible subscription tier "
|
||
|
)
|
||
|
end
|
||
|
|
||
|
describe "timing" do
|
||
|
test "checks usage one day after the last_bill_date", %{
|
||
|
user: user
|
||
|
} do
|
||
|
billing_stub =
|
||
|
stub(Plausible.Billing, :last_two_billing_months_usage, fn _user -> {11_000, 11_000} end)
|
||
|
|
||
|
insert(:subscription,
|
||
|
user: user,
|
||
|
paddle_plan_id: @paddle_id_10k,
|
||
|
last_bill_date: Timex.shift(Timex.today(), days: -1)
|
||
|
)
|
||
|
|
||
|
CheckUsage.perform(nil, nil, billing_stub)
|
||
|
|
||
|
assert_email_delivered_with(
|
||
|
# to: [user],
|
||
|
subject: "You have outgrown your Plausible subscription tier "
|
||
|
)
|
||
|
end
|
||
|
|
||
|
test "for yearly subscriptions, does not check exactly one month after last_bill_date", %{
|
||
|
user: user
|
||
|
} do
|
||
|
billing_stub =
|
||
|
stub(Plausible.Billing, :last_two_billing_months_usage, fn _user -> {11_000, 11_000} end)
|
||
|
|
||
|
insert(:subscription,
|
||
|
user: user,
|
||
|
paddle_plan_id: @paddle_id_10k,
|
||
|
last_bill_date: Timex.shift(Timex.today(), months: -1)
|
||
|
)
|
||
|
|
||
|
CheckUsage.perform(nil, nil, billing_stub)
|
||
|
|
||
|
assert_no_emails_delivered()
|
||
|
end
|
||
|
|
||
|
test "for yearly subscriptions, checks usage one month + one day after the last_bill_date", %{
|
||
|
user: user
|
||
|
} do
|
||
|
billing_stub =
|
||
|
stub(Plausible.Billing, :last_two_billing_months_usage, fn _user -> {11_000, 11_000} end)
|
||
|
|
||
|
insert(:subscription,
|
||
|
user: user,
|
||
|
paddle_plan_id: @paddle_id_10k,
|
||
|
last_bill_date: Timex.shift(Timex.today(), months: -1, days: -1)
|
||
|
)
|
||
|
|
||
|
CheckUsage.perform(nil, nil, billing_stub)
|
||
|
|
||
|
assert_email_delivered_with(
|
||
|
# to: [user],
|
||
|
subject: "You have outgrown your Plausible subscription tier "
|
||
|
)
|
||
|
end
|
||
|
|
||
|
test "for yearly subscriptions, checks usage multiple months + one day after the last_bill_date",
|
||
|
%{
|
||
|
user: user
|
||
|
} do
|
||
|
billing_stub =
|
||
|
stub(Plausible.Billing, :last_two_billing_months_usage, fn _user -> {11_000, 11_000} end)
|
||
|
|
||
|
insert(:subscription,
|
||
|
user: user,
|
||
|
paddle_plan_id: @paddle_id_10k,
|
||
|
last_bill_date: Timex.shift(Timex.today(), months: -2, days: -1)
|
||
|
)
|
||
|
|
||
|
CheckUsage.perform(nil, nil, billing_stub)
|
||
|
|
||
|
assert_email_delivered_with(
|
||
|
# to: [user],
|
||
|
subject: "You have outgrown your Plausible subscription tier "
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|