mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 03:04:43 +03:00
c10580777e
* Remove references to `site.imported_data` * Count pre-existing ID 0 imports when showing pageview count summary for legacy imports * Fix tests after rebase * Dry `delete_imported_stats!` * Clean up remaining imported data references and add notes
292 lines
7.0 KiB
Elixir
292 lines
7.0 KiB
Elixir
defmodule Plausible.TestUtils do
|
|
use Plausible.Repo
|
|
alias Plausible.Factory
|
|
|
|
defmacro __using__(_) do
|
|
quote do
|
|
require Plausible.TestUtils
|
|
import Plausible.TestUtils
|
|
end
|
|
end
|
|
|
|
defmacro patch_env(env_key, value) do
|
|
quote do
|
|
if __MODULE__.__info__(:attributes)[:ex_unit_async] == [true] do
|
|
raise "Patching env is unsafe in asynchronous tests. maybe extract the case elsewhere?"
|
|
end
|
|
|
|
original_env = Application.get_env(:plausible, unquote(env_key))
|
|
Application.put_env(:plausible, unquote(env_key), unquote(value))
|
|
|
|
on_exit(fn ->
|
|
Application.put_env(:plausible, unquote(env_key), original_env)
|
|
end)
|
|
|
|
{:ok, %{patched_env: true}}
|
|
end
|
|
end
|
|
|
|
defmacro setup_patch_env(env_key, value) do
|
|
quote do
|
|
setup do
|
|
patch_env(unquote(env_key), unquote(value))
|
|
end
|
|
end
|
|
end
|
|
|
|
def create_user(_) do
|
|
{:ok, user: Factory.insert(:user)}
|
|
end
|
|
|
|
def create_site(%{user: user}) do
|
|
site =
|
|
Factory.insert(:site,
|
|
members: [user]
|
|
)
|
|
|
|
{:ok, site: site}
|
|
end
|
|
|
|
def create_legacy_site_import(%{site: site}) do
|
|
create_site_import(%{site: site, create_legacy_import?: true})
|
|
end
|
|
|
|
def create_site_import(%{site: site} = opts) do
|
|
site_import =
|
|
Factory.insert(:site_import,
|
|
site: site,
|
|
start_date: ~D[2005-01-01],
|
|
end_date: Timex.today(),
|
|
source: :universal_analytics,
|
|
legacy: opts[:create_legacy_import?] == true
|
|
)
|
|
|
|
{:ok, site_import: site_import}
|
|
end
|
|
|
|
def create_new_site(%{user: user}) do
|
|
site = Factory.insert(:site, members: [user])
|
|
{:ok, site: site}
|
|
end
|
|
|
|
def create_api_key(%{user: user}) do
|
|
api_key = Factory.insert(:api_key, user: user)
|
|
|
|
{:ok, api_key: api_key.key}
|
|
end
|
|
|
|
def use_api_key(%{conn: conn, api_key: api_key}) do
|
|
conn = Plug.Conn.put_req_header(conn, "authorization", "Bearer #{api_key}")
|
|
|
|
{:ok, conn: conn}
|
|
end
|
|
|
|
def create_pageviews(pageviews) do
|
|
pageviews =
|
|
Enum.map(pageviews, fn pageview ->
|
|
pageview =
|
|
pageview
|
|
|> Map.delete(:site)
|
|
|> Map.put(:site_id, pageview.site.id)
|
|
|
|
Factory.build(:pageview, pageview)
|
|
|> Map.from_struct()
|
|
|> Map.delete(:__meta__)
|
|
|> update_in([:timestamp], &to_naive_truncate/1)
|
|
end)
|
|
|
|
Plausible.IngestRepo.insert_all(Plausible.ClickhouseEventV2, pageviews)
|
|
end
|
|
|
|
def log_in(%{user: user, conn: conn}) do
|
|
conn =
|
|
init_session(conn)
|
|
|> Plug.Conn.put_session(:current_user_id, user.id)
|
|
|
|
{:ok, conn: conn}
|
|
end
|
|
|
|
def init_session(conn) do
|
|
opts =
|
|
Plug.Session.init(
|
|
store: :cookie,
|
|
key: "foobar",
|
|
encryption_salt: "encrypted cookie salt",
|
|
signing_salt: "signing salt",
|
|
log: false,
|
|
encrypt: false
|
|
)
|
|
|
|
conn
|
|
|> Plug.Session.call(opts)
|
|
|> Plug.Conn.fetch_session()
|
|
end
|
|
|
|
def generate_usage_for(site, i, timestamp \\ NaiveDateTime.utc_now()) do
|
|
events = for _i <- 1..i, do: Factory.build(:pageview, timestamp: timestamp)
|
|
populate_stats(site, events)
|
|
:ok
|
|
end
|
|
|
|
def populate_stats(site, import_id, events) do
|
|
Enum.map(events, fn event ->
|
|
event = Map.put(event, :site_id, site.id)
|
|
|
|
case event do
|
|
%Plausible.ClickhouseEventV2{} ->
|
|
event
|
|
|
|
imported_event ->
|
|
Map.put(imported_event, :import_id, import_id)
|
|
end
|
|
end)
|
|
|> populate_stats
|
|
end
|
|
|
|
def populate_stats(site, events) do
|
|
Enum.map(events, fn event ->
|
|
Map.put(event, :site_id, site.id)
|
|
end)
|
|
|> populate_stats
|
|
end
|
|
|
|
def populate_stats(events) do
|
|
{native, imported} =
|
|
events
|
|
|> Enum.map(fn event ->
|
|
case event do
|
|
%{timestamp: timestamp} ->
|
|
%{event | timestamp: to_naive_truncate(timestamp)}
|
|
|
|
_other ->
|
|
event
|
|
end
|
|
end)
|
|
|> Enum.split_with(fn event ->
|
|
case event do
|
|
%Plausible.ClickhouseEventV2{} ->
|
|
true
|
|
|
|
_ ->
|
|
false
|
|
end
|
|
end)
|
|
|
|
populate_native_stats(native)
|
|
populate_imported_stats(imported)
|
|
end
|
|
|
|
defp populate_native_stats(events) do
|
|
for event_params <- events do
|
|
session = Plausible.Session.CacheStore.on_event(event_params, event_params, nil)
|
|
|
|
event_params
|
|
|> Plausible.ClickhouseEventV2.merge_session(session)
|
|
|> Plausible.Event.WriteBuffer.insert()
|
|
end
|
|
|
|
Plausible.Session.WriteBuffer.flush()
|
|
Plausible.Event.WriteBuffer.flush()
|
|
end
|
|
|
|
defp populate_imported_stats(events) do
|
|
Enum.group_by(events, &Map.fetch!(&1, :table), &Map.delete(&1, :table))
|
|
|> Enum.map(fn {table, events} -> Plausible.Imported.Buffer.insert_all(table, events) end)
|
|
end
|
|
|
|
def relative_time(shifts) do
|
|
NaiveDateTime.utc_now()
|
|
|> Timex.shift(shifts)
|
|
|> NaiveDateTime.truncate(:second)
|
|
end
|
|
|
|
def to_naive_truncate(%DateTime{} = dt) do
|
|
to_naive_truncate(DateTime.to_naive(dt))
|
|
end
|
|
|
|
def to_naive_truncate(%NaiveDateTime{} = naive) do
|
|
NaiveDateTime.truncate(naive, :second)
|
|
end
|
|
|
|
def to_naive_truncate(%Date{} = date) do
|
|
NaiveDateTime.new!(date, ~T[00:00:00])
|
|
end
|
|
|
|
def eventually(expectation, wait_time_ms \\ 50, retries \\ 10) do
|
|
Enum.reduce_while(1..retries, nil, fn attempt, _acc ->
|
|
case expectation.() do
|
|
{true, result} ->
|
|
{:halt, result}
|
|
|
|
{false, _} ->
|
|
Process.sleep(wait_time_ms * attempt)
|
|
{:cont, nil}
|
|
end
|
|
end)
|
|
end
|
|
|
|
def await_clickhouse_count(query, expected) do
|
|
eventually(
|
|
fn ->
|
|
count = Plausible.ClickhouseRepo.aggregate(query, :count)
|
|
|
|
{count == expected, count}
|
|
end,
|
|
200,
|
|
10
|
|
)
|
|
end
|
|
|
|
def random_ip() do
|
|
Enum.map_join(1..4, ".", fn _ -> Enum.random(1..254) end)
|
|
end
|
|
|
|
def minio_running? do
|
|
%{host: host, port: port} = ExAws.Config.new(:s3)
|
|
healthcheck_req = Finch.build(:head, "http://#{host}:#{port}")
|
|
|
|
case Finch.request(healthcheck_req, Plausible.Finch) do
|
|
{:ok, %Finch.Response{}} -> true
|
|
{:error, %Mint.TransportError{reason: :econnrefused}} -> false
|
|
end
|
|
end
|
|
|
|
def ensure_minio do
|
|
unless minio_running?() do
|
|
%{host: host, port: port} = ExAws.Config.new(:s3)
|
|
|
|
IO.puts("""
|
|
#{IO.ANSI.red()}
|
|
You are trying to run MinIO tests (--include minio) \
|
|
but nothing is running on #{"http://#{host}:#{port}"}.
|
|
#{IO.ANSI.blue()}Please make sure to start MinIO with `make minio`#{IO.ANSI.reset()}
|
|
""")
|
|
|
|
:init.stop(1)
|
|
end
|
|
end
|
|
|
|
if Mix.env() == :test do
|
|
def maybe_fake_minio(_context) do
|
|
unless minio_running?() do
|
|
%{port: port} = ExAws.Config.new(:s3)
|
|
bypass = Bypass.open(port: port)
|
|
|
|
Bypass.expect(bypass, fn conn ->
|
|
# we only need to fake HeadObject, all the other S3 requests are "controlled"
|
|
"HEAD" = conn.method
|
|
|
|
# we pretent the object is not found
|
|
Plug.Conn.send_resp(conn, 404, [])
|
|
end)
|
|
end
|
|
|
|
:ok
|
|
end
|
|
else
|
|
def maybe_fake_minio(_context) do
|
|
:ok
|
|
end
|
|
end
|
|
end
|