2021-04-09 10:30:51 +03:00
|
|
|
defmodule PlausibleWeb.Api.ExternalSitesControllerTest do
|
|
|
|
use PlausibleWeb.ConnCase
|
2021-06-16 15:00:07 +03:00
|
|
|
use Plausible.Repo
|
2021-04-09 10:30:51 +03:00
|
|
|
import Plausible.TestUtils
|
|
|
|
|
2021-04-09 11:53:41 +03:00
|
|
|
setup %{conn: conn} do
|
|
|
|
user = insert(:user)
|
|
|
|
api_key = insert(:api_key, user: user, scopes: ["sites:provision:*"])
|
|
|
|
conn = Plug.Conn.put_req_header(conn, "authorization", "Bearer #{api_key.key}")
|
|
|
|
{:ok, user: user, api_key: api_key, conn: conn}
|
|
|
|
end
|
2021-04-09 10:30:51 +03:00
|
|
|
|
|
|
|
describe "POST /api/v1/sites" do
|
|
|
|
test "can create a site", %{conn: conn} do
|
|
|
|
conn =
|
|
|
|
post(conn, "/api/v1/sites", %{
|
2021-04-14 15:04:25 +03:00
|
|
|
"domain" => "some-site.domain",
|
|
|
|
"timezone" => "Europe/Tallinn"
|
2021-04-09 10:30:51 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
assert json_response(conn, 200) == %{
|
|
|
|
"domain" => "some-site.domain",
|
|
|
|
"timezone" => "Europe/Tallinn"
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2021-04-15 11:03:06 +03:00
|
|
|
test "timezone defaults to Etc/UTC", %{conn: conn} do
|
2021-04-09 10:30:51 +03:00
|
|
|
conn =
|
|
|
|
post(conn, "/api/v1/sites", %{
|
2021-04-14 15:04:25 +03:00
|
|
|
"domain" => "some-site.domain"
|
2021-04-09 10:30:51 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
assert json_response(conn, 200) == %{
|
|
|
|
"domain" => "some-site.domain",
|
2021-04-15 11:03:06 +03:00
|
|
|
"timezone" => "Etc/UTC"
|
2021-04-09 10:30:51 +03:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "domain is required", %{conn: conn} do
|
|
|
|
conn = post(conn, "/api/v1/sites", %{})
|
|
|
|
|
|
|
|
assert json_response(conn, 400) == %{
|
|
|
|
"error" => "domain can't be blank"
|
|
|
|
}
|
|
|
|
end
|
2021-04-09 11:53:41 +03:00
|
|
|
|
2021-05-05 10:39:24 +03:00
|
|
|
test "does not allow creating more sites than the limit", %{conn: conn, user: user} do
|
|
|
|
Application.put_env(:plausible, :site_limit, 3)
|
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
insert(:site, members: [user])
|
|
|
|
|
|
|
|
conn =
|
|
|
|
post(conn, "/api/v1/sites", %{
|
|
|
|
"domain" => "some-site.domain",
|
|
|
|
"timezone" => "Europe/Tallinn"
|
|
|
|
})
|
|
|
|
|
|
|
|
assert json_response(conn, 403) == %{
|
|
|
|
"error" =>
|
|
|
|
"Your account has reached the limit of 3 sites per account. Please contact hello@plausible.io to unlock more sites."
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2021-04-09 11:53:41 +03:00
|
|
|
test "cannot access with a bad API key scope", %{conn: conn, user: user} do
|
|
|
|
api_key = insert(:api_key, user: user, scopes: ["stats:read:*"])
|
|
|
|
|
|
|
|
conn =
|
|
|
|
conn
|
|
|
|
|> Plug.Conn.put_req_header("authorization", "Bearer #{api_key.key}")
|
|
|
|
|> post("/api/v1/sites", %{"site" => %{"domain" => "domain.com"}})
|
|
|
|
|
|
|
|
assert json_response(conn, 401) == %{
|
|
|
|
"error" =>
|
|
|
|
"Invalid API key. Please make sure you're using a valid API key with access to the resource you've requested."
|
|
|
|
}
|
|
|
|
end
|
2021-04-09 10:30:51 +03:00
|
|
|
end
|
|
|
|
|
2021-04-15 11:38:44 +03:00
|
|
|
describe "PUT /api/v1/sites/shared-links" do
|
2021-04-09 10:30:51 +03:00
|
|
|
setup :create_site
|
|
|
|
|
|
|
|
test "can add a shared link to a site", %{conn: conn, site: site} do
|
2021-04-15 14:05:28 +03:00
|
|
|
conn =
|
|
|
|
put(conn, "/api/v1/sites/shared-links", %{
|
|
|
|
site_id: site.domain,
|
|
|
|
name: "Wordpress"
|
|
|
|
})
|
2021-04-09 10:30:51 +03:00
|
|
|
|
|
|
|
res = json_response(conn, 200)
|
|
|
|
assert res["name"] == "Wordpress"
|
|
|
|
assert String.starts_with?(res["url"], "http://")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "is idempotent find or create op", %{conn: conn, site: site} do
|
2021-04-15 14:05:28 +03:00
|
|
|
conn =
|
|
|
|
put(conn, "/api/v1/sites/shared-links", %{
|
|
|
|
site_id: site.domain,
|
|
|
|
name: "Wordpress"
|
|
|
|
})
|
2021-04-09 10:30:51 +03:00
|
|
|
|
|
|
|
%{"url" => url} = json_response(conn, 200)
|
|
|
|
|
2021-04-15 14:05:28 +03:00
|
|
|
conn =
|
|
|
|
put(conn, "/api/v1/sites/shared-links", %{
|
|
|
|
site_id: site.domain,
|
|
|
|
name: "Wordpress"
|
|
|
|
})
|
2021-04-09 10:30:51 +03:00
|
|
|
|
|
|
|
assert %{"url" => ^url} = json_response(conn, 200)
|
|
|
|
end
|
2021-04-14 15:04:25 +03:00
|
|
|
|
|
|
|
test "returns 400 when site id missing", %{conn: conn} do
|
2021-04-15 14:05:28 +03:00
|
|
|
conn =
|
|
|
|
put(conn, "/api/v1/sites/shared-links", %{
|
|
|
|
name: "Wordpress"
|
|
|
|
})
|
2021-04-14 15:04:25 +03:00
|
|
|
|
|
|
|
res = json_response(conn, 400)
|
2021-04-15 11:38:44 +03:00
|
|
|
assert res["error"] == "Parameter `site_id` is required to create a shared link"
|
2021-04-14 15:04:25 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
test "returns 404 when site id is non existent", %{conn: conn} do
|
2021-04-15 14:05:28 +03:00
|
|
|
conn =
|
|
|
|
put(conn, "/api/v1/sites/shared-links", %{
|
|
|
|
name: "Wordpress",
|
|
|
|
site_id: "bad"
|
|
|
|
})
|
2021-04-14 15:04:25 +03:00
|
|
|
|
|
|
|
res = json_response(conn, 404)
|
|
|
|
assert res["error"] == "Site could not be found"
|
|
|
|
end
|
2021-06-16 15:00:07 +03:00
|
|
|
|
|
|
|
test "returns 404 when api key owner does not have permissions to create a shared link", %{
|
|
|
|
conn: conn,
|
|
|
|
site: site,
|
|
|
|
user: user
|
|
|
|
} do
|
|
|
|
Repo.update_all(
|
|
|
|
from(sm in Plausible.Site.Membership,
|
|
|
|
where: sm.site_id == ^site.id and sm.user_id == ^user.id
|
|
|
|
),
|
|
|
|
set: [role: :viewer]
|
|
|
|
)
|
|
|
|
|
|
|
|
conn =
|
|
|
|
put(conn, "/api/v1/sites/shared-links", %{
|
|
|
|
site_id: site.domain,
|
|
|
|
name: "Wordpress"
|
|
|
|
})
|
|
|
|
|
|
|
|
res = json_response(conn, 404)
|
|
|
|
assert res["error"] == "Site could not be found"
|
|
|
|
end
|
2021-04-09 10:30:51 +03:00
|
|
|
end
|
|
|
|
end
|