2019-09-02 14:29:19 +03:00
|
|
|
defmodule PlausibleWeb.SiteControllerTest do
|
|
|
|
use PlausibleWeb.ConnCase
|
|
|
|
use Plausible.Repo
|
2020-12-15 13:09:03 +03:00
|
|
|
use Bamboo.Test
|
2019-09-02 14:29:19 +03:00
|
|
|
import Plausible.TestUtils
|
|
|
|
|
|
|
|
describe "GET /sites/new" do
|
|
|
|
setup [:create_user, :log_in]
|
|
|
|
|
|
|
|
test "shows the site form", %{conn: conn} do
|
|
|
|
conn = get(conn, "/sites/new")
|
2021-05-04 15:37:58 +03:00
|
|
|
|
2019-09-02 14:29:19 +03:00
|
|
|
assert html_response(conn, 200) =~ "Your website details"
|
|
|
|
end
|
2021-05-04 15:37:58 +03:00
|
|
|
|
|
|
|
test "shows onboarding steps if it's the first site for the user", %{conn: conn} do
|
|
|
|
conn = get(conn, "/sites/new")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "Add site info"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "does not show onboarding steps if user has a site already", %{conn: conn, user: user} do
|
|
|
|
insert(:site, members: [user], domain: "test-site.com")
|
|
|
|
|
|
|
|
conn = get(conn, "/sites/new")
|
|
|
|
|
|
|
|
refute html_response(conn, 200) =~ "Add site info"
|
|
|
|
end
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|
|
|
|
|
2020-11-27 11:27:47 +03:00
|
|
|
describe "GET /sites" do
|
|
|
|
setup [:create_user, :log_in]
|
|
|
|
|
|
|
|
test "shows empty screen if no sites", %{conn: conn} do
|
|
|
|
conn = get(conn, "/sites")
|
|
|
|
assert html_response(conn, 200) =~ "You don't have any sites yet"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "lists all of your sites with last 24h visitors", %{conn: conn, user: user} do
|
|
|
|
insert(:site, members: [user], domain: "test-site.com")
|
|
|
|
conn = get(conn, "/sites")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "test-site.com"
|
|
|
|
assert html_response(conn, 200) =~ "<b>3</b> visitors in last 24h"
|
|
|
|
end
|
2021-05-05 16:17:59 +03:00
|
|
|
|
2021-07-26 12:08:35 +03:00
|
|
|
test "shows invitations for user by email address", %{conn: conn, user: user} do
|
|
|
|
site = insert(:site)
|
|
|
|
insert(:invitation, email: user.email, site_id: site.id, inviter: build(:user))
|
|
|
|
conn = get(conn, "/sites")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ site.domain
|
|
|
|
end
|
|
|
|
|
|
|
|
test "invitations are case insensitive", %{conn: conn, user: user} do
|
|
|
|
site = insert(:site)
|
2021-07-27 11:41:04 +03:00
|
|
|
|
|
|
|
insert(:invitation,
|
|
|
|
email: String.upcase(user.email),
|
|
|
|
site_id: site.id,
|
|
|
|
inviter: build(:user)
|
|
|
|
)
|
|
|
|
|
2021-07-26 12:08:35 +03:00
|
|
|
conn = get(conn, "/sites")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ site.domain
|
|
|
|
end
|
|
|
|
|
2021-05-05 16:17:59 +03:00
|
|
|
test "paginates sites", %{conn: conn, user: user} do
|
|
|
|
insert(:site, members: [user], domain: "test-site1.com")
|
|
|
|
insert(:site, members: [user], domain: "test-site2.com")
|
|
|
|
insert(:site, members: [user], domain: "test-site3.com")
|
|
|
|
insert(:site, members: [user], domain: "test-site4.com")
|
|
|
|
|
|
|
|
conn = get(conn, "/sites?per_page=2")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "test-site1.com"
|
|
|
|
assert html_response(conn, 200) =~ "test-site2.com"
|
|
|
|
refute html_response(conn, 200) =~ "test-site3.com"
|
|
|
|
refute html_response(conn, 200) =~ "test-site4.com"
|
|
|
|
|
|
|
|
conn = get(conn, "/sites?per_page=2&page=2")
|
|
|
|
|
|
|
|
refute html_response(conn, 200) =~ "test-site1.com"
|
|
|
|
refute html_response(conn, 200) =~ "test-site2.com"
|
|
|
|
assert html_response(conn, 200) =~ "test-site3.com"
|
|
|
|
assert html_response(conn, 200) =~ "test-site4.com"
|
|
|
|
end
|
2020-11-27 11:27:47 +03:00
|
|
|
end
|
|
|
|
|
2019-09-02 14:29:19 +03:00
|
|
|
describe "POST /sites" do
|
|
|
|
setup [:create_user, :log_in]
|
|
|
|
|
|
|
|
test "creates the site with valid params", %{conn: conn} do
|
2020-06-08 10:35:13 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "example.com",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
2019-09-02 14:29:19 +03:00
|
|
|
|
|
|
|
assert redirected_to(conn) == "/example.com/snippet"
|
|
|
|
assert Repo.exists?(Plausible.Site, domain: "example.com")
|
|
|
|
end
|
|
|
|
|
2021-09-08 15:15:37 +03:00
|
|
|
test "starts trial if user does not have trial yet", %{conn: conn, user: user} do
|
|
|
|
Plausible.Auth.User.remove_trial_expiry(user) |> Repo.update!()
|
|
|
|
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "example.com",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert Repo.reload!(user).trial_expiry_date
|
|
|
|
end
|
|
|
|
|
2020-12-15 13:09:03 +03:00
|
|
|
test "sends welcome email if this is the user's first site", %{conn: conn} do
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "example.com",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert_email_delivered_with(subject: "Welcome to Plausible")
|
|
|
|
end
|
|
|
|
|
2020-12-29 16:17:27 +03:00
|
|
|
test "does not send welcome email if user already has a previous site", %{
|
|
|
|
conn: conn,
|
|
|
|
user: user
|
|
|
|
} do
|
2020-12-15 13:09:03 +03:00
|
|
|
insert(:site, members: [user])
|
|
|
|
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "example.com",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert_no_emails_delivered()
|
|
|
|
end
|
|
|
|
|
2021-05-04 15:37:58 +03:00
|
|
|
test "does not allow site creation when the user is at their site limit", %{
|
|
|
|
conn: conn,
|
|
|
|
user: user
|
|
|
|
} do
|
2021-10-22 12:38:47 +03:00
|
|
|
# default site limit defined in config/.test.env
|
2021-05-04 15:37:58 +03:00
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
|
|
|
|
conn =
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "example.com",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert conn.status == 400
|
|
|
|
end
|
|
|
|
|
2021-05-05 10:48:42 +03:00
|
|
|
test "allows accounts registered before 2021-05-05 to go over the limit", %{
|
|
|
|
conn: conn,
|
|
|
|
user: user
|
|
|
|
} do
|
|
|
|
Repo.update_all(from(u in "users", where: u.id == ^user.id),
|
|
|
|
set: [inserted_at: ~N[2020-01-01 00:00:00]]
|
|
|
|
)
|
|
|
|
|
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
|
2021-10-22 12:38:47 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "example.com",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert redirected_to(conn) == "/example.com/snippet"
|
|
|
|
assert Repo.exists?(Plausible.Site, domain: "example.com")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "allows enterprise accounts to create unlimited sites", %{
|
|
|
|
conn: conn,
|
|
|
|
user: user
|
|
|
|
} do
|
|
|
|
insert(:enterprise_plan, user: user)
|
|
|
|
|
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
|
2021-05-05 10:48:42 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "example.com",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert redirected_to(conn) == "/example.com/snippet"
|
|
|
|
assert Repo.exists?(Plausible.Site, domain: "example.com")
|
|
|
|
end
|
|
|
|
|
2019-09-02 14:29:19 +03:00
|
|
|
test "cleans up the url", %{conn: conn} do
|
2020-06-08 10:35:13 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "https://www.Example.com/",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
2019-09-02 14:29:19 +03:00
|
|
|
|
|
|
|
assert redirected_to(conn) == "/example.com/snippet"
|
|
|
|
assert Repo.exists?(Plausible.Site, domain: "example.com")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "renders form again when domain is missing", %{conn: conn} do
|
2020-06-08 10:35:13 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
2019-09-02 14:29:19 +03:00
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "can't be blank"
|
|
|
|
end
|
|
|
|
|
2020-11-18 11:33:53 +03:00
|
|
|
test "only alphanumeric characters and slash allowed in domain", %{conn: conn} do
|
|
|
|
conn =
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"timezone" => "Europe/London",
|
|
|
|
"domain" => "!@£.com"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "only letters, numbers, slashes and period allowed"
|
|
|
|
end
|
|
|
|
|
2019-09-02 14:29:19 +03:00
|
|
|
test "renders form again when it is a duplicate domain", %{conn: conn} do
|
|
|
|
insert(:site, domain: "example.com")
|
|
|
|
|
2020-06-08 10:35:13 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites", %{
|
|
|
|
"site" => %{
|
|
|
|
"domain" => "example.com",
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
2019-09-02 14:29:19 +03:00
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "has already been taken"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-26 12:46:28 +03:00
|
|
|
describe "GET /:website/snippet" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "shows snippet", %{conn: conn, site: site} do
|
|
|
|
conn = get(conn, "/#{site.domain}/snippet")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "Add javascript snippet"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-26 11:59:32 +03:00
|
|
|
describe "GET /:website/settings/general" do
|
2019-09-02 14:29:19 +03:00
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "shows settings form", %{conn: conn, site: site} do
|
2020-11-26 11:59:32 +03:00
|
|
|
conn = get(conn, "/#{site.domain}/settings/general")
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2020-11-26 11:59:32 +03:00
|
|
|
assert html_response(conn, 200) =~ "General information"
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|
2020-11-26 11:59:32 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /:website/settings/goals" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
2019-11-28 07:01:07 +03:00
|
|
|
|
|
|
|
test "lists goals for the site", %{conn: conn, site: site} do
|
|
|
|
insert(:goal, domain: site.domain, event_name: "Custom event")
|
|
|
|
insert(:goal, domain: site.domain, page_path: "/register")
|
|
|
|
|
2020-11-26 11:59:32 +03:00
|
|
|
conn = get(conn, "/#{site.domain}/settings/goals")
|
2019-11-28 07:01:07 +03:00
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "Custom event"
|
|
|
|
assert html_response(conn, 200) =~ "Visit /register"
|
|
|
|
end
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "PUT /:website/settings" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "updates the timezone", %{conn: conn, site: site} do
|
|
|
|
put(conn, "/#{site.domain}/settings", %{
|
|
|
|
"site" => %{
|
|
|
|
"timezone" => "Europe/London"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
updated = Repo.get(Plausible.Site, site.id)
|
|
|
|
assert updated.timezone == "Europe/London"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/make-public" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "makes the site public", %{conn: conn, site: site} do
|
|
|
|
post(conn, "/sites/#{site.domain}/make-public")
|
|
|
|
|
|
|
|
updated = Repo.get(Plausible.Site, site.id)
|
|
|
|
assert updated.public
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/make-private" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "makes the site private", %{conn: conn, site: site} do
|
|
|
|
post(conn, "/sites/#{site.domain}/make-private")
|
|
|
|
|
|
|
|
updated = Repo.get(Plausible.Site, site.id)
|
|
|
|
refute updated.public
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "DELETE /:website" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
2020-07-16 13:07:45 +03:00
|
|
|
test "deletes the site", %{conn: conn, user: user} do
|
|
|
|
site = insert(:site, members: [user])
|
2019-09-02 14:29:19 +03:00
|
|
|
insert(:google_auth, user: user, site: site)
|
2020-04-06 14:53:31 +03:00
|
|
|
insert(:custom_domain, site: site)
|
2021-01-15 12:24:28 +03:00
|
|
|
insert(:spike_notification, site: site)
|
2019-09-02 14:29:19 +03:00
|
|
|
|
|
|
|
delete(conn, "/#{site.domain}")
|
|
|
|
|
|
|
|
refute Repo.exists?(from s in Plausible.Site, where: s.id == ^site.id)
|
|
|
|
end
|
|
|
|
end
|
2019-10-31 08:39:51 +03:00
|
|
|
|
2020-06-30 11:11:47 +03:00
|
|
|
describe "PUT /:website/settings/google" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "updates google auth property", %{conn: conn, user: user, site: site} do
|
|
|
|
insert(:google_auth, user: user, site: site)
|
2020-07-21 09:58:00 +03:00
|
|
|
|
|
|
|
put(conn, "/#{site.domain}/settings/google", %{
|
|
|
|
"google_auth" => %{"property" => "some-new-property.com"}
|
|
|
|
})
|
2020-06-30 11:11:47 +03:00
|
|
|
|
|
|
|
updated_auth = Repo.one(Plausible.Site.GoogleAuth)
|
|
|
|
assert updated_auth.property == "some-new-property.com"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "DELETE /:website/settings/google" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "deletes associated google auth", %{conn: conn, user: user, site: site} do
|
|
|
|
insert(:google_auth, user: user, site: site)
|
|
|
|
delete(conn, "/#{site.domain}/settings/google")
|
|
|
|
|
|
|
|
refute Repo.exists?(Plausible.Site.GoogleAuth)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-31 09:20:45 +03:00
|
|
|
describe "GET /:website/goals/new" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "shows form to create a new goal", %{conn: conn, site: site} do
|
|
|
|
conn = get(conn, "/#{site.domain}/goals/new")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "Add goal"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-31 08:39:51 +03:00
|
|
|
describe "POST /:website/goals" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "creates a pageview goal for the website", %{conn: conn, site: site} do
|
|
|
|
post(conn, "/#{site.domain}/goals", %{
|
|
|
|
goal: %{
|
|
|
|
page_path: "/success",
|
|
|
|
event_name: ""
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
goal = Repo.one(Plausible.Goal)
|
|
|
|
|
2019-10-31 09:36:16 +03:00
|
|
|
assert goal.page_path == "/success"
|
2019-10-31 08:39:51 +03:00
|
|
|
assert goal.event_name == nil
|
|
|
|
end
|
|
|
|
|
|
|
|
test "creates a custom event goal for the website", %{conn: conn, site: site} do
|
|
|
|
post(conn, "/#{site.domain}/goals", %{
|
|
|
|
goal: %{
|
|
|
|
page_path: "",
|
|
|
|
event_name: "Signup"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
goal = Repo.one(Plausible.Goal)
|
|
|
|
|
2019-10-31 09:36:16 +03:00
|
|
|
assert goal.event_name == "Signup"
|
2019-10-31 08:39:51 +03:00
|
|
|
assert goal.page_path == nil
|
|
|
|
end
|
|
|
|
end
|
2019-10-31 09:20:45 +03:00
|
|
|
|
|
|
|
describe "DELETE /:website/goals/:id" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "lists goals for the site", %{conn: conn, site: site} do
|
2019-10-31 09:36:16 +03:00
|
|
|
goal = insert(:goal, domain: site.domain, event_name: "Custom event")
|
2019-10-31 09:20:45 +03:00
|
|
|
|
|
|
|
delete(conn, "/#{site.domain}/goals/#{goal.id}")
|
|
|
|
|
|
|
|
assert Repo.aggregate(Plausible.Goal, :count, :id) == 0
|
|
|
|
end
|
|
|
|
end
|
2020-01-22 12:16:53 +03:00
|
|
|
|
|
|
|
describe "POST /sites/:website/weekly-report/enable" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
2020-06-08 10:35:13 +03:00
|
|
|
test "creates a weekly report record with the user email", %{
|
|
|
|
conn: conn,
|
|
|
|
site: site,
|
|
|
|
user: user
|
|
|
|
} do
|
2020-01-22 12:16:53 +03:00
|
|
|
post(conn, "/sites/#{site.domain}/weekly-report/enable")
|
|
|
|
|
|
|
|
report = Repo.get_by(Plausible.Site.WeeklyReport, site_id: site.id)
|
|
|
|
assert report.recipients == [user.email]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/weekly-report/disable" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "deletes the weekly report record", %{conn: conn, site: site} do
|
|
|
|
insert(:weekly_report, site: site)
|
|
|
|
|
|
|
|
post(conn, "/sites/#{site.domain}/weekly-report/disable")
|
|
|
|
|
|
|
|
refute Repo.get_by(Plausible.Site.WeeklyReport, site_id: site.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/weekly-report/recipients" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "adds a recipient to the weekly report", %{conn: conn, site: site} do
|
|
|
|
insert(:weekly_report, site: site)
|
|
|
|
|
|
|
|
post(conn, "/sites/#{site.domain}/weekly-report/recipients", recipient: "user@email.com")
|
|
|
|
|
|
|
|
report = Repo.get_by(Plausible.Site.WeeklyReport, site_id: site.id)
|
|
|
|
assert report.recipients == ["user@email.com"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "DELETE /sites/:website/weekly-report/recipients/:recipient" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "removes a recipient from the weekly report", %{conn: conn, site: site} do
|
|
|
|
insert(:weekly_report, site: site, recipients: ["recipient@email.com"])
|
|
|
|
|
|
|
|
delete(conn, "/sites/#{site.domain}/weekly-report/recipients/recipient@email.com")
|
|
|
|
|
|
|
|
report = Repo.get_by(Plausible.Site.WeeklyReport, site_id: site.id)
|
|
|
|
assert report.recipients == []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/monthly-report/enable" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
2020-06-08 10:35:13 +03:00
|
|
|
test "creates a monthly report record with the user email", %{
|
|
|
|
conn: conn,
|
|
|
|
site: site,
|
|
|
|
user: user
|
|
|
|
} do
|
2020-01-22 12:16:53 +03:00
|
|
|
post(conn, "/sites/#{site.domain}/monthly-report/enable")
|
|
|
|
|
|
|
|
report = Repo.get_by(Plausible.Site.MonthlyReport, site_id: site.id)
|
|
|
|
assert report.recipients == [user.email]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/monthly-report/disable" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "deletes the monthly report record", %{conn: conn, site: site} do
|
|
|
|
insert(:monthly_report, site: site)
|
|
|
|
|
|
|
|
post(conn, "/sites/#{site.domain}/monthly-report/disable")
|
|
|
|
|
|
|
|
refute Repo.get_by(Plausible.Site.MonthlyReport, site_id: site.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/monthly-report/recipients" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "adds a recipient to the monthly report", %{conn: conn, site: site} do
|
|
|
|
insert(:monthly_report, site: site)
|
|
|
|
|
|
|
|
post(conn, "/sites/#{site.domain}/monthly-report/recipients", recipient: "user@email.com")
|
|
|
|
|
|
|
|
report = Repo.get_by(Plausible.Site.MonthlyReport, site_id: site.id)
|
|
|
|
assert report.recipients == ["user@email.com"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "DELETE /sites/:website/monthly-report/recipients/:recipient" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "removes a recipient from the monthly report", %{conn: conn, site: site} do
|
|
|
|
insert(:monthly_report, site: site, recipients: ["recipient@email.com"])
|
|
|
|
|
|
|
|
delete(conn, "/sites/#{site.domain}/monthly-report/recipients/recipient@email.com")
|
|
|
|
|
|
|
|
report = Repo.get_by(Plausible.Site.MonthlyReport, site_id: site.id)
|
|
|
|
assert report.recipients == []
|
|
|
|
end
|
|
|
|
end
|
2020-01-29 12:29:11 +03:00
|
|
|
|
2020-12-09 16:59:41 +03:00
|
|
|
describe "POST /sites/:website/spike-notification/enable" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
2020-12-29 16:17:27 +03:00
|
|
|
test "creates a spike notification record with the user email", %{
|
|
|
|
conn: conn,
|
|
|
|
site: site,
|
|
|
|
user: user
|
|
|
|
} do
|
2020-12-09 16:59:41 +03:00
|
|
|
post(conn, "/sites/#{site.domain}/spike-notification/enable")
|
|
|
|
|
|
|
|
notification = Repo.get_by(Plausible.Site.SpikeNotification, site_id: site.id)
|
|
|
|
assert notification.recipients == [user.email]
|
|
|
|
end
|
2021-01-19 12:41:15 +03:00
|
|
|
|
|
|
|
test "does not allow duplicate spike notification to be created", %{
|
|
|
|
conn: conn,
|
|
|
|
site: site
|
|
|
|
} do
|
|
|
|
post(conn, "/sites/#{site.domain}/spike-notification/enable")
|
|
|
|
post(conn, "/sites/#{site.domain}/spike-notification/enable")
|
|
|
|
|
|
|
|
assert Repo.aggregate(
|
|
|
|
from(s in Plausible.Site.SpikeNotification, where: s.site_id == ^site.id),
|
|
|
|
:count
|
|
|
|
) == 1
|
|
|
|
end
|
2020-12-09 16:59:41 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/spike-notification/disable" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "deletes the spike notification record", %{conn: conn, site: site} do
|
|
|
|
insert(:spike_notification, site: site)
|
|
|
|
|
|
|
|
post(conn, "/sites/#{site.domain}/spike-notification/disable")
|
|
|
|
|
|
|
|
refute Repo.get_by(Plausible.Site.SpikeNotification, site_id: site.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "PUT /sites/:website/spike-notification" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
2020-12-11 12:50:44 +03:00
|
|
|
test "updates spike notification threshold", %{conn: conn, site: site} do
|
2020-12-09 16:59:41 +03:00
|
|
|
insert(:spike_notification, site: site, threshold: 10)
|
2020-12-29 16:17:27 +03:00
|
|
|
|
|
|
|
put(conn, "/sites/#{site.domain}/spike-notification", %{
|
|
|
|
"spike_notification" => %{"threshold" => "15"}
|
|
|
|
})
|
2020-12-09 16:59:41 +03:00
|
|
|
|
|
|
|
notification = Repo.get_by(Plausible.Site.SpikeNotification, site_id: site.id)
|
|
|
|
assert notification.threshold == 15
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/spike-notification/recipients" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "adds a recipient to the spike notification", %{conn: conn, site: site} do
|
|
|
|
insert(:spike_notification, site: site)
|
|
|
|
|
2020-12-29 16:17:27 +03:00
|
|
|
post(conn, "/sites/#{site.domain}/spike-notification/recipients",
|
|
|
|
recipient: "user@email.com"
|
|
|
|
)
|
2020-12-09 16:59:41 +03:00
|
|
|
|
|
|
|
report = Repo.get_by(Plausible.Site.SpikeNotification, site_id: site.id)
|
|
|
|
assert report.recipients == ["user@email.com"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "DELETE /sites/:website/spike-notification/recipients/:recipient" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "removes a recipient from the spike notification", %{conn: conn, site: site} do
|
|
|
|
insert(:spike_notification, site: site, recipients: ["recipient@email.com"])
|
|
|
|
|
|
|
|
delete(conn, "/sites/#{site.domain}/spike-notification/recipients/recipient@email.com")
|
|
|
|
|
|
|
|
report = Repo.get_by(Plausible.Site.SpikeNotification, site_id: site.id)
|
|
|
|
assert report.recipients == []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-29 12:29:11 +03:00
|
|
|
describe "GET /sites/:website/shared-links/new" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "shows form for new shared link", %{conn: conn, site: site} do
|
|
|
|
conn = get(conn, "/sites/#{site.domain}/shared-links/new")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "New shared link"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-26 11:54:21 +03:00
|
|
|
describe "POST /sites/:website/shared-links" do
|
2020-01-29 12:29:11 +03:00
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "creates shared link without password", %{conn: conn, site: site} do
|
2021-04-06 14:32:38 +03:00
|
|
|
post(conn, "/sites/#{site.domain}/shared-links", %{
|
|
|
|
"shared_link" => %{"name" => "Link name"}
|
|
|
|
})
|
2020-01-29 12:29:11 +03:00
|
|
|
|
|
|
|
link = Repo.one(Plausible.Site.SharedLink)
|
|
|
|
|
|
|
|
refute is_nil(link.slug)
|
|
|
|
assert is_nil(link.password_hash)
|
2021-04-06 14:32:38 +03:00
|
|
|
assert link.name == "Link name"
|
2020-01-29 12:29:11 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
test "creates shared link with password", %{conn: conn, site: site} do
|
|
|
|
post(conn, "/sites/#{site.domain}/shared-links", %{
|
2021-04-06 14:32:38 +03:00
|
|
|
"shared_link" => %{"password" => "password", "name" => "New name"}
|
2020-01-29 12:29:11 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
link = Repo.one(Plausible.Site.SharedLink)
|
|
|
|
|
|
|
|
refute is_nil(link.slug)
|
|
|
|
refute is_nil(link.password_hash)
|
2021-04-06 14:32:38 +03:00
|
|
|
assert link.name == "New name"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /sites/:website/shared-links/edit" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "shows form to edit shared link", %{conn: conn, site: site} do
|
|
|
|
link = insert(:shared_link, site: site)
|
|
|
|
conn = get(conn, "/sites/#{site.domain}/shared-links/#{link.slug}/edit")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "Edit shared link"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "PUT /sites/:website/shared-links/:slug" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "can update link name", %{conn: conn, site: site} do
|
|
|
|
link = insert(:shared_link, site: site)
|
|
|
|
|
|
|
|
put(conn, "/sites/#{site.domain}/shared-links/#{link.slug}", %{
|
|
|
|
"shared_link" => %{"name" => "Updated link name"}
|
|
|
|
})
|
|
|
|
|
|
|
|
link = Repo.one(Plausible.Site.SharedLink)
|
|
|
|
|
|
|
|
assert link.name == "Updated link name"
|
2020-01-29 12:29:11 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "DELETE /sites/:website/shared-links/:slug" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "shows form for new shared link", %{conn: conn, site: site} do
|
|
|
|
link = insert(:shared_link, site: site)
|
|
|
|
|
|
|
|
conn = delete(conn, "/sites/#{site.domain}/shared-links/#{link.slug}")
|
|
|
|
|
|
|
|
refute Repo.one(Plausible.Site.SharedLink)
|
|
|
|
assert redirected_to(conn, 302) =~ "/#{site.domain}/settings"
|
|
|
|
end
|
|
|
|
end
|
2020-02-26 11:54:21 +03:00
|
|
|
|
|
|
|
describe "GET /sites/:website/custom-domains/new" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "shows form for new custom domain", %{conn: conn, site: site} do
|
|
|
|
conn = get(conn, "/sites/#{site.domain}/custom-domains/new")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "Setup custom domain"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST /sites/:website/custom-domains" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "creates a custom domain", %{conn: conn, site: site} do
|
2020-06-08 10:35:13 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites/#{site.domain}/custom-domains", %{
|
|
|
|
"custom_domain" => %{"domain" => "plausible.example.com"}
|
|
|
|
})
|
2020-02-26 11:54:21 +03:00
|
|
|
|
|
|
|
domain = Repo.one(Plausible.Site.CustomDomain)
|
|
|
|
|
|
|
|
assert redirected_to(conn, 302) =~ "/sites/#{site.domain}/custom-domains/dns-setup"
|
|
|
|
assert domain.domain == "plausible.example.com"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "validates presence of domain name", %{conn: conn, site: site} do
|
2020-06-08 10:35:13 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites/#{site.domain}/custom-domains", %{"custom_domain" => %{"domain" => ""}})
|
2020-02-26 11:54:21 +03:00
|
|
|
|
|
|
|
refute Repo.one(Plausible.Site.CustomDomain)
|
|
|
|
assert html_response(conn, 200) =~ "Setup custom domain"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "validates format of domain name", %{conn: conn, site: site} do
|
2020-06-08 10:35:13 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/sites/#{site.domain}/custom-domains", %{
|
|
|
|
"custom_domain" => %{"domain" => "ASD?/not-domain"}
|
|
|
|
})
|
2020-02-26 11:54:21 +03:00
|
|
|
|
|
|
|
refute Repo.one(Plausible.Site.CustomDomain)
|
|
|
|
assert html_response(conn, 200) =~ "Setup custom domain"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /sites/:website/custom-domains/dns-setup" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "shows instructions to set up dns", %{conn: conn, site: site} do
|
|
|
|
domain = insert(:custom_domain, site: site)
|
|
|
|
conn = get(conn, "/sites/#{site.domain}/custom-domains/dns-setup")
|
|
|
|
|
|
|
|
assert html_response(conn, 200) =~ "DNS for #{domain.domain}"
|
|
|
|
end
|
|
|
|
end
|
2020-06-30 11:00:19 +03:00
|
|
|
|
|
|
|
describe "DELETE sites/:website/custom-domains/:id" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "lists goals for the site", %{conn: conn, site: site} do
|
|
|
|
domain = insert(:custom_domain, site: site)
|
|
|
|
|
|
|
|
delete(conn, "/sites/#{site.domain}/custom-domains/#{domain.id}")
|
|
|
|
|
|
|
|
assert Repo.aggregate(Plausible.Site.CustomDomain, :count, :id) == 0
|
|
|
|
end
|
|
|
|
end
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|