mirror of
https://github.com/plausible/analytics.git
synced 2024-12-28 12:01:39 +03:00
d1b703f007
* Get stats from clickhosue * Pull stats from clickhouse * Use correct Query namespace * Use Clickhouse in unit tests * Use Clickhouse in stats controller tests * Use fixtures for unit tests * Add Clickhouse to travis * Use Clickhouse session store for sessions * Add garbage collection to session store * Reload session state from Clickhouse on server restart * Query from sessions table * Trap exits in event write buffer * Run hydration without starting the whole app * Make session length 30 minutes * Revert changes to fingerprint schema * Remove clickhouse from fingerprint sessions * Flush buffers before shutdown * Use old stats when merging * Remove old session schema * Fix tests with CH sessions * Add has_pageviews? to Stats
31 lines
1.1 KiB
Elixir
31 lines
1.1 KiB
Elixir
defmodule PlausibleWeb.Api.StatsController.PagesTest do
|
|
use PlausibleWeb.ConnCase
|
|
import Plausible.TestUtils
|
|
|
|
describe "GET /api/stats/:domain/pages" do
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
test "returns top pages sources by pageviews", %{conn: conn, site: site} do
|
|
conn = get(conn, "/api/stats/#{site.domain}/pages?period=day&date=2019-01-01")
|
|
|
|
assert json_response(conn, 200) == [
|
|
%{"count" => 2, "name" => "/"},
|
|
%{"count" => 2, "name" => "/register"},
|
|
%{"count" => 1, "name" => "/contact"},
|
|
%{"count" => 1, "name" => "/irrelevant"}
|
|
]
|
|
end
|
|
|
|
test "calculates bounce rate for pages", %{conn: conn, site: site} do
|
|
conn = get(conn, "/api/stats/#{site.domain}/pages?period=day&date=2019-01-01&include=bounce_rate")
|
|
|
|
assert json_response(conn, 200) == [
|
|
%{"count" => 2, "name" => "/", "bounce_rate" => 50.0},
|
|
%{"bounce_rate" => nil, "count" => 2, "name" => "/register"},
|
|
%{"bounce_rate" => nil, "count" => 1, "name" => "/contact"},
|
|
%{"bounce_rate" => nil, "count" => 1, "name" => "/irrelevant"}
|
|
]
|
|
end
|
|
end
|
|
end
|