mirror of
https://github.com/plausible/analytics.git
synced 2024-11-29 14:04:12 +03:00
115 lines
2.5 KiB
Elixir
115 lines
2.5 KiB
Elixir
defmodule Plausible.Factory do
|
|
use ExMachina.Ecto, repo: Plausible.Repo
|
|
|
|
def user_factory(attrs) do
|
|
pw = Map.get(attrs, :password, "password")
|
|
|
|
user = %Plausible.Auth.User{
|
|
name: "Jane Smith",
|
|
email: sequence(:email, &"email-#{&1}@example.com"),
|
|
password_hash: Plausible.Auth.Password.hash(pw),
|
|
trial_expiry_date: Timex.today() |> Timex.shift(days: 30)
|
|
}
|
|
|
|
merge_attributes(user, attrs)
|
|
end
|
|
|
|
def site_factory do
|
|
domain = sequence(:domain, &"example-#{&1}.com")
|
|
|
|
%Plausible.Site{
|
|
domain: domain,
|
|
timezone: "UTC",
|
|
}
|
|
end
|
|
|
|
def session_factory do
|
|
hostname = sequence(:domain, &"example-#{&1}.com")
|
|
|
|
%Plausible.FingerprintSession{
|
|
hostname: hostname,
|
|
domain: hostname,
|
|
entry_page: "/",
|
|
fingerprint: UUID.uuid4(),
|
|
start: Timex.now(),
|
|
is_bounce: false
|
|
}
|
|
end
|
|
|
|
def pageview_factory do
|
|
struct!(
|
|
event_factory(),
|
|
%{
|
|
name: "pageview"
|
|
}
|
|
)
|
|
end
|
|
|
|
def event_factory do
|
|
hostname = sequence(:domain, &"example-#{&1}.com")
|
|
|
|
%Plausible.Event{
|
|
hostname: hostname,
|
|
domain: hostname,
|
|
pathname: "/",
|
|
fingerprint: UUID.uuid4()
|
|
}
|
|
end
|
|
|
|
def goal_factory do
|
|
%Plausible.Goal{}
|
|
end
|
|
|
|
def subscription_factory do
|
|
%Plausible.Billing.Subscription{
|
|
paddle_subscription_id: sequence(:paddle_subscription_id, &"subscription-#{&1}"),
|
|
paddle_plan_id: sequence(:paddle_plan_id, &"plan-#{&1}"),
|
|
cancel_url: "cancel.com",
|
|
update_url: "cancel.com",
|
|
status: "active",
|
|
next_bill_amount: "6.00",
|
|
next_bill_date: Timex.today()
|
|
}
|
|
end
|
|
|
|
def google_auth_factory do
|
|
%Plausible.Site.GoogleAuth{
|
|
email: sequence(:google_auth_email, &"email-#{&1}@email.com"),
|
|
refresh_token: "123",
|
|
access_token: "123",
|
|
expires: Timex.now() |> Timex.shift(days: 1)
|
|
}
|
|
end
|
|
|
|
def custom_domain_factory do
|
|
%Plausible.Site.CustomDomain{
|
|
domain: sequence(:custom_domain, &"domain-#{&1}.com")
|
|
}
|
|
end
|
|
|
|
def tweet_factory do
|
|
%Plausible.Twitter.Tweet{
|
|
tweet_id: UUID.uuid4(),
|
|
author_handle: "author-handle",
|
|
author_name: "author-name",
|
|
author_image: "pic.twitter.com/author.png",
|
|
text: "tweet-text",
|
|
created: Timex.now()
|
|
}
|
|
end
|
|
|
|
def weekly_report_factory do
|
|
%Plausible.Site.WeeklyReport{}
|
|
end
|
|
|
|
def monthly_report_factory do
|
|
%Plausible.Site.MonthlyReport{}
|
|
end
|
|
|
|
def shared_link_factory do
|
|
%Plausible.Site.SharedLink{
|
|
slug: Nanoid.generate()
|
|
}
|
|
end
|
|
end
|