mirror of
https://github.com/plausible/analytics.git
synced 2024-12-23 09:33:19 +03:00
6822b29016
* migration: add scroll_depth to events_v2
* (cherry-pick) ingest scroll depth
* replace convoluted test with more concise ones
* QueryParser: parse internal scroll_depth metric + validation
* turn QueryComparisonsTest into QueryInternalTest
* rename file
* (cherry pick) query scroll depth 15b14d3
...and move the tests into `internal_query_test.exs`
* review feedback
* Get rid of unnecessary separation between aggregate and group scroll depth
* Drop irrelevant other metrics in tests
* add test ensuring scroll depth unavailable in Stats API v1
* Put scroll depth on the dashboard
* Top Stats
* Main Graph
* Top Pages > Details
* feature flag for dashboard scroll depth access
* ignore credo warning
* enable scroll_depth flag in tests
* remove duplication
* write timestamps explicitly in a test
* revert moving tests around
* Add query_comparisons_test back
* Move scroll_depth tests into query_test
* Delete query_internal_test
* rename setup util (got updated on master)
* use pageleave_factory where applicable
* Use the correct generated query-api.d.ts
* npm format
38 lines
1.2 KiB
Elixir
38 lines
1.2 KiB
Elixir
if not Enum.empty?(Path.wildcard("lib/**/*_test.exs")) do
|
|
raise "Oops, test(s) found in `lib/` directory. Move them to `test/`."
|
|
end
|
|
|
|
{:ok, _} = Application.ensure_all_started(:ex_machina)
|
|
Mox.defmock(Plausible.HTTPClient.Mock, for: Plausible.HTTPClient.Interface)
|
|
Application.ensure_all_started(:double)
|
|
|
|
FunWithFlags.enable(:channels)
|
|
FunWithFlags.enable(:scroll_depth)
|
|
# Temporary flag to test `read_team_schemas` flag on all tests.
|
|
if System.get_env("TEST_READ_TEAM_SCHEMAS") == "1" do
|
|
IO.puts("READS TEAM SCHEMAS")
|
|
FunWithFlags.enable(:read_team_schemas)
|
|
else
|
|
FunWithFlags.disable(:read_team_schemas)
|
|
end
|
|
|
|
Ecto.Adapters.SQL.Sandbox.mode(Plausible.Repo, :manual)
|
|
|
|
# warn about minio if it's included in tests but not running
|
|
if :minio in Keyword.fetch!(ExUnit.configuration(), :include) do
|
|
Plausible.TestUtils.ensure_minio()
|
|
end
|
|
|
|
default_exclude = [:slow, :minio, :migrations]
|
|
|
|
# avoid slowdowns contacting the code server https://github.com/sasa1977/con_cache/pull/79
|
|
:code.ensure_loaded(ConCache.Lock.Resource)
|
|
|
|
if Mix.env() == :ce_test do
|
|
IO.puts("Test mode: Community Edition")
|
|
ExUnit.configure(exclude: [:ee_only | default_exclude])
|
|
else
|
|
IO.puts("Test mode: Enterprise Edition")
|
|
ExUnit.configure(exclude: [:ce_build_only | default_exclude])
|
|
end
|