mirror of
https://github.com/plausible/analytics.git
synced 2024-11-26 23:27:54 +03:00
0de89bad82
* Add filter groups * New flow for filters * Visual consistency * Mobile improvements to dropdown * Do not let filters wrap on a new line * Fix country filter * Add mix format to pre-commit configuration * Make eslint happy * Fix formatting * Use transition from headlessUI
174 lines
4.4 KiB
Elixir
174 lines
4.4 KiB
Elixir
defmodule Plausible.Workers.NotifyAnnualRenewalTest do
|
|
use Plausible.DataCase
|
|
use Bamboo.Test
|
|
import Plausible.TestUtils
|
|
alias Plausible.Workers.NotifyAnnualRenewal
|
|
|
|
setup [:create_user, :create_site]
|
|
@monthly_plan "558018"
|
|
@yearly_plan "572810"
|
|
@v2_pricing_yearly_plan "653232"
|
|
|
|
test "ignores user without subscription" do
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_no_emails_delivered()
|
|
end
|
|
|
|
test "ignores user with monthly subscription", %{user: user} do
|
|
insert(:subscription,
|
|
user: user,
|
|
paddle_plan_id: @monthly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 7)
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_no_emails_delivered()
|
|
end
|
|
|
|
test "ignores user with yearly subscription that's not due for renewal in 7 days", %{user: user} do
|
|
insert(:subscription,
|
|
user: user,
|
|
paddle_plan_id: @yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 10)
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_no_emails_delivered()
|
|
end
|
|
|
|
test "ignores user with old yearly subscription that's been superseded by a newer one", %{
|
|
user: user
|
|
} do
|
|
insert(:subscription,
|
|
inserted_at: Timex.shift(Timex.now(), days: -1),
|
|
user: user,
|
|
paddle_plan_id: @yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 5)
|
|
)
|
|
|
|
insert(:subscription,
|
|
inserted_at: Timex.now(),
|
|
user: user,
|
|
paddle_plan_id: @yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 30)
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_no_emails_delivered()
|
|
end
|
|
|
|
test "sends renewal notification to user whose subscription is due for renewal in 7 days", %{
|
|
user: user
|
|
} do
|
|
insert(:subscription,
|
|
user: user,
|
|
paddle_plan_id: @yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 7)
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_email_delivered_with(
|
|
to: [{user.name, user.email}],
|
|
subject: "Your Plausible subscription is up for renewal"
|
|
)
|
|
end
|
|
|
|
test "sends renewal notification to user whose subscription is due for renewal in 2 days", %{
|
|
user: user
|
|
} do
|
|
insert(:subscription,
|
|
user: user,
|
|
paddle_plan_id: @yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 2)
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_email_delivered_with(
|
|
to: [{user.name, user.email}],
|
|
subject: "Your Plausible subscription is up for renewal"
|
|
)
|
|
end
|
|
|
|
test "does not send renewal notification multiple times", %{user: user} do
|
|
insert(:subscription,
|
|
user: user,
|
|
paddle_plan_id: @yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 7)
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_email_delivered_with(
|
|
to: [{user.name, user.email}],
|
|
subject: "Your Plausible subscription is up for renewal"
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_no_emails_delivered()
|
|
end
|
|
|
|
test "sends a renewal notification again a year after the previous one", %{user: user} do
|
|
insert(:subscription,
|
|
user: user,
|
|
paddle_plan_id: @yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 7)
|
|
)
|
|
|
|
Repo.insert_all("sent_renewal_notifications", [
|
|
%{
|
|
user_id: user.id,
|
|
timestamp: Timex.shift(Timex.today(), years: -1) |> Timex.to_naive_datetime()
|
|
}
|
|
])
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_email_delivered_with(
|
|
to: [{user.name, user.email}],
|
|
subject: "Your Plausible subscription is up for renewal"
|
|
)
|
|
end
|
|
|
|
test "sends renewal notification to user on v2 yearly pricing plans", %{
|
|
user: user
|
|
} do
|
|
insert(:subscription,
|
|
user: user,
|
|
paddle_plan_id: @v2_pricing_yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 7)
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_email_delivered_with(
|
|
to: [{user.name, user.email}],
|
|
subject: "Your Plausible subscription is up for renewal"
|
|
)
|
|
end
|
|
|
|
describe "expiration" do
|
|
test "if user subscription is 'deleted', notify them about expiration instead", %{user: user} do
|
|
insert(:subscription,
|
|
user: user,
|
|
paddle_plan_id: @yearly_plan,
|
|
next_bill_date: Timex.shift(Timex.today(), days: 7),
|
|
status: "deleted"
|
|
)
|
|
|
|
NotifyAnnualRenewal.perform(nil)
|
|
|
|
assert_email_delivered_with(
|
|
to: [{user.name, user.email}],
|
|
subject: "Your Plausible subscription is about to expire"
|
|
)
|
|
end
|
|
end
|
|
end
|