analytics/test/workers/traffic_change_notifier_test.exs
hq1 70997abfc7
Reduce Phoenix.HTML usage (#4675)
* Turn .eex templates into .heex

* Add new compile-time presets to `PlausibleWeb`

* Fix remaining templates

* Update static components

* Update live components

* Update live views

* Update rest of the owl

* Update mjml template

* Format

* Format

* Revert MJML stuff, it's coupled with EEx

* yawn at test

* Get rid of `FormHelpers` module

* Ensure YOU label shows up first on IP rules list

* Update lib/plausible_web/templates/email/welcome_email.html.heex

Co-authored-by: Artur Pata <artur.pata@gmail.com>

* Fix create site email link

* Fix server error markup (and turn thanks into heex)

* Format

---------

Co-authored-by: Artur Pata <artur.pata@gmail.com>
2024-10-15 03:55:14 +00:00

246 lines
7.2 KiB
Elixir

defmodule Plausible.Workers.TrafficChangeNotifierTest do
use Plausible.DataCase, async: true
use Bamboo.Test
import Double
alias Plausible.Workers.TrafficChangeNotifier
describe "drops" do
test "does not notify anyone if we've stopped accepting traffic for the owner" do
site =
insert(:site,
memberships: [
build(:site_membership,
user: build(:user, accept_traffic_until: Date.utc_today()),
role: :owner
)
]
)
insert(:drop_notification,
site: site,
threshold: 10,
recipients: ["jerod@example.com", "uku@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors_12h, fn _site -> 1 end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_no_emails_delivered()
end
test "does notify if threshold reached and we're accepting traffic" do
site =
insert(:site,
memberships: [
build(:site_membership,
user: build(:user, accept_traffic_until: Date.utc_today() |> Date.add(+1)),
role: :owner
)
]
)
insert(:drop_notification,
site: site,
threshold: 10,
recipients: ["jerod@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors_12h, fn _site -> 1 end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_email_delivered_with(
subject: "Traffic Drop on #{site.domain}",
to: [nil: "jerod@example.com"]
)
end
test "does not notify anyone if current visitors does not drop below notification threshold" do
site = insert(:site)
insert(:drop_notification,
site: site,
threshold: 10,
recipients: ["jerod@example.com", "uku@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors_12h, fn _site -> 11 end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_no_emails_delivered()
end
test "notifies all recipients when traffic drops under configured threshold" do
site = insert(:site)
insert(:drop_notification,
site: site,
threshold: 10,
recipients: ["jerod@example.com", "uku@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors_12h, fn _site -> 7 end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_email_delivered_with(
subject: "Traffic Drop on #{site.domain}",
to: [nil: "jerod@example.com"]
)
assert_email_delivered_with(
subject: "Traffic Drop on #{site.domain}",
to: [nil: "uku@example.com"]
)
end
test "does not notify anyone if a notification already went out in the last 12 hours" do
site = insert(:site)
insert(:drop_notification,
site: site,
threshold: 10,
recipients: ["uku@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors_12h, fn _site -> 4 end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_email_delivered_with(
subject: "Traffic Drop on #{site.domain}",
to: [nil: "uku@example.com"]
)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_no_emails_delivered()
end
test "adds settings link if recipient has access to the site" do
user = insert(:user, email: "robert@example.com")
site = insert(:site, domain: "example.com", members: [user])
insert(:drop_notification,
site: site,
threshold: 10,
recipients: ["robert@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors_12h, fn _site -> 6 end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_email_delivered_with(
html_body: ~r|http://localhost:8000/example.com/installation\?flow=review|
)
end
end
describe "spikes" do
test "does not notify anyone if current visitors does not exceed notification threshold" do
site = insert(:site)
insert(:spike_notification,
site: site,
threshold: 10,
recipients: ["jerod@example.com", "uku@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors, fn _site -> 5 end)
|> stub(:top_sources_for_spike, fn _site, _query, _limit, _page -> [] end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_no_emails_delivered()
end
test "notifies all recipients when traffic is higher than configured threshold" do
site = insert(:site)
insert(:spike_notification,
site: site,
threshold: 10,
recipients: ["jerod@example.com", "uku@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors, fn _site -> 10 end)
|> stub(:top_sources_for_spike, fn _site, _query, _limit, _page -> [] end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_email_delivered_with(
subject: "Traffic Spike on #{site.domain}",
to: [nil: "jerod@example.com"]
)
assert_email_delivered_with(
subject: "Traffic Spike on #{site.domain}",
to: [nil: "uku@example.com"]
)
end
test "does not check site if it is locked" do
site = insert(:site, locked: true)
insert(:spike_notification,
site: site,
threshold: 10,
recipients: ["uku@example.com"]
)
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors, fn _site -> 10 end)
|> stub(:top_sources_for_spike, fn _site, _query, _limit, _page -> [] end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_no_emails_delivered()
end
test "does not notify anyone if a notification already went out in the last 12 hours" do
site = insert(:site)
insert(:spike_notification, site: site, threshold: 10, recipients: ["uku@example.com"])
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors, fn _site -> 10 end)
|> stub(:top_sources_for_spike, fn _site, _query, _limit, _page -> [] end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_email_delivered_with(
subject: "Traffic Spike on #{site.domain}",
to: [nil: "uku@example.com"]
)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_no_emails_delivered()
end
test "adds a dashboard link if recipient has access to the site" do
user = insert(:user, email: "robert@example.com")
site = insert(:site, domain: "example.com", members: [user])
insert(:spike_notification, site: site, threshold: 10, recipients: ["robert@example.com"])
clickhouse_stub =
stub(Plausible.Stats.Clickhouse, :current_visitors, fn _site -> 10 end)
|> stub(:top_sources_for_spike, fn _site, _query, _limit, _page -> [] end)
TrafficChangeNotifier.perform(nil, clickhouse_stub)
assert_email_delivered_with(html_body: ~r/View dashboard:\s+<a href=\"http.+\/example.com/)
end
end
end