mirror of
https://github.com/plausible/analytics.git
synced 2024-11-26 23:27:54 +03:00
d66322e12d
* refactor asserting plan generation in plans_test.exs * stop grandfathering old expired trials For users who registered before the business tiers release, we want to offer a chance to subscribe to a grandfathered plan. However, if they let their trial expire and don't subscribe in the next 10 days, they'll lose that opportunity. * stop grandfathering expired subscriptions * remove default title and icon from Generic.notice * fix bug with dismissable notice classList is null when dismissable_id is not given * alias Plausible.Auth.User * Refactor Generic.notice component Make it easy to apply different colors * move subscription_cancelled_notice across the app And remove from user settings > subscription box. Also, include a note about losing grandfathered status when letting the subscription expire. * allow full width in Generic.notice * use Generic.notice for subscription_past_due_notice * use Generic.notice for subscription_paused_notice * prevent two notices clashing into each other with gap-y-2 * define attrs for phx components * optimize for light mode * make subscription cancelled notice dismissable but if it's dismiss, show it in the place where it was before in the account settings > subscription box * make function private * replace function doc with regular comment to avoid compile warning * use array for classnames Co-authored-by: Vinicius Brasil <vini@hey.com> * fix typos in function doc --------- Co-authored-by: Vinicius Brasil <vini@hey.com>
250 lines
5.9 KiB
Elixir
250 lines
5.9 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,
|
|
inserted_at: ~U[2024-01-01T00:00:00Z],
|
|
trial_expiry_date: ~D[2024-02-01]
|
|
)}
|
|
end
|
|
|
|
def create_site(%{user: user}) do
|
|
site =
|
|
Factory.insert(:site,
|
|
members: [user]
|
|
)
|
|
|
|
{:ok, site: site}
|
|
end
|
|
|
|
def add_imported_data(%{site: site}) do
|
|
site =
|
|
site
|
|
|> Plausible.Site.start_import(~D[2005-01-01], Timex.today(), "Google Analytics", "ok")
|
|
|> Repo.update!()
|
|
|
|
{:ok, site: site}
|
|
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 create_events(events) do
|
|
events =
|
|
Enum.map(events, fn event ->
|
|
Factory.build(:event, event)
|
|
|> Map.from_struct()
|
|
|> Map.delete(:__meta__)
|
|
|> update_in([:timestamp], &to_naive_truncate/1)
|
|
end)
|
|
|
|
Plausible.IngestRepo.insert_all(Plausible.ClickhouseEventV2, events)
|
|
end
|
|
|
|
def create_sessions(sessions) do
|
|
sessions =
|
|
Enum.map(sessions, fn session ->
|
|
Factory.build(:ch_session, session)
|
|
|> Map.from_struct()
|
|
|> Map.delete(:__meta__)
|
|
|> update_in([:timestamp], &to_naive_truncate/1)
|
|
|> update_in([:start], &to_naive_truncate/1)
|
|
end)
|
|
|
|
Plausible.IngestRepo.insert_all(Plausible.ClickhouseSessionV2, sessions)
|
|
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) do
|
|
events = for _i <- 1..i, do: Factory.build(:pageview)
|
|
populate_stats(site, events)
|
|
:ok
|
|
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
|
|
sessions =
|
|
Enum.reduce(events, %{}, fn event, sessions ->
|
|
session_id = Plausible.Session.CacheStore.on_event(event, nil)
|
|
Map.put(sessions, {event.site_id, event.user_id}, session_id)
|
|
end)
|
|
|
|
Enum.each(events, fn event ->
|
|
event = Map.put(event, :session_id, sessions[{event.site_id, event.user_id}])
|
|
Plausible.Event.WriteBuffer.insert(event)
|
|
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.Google.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 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
|
|
end
|