2019-11-19 07:30:42 +03:00
|
|
|
defmodule PlausibleWeb.Api.StatsController.ConversionsTest do
|
|
|
|
use PlausibleWeb.ConnCase
|
|
|
|
import Plausible.TestUtils
|
|
|
|
|
|
|
|
describe "GET /api/stats/:domain/conversions" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "returns mixed conversions in ordered by count", %{conn: conn, site: site} do
|
2020-05-18 12:44:52 +03:00
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/register"})
|
2019-11-19 07:30:42 +03:00
|
|
|
insert(:goal, %{domain: site.domain, event_name: "Signup"})
|
|
|
|
|
|
|
|
conn = get(conn, "/api/stats/#{site.domain}/conversions?period=day&date=2019-01-01")
|
|
|
|
|
|
|
|
assert json_response(conn, 200) == [
|
2020-11-03 12:20:11 +03:00
|
|
|
%{
|
|
|
|
"name" => "Signup",
|
|
|
|
"count" => 3,
|
|
|
|
"total_count" => 3,
|
|
|
|
"prop_names" => ["variant"],
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
"conversion_rate" => 42.9
|
2020-11-03 12:20:11 +03:00
|
|
|
},
|
|
|
|
%{
|
|
|
|
"name" => "Visit /register",
|
|
|
|
"count" => 2,
|
|
|
|
"total_count" => 2,
|
|
|
|
"prop_names" => nil,
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
"conversion_rate" => 28.6
|
2020-11-03 12:20:11 +03:00
|
|
|
}
|
2020-06-08 10:35:13 +03:00
|
|
|
]
|
2019-11-19 07:30:42 +03:00
|
|
|
end
|
|
|
|
end
|
2019-11-20 11:49:22 +03:00
|
|
|
|
|
|
|
describe "GET /api/stats/:domain/conversions - with goal filter" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "returns only the conversion tha is filtered for", %{conn: conn, site: site} do
|
2020-05-18 12:44:52 +03:00
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/register"})
|
2019-11-20 11:49:22 +03:00
|
|
|
insert(:goal, %{domain: site.domain, event_name: "Signup"})
|
|
|
|
|
|
|
|
filters = Jason.encode!(%{goal: "Signup"})
|
2020-06-08 10:35:13 +03:00
|
|
|
|
|
|
|
conn =
|
|
|
|
get(
|
|
|
|
conn,
|
|
|
|
"/api/stats/#{site.domain}/conversions?period=day&date=2019-01-01&filters=#{filters}"
|
|
|
|
)
|
2019-11-20 11:49:22 +03:00
|
|
|
|
|
|
|
assert json_response(conn, 200) == [
|
2020-11-03 12:20:11 +03:00
|
|
|
%{
|
|
|
|
"name" => "Signup",
|
|
|
|
"count" => 3,
|
|
|
|
"total_count" => 3,
|
|
|
|
"prop_names" => ["variant"],
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
"conversion_rate" => 42.9
|
2020-11-03 12:20:11 +03:00
|
|
|
}
|
|
|
|
]
|
2019-11-20 11:49:22 +03:00
|
|
|
end
|
|
|
|
end
|
2020-10-28 12:09:04 +03:00
|
|
|
|
2020-10-30 12:05:19 +03:00
|
|
|
describe "GET /api/stats/:domain/property/:key" do
|
2020-10-28 12:09:04 +03:00
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "returns metadata breakdown for goal", %{conn: conn, site: site} do
|
|
|
|
insert(:goal, %{domain: site.domain, event_name: "Signup"})
|
|
|
|
filters = Jason.encode!(%{goal: "Signup"})
|
2020-10-30 12:05:19 +03:00
|
|
|
prop_key = "variant"
|
2020-10-28 12:09:04 +03:00
|
|
|
|
|
|
|
conn =
|
|
|
|
get(
|
|
|
|
conn,
|
2020-11-03 12:20:11 +03:00
|
|
|
"/api/stats/#{site.domain}/property/#{prop_key}?period=day&date=2019-01-01&filters=#{
|
|
|
|
filters
|
|
|
|
}"
|
2020-10-28 12:09:04 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
assert json_response(conn, 200) == [
|
Adds entry and exit pages to Top Pages module (#712)
* Initial Pass
* Adds support for page visits counting by referrer
* Includes goal selection in entry and exit computation
* Adds goal-based entry and exit page stats, formatting, code cleanup
* Changelog
* Format
* Exit rate, visit duration, updated tests
* I keep forgetting to format :/
* Tests, last time
* Fixes double counting, exit rate >100%, relevant tests
* Fixes exit pages on filter and goal states
* Adds entry and exit filters, fixes various bugs
* Fixes discussed issues
* Format
* Fixes impossible case in tests
Originally, there were only 2 pageviews for `test-site.com`,`/` on `2019-01-01`, but that doesn't make sense when there were 3 sessions that exited on the same site/date.
* Format
* Removes boolean function parameter in favor of separate function
* Adds support for queries that use `page` filter as `entry-page`
* Format
* Makes loader/title interaction in sources report consistent
2021-02-26 12:02:37 +03:00
|
|
|
%{"count" => 2, "name" => "B", "total_count" => 2, "conversion_rate" => 28.6},
|
|
|
|
%{"count" => 1, "name" => "A", "total_count" => 1, "conversion_rate" => 14.3}
|
2020-11-03 12:20:11 +03:00
|
|
|
]
|
2020-10-28 12:09:04 +03:00
|
|
|
end
|
|
|
|
end
|
2021-03-02 15:53:03 +03:00
|
|
|
|
|
|
|
describe "GET /api/stats/:domain/conversions - with glob goals" do
|
|
|
|
setup [:create_user, :log_in, :create_site]
|
|
|
|
|
|
|
|
test "returns correct and sorted glob goal counts", %{conn: conn, site: site} do
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/register"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/reg*"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/*/register"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/billing**/success"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/billing*/success"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/signup"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/signup/*"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/signup/**"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/*"})
|
|
|
|
insert(:goal, %{domain: site.domain, page_path: "/**"})
|
|
|
|
|
|
|
|
conn =
|
|
|
|
get(
|
|
|
|
conn,
|
|
|
|
"/api/stats/#{site.domain}/conversions?period=day&date=2019-07-01"
|
|
|
|
)
|
|
|
|
|
|
|
|
assert json_response(conn, 200) == [
|
|
|
|
%{
|
|
|
|
"conversion_rate" => 100.0,
|
|
|
|
"count" => 8,
|
|
|
|
"name" => "Visit /**",
|
|
|
|
"total_count" => 8,
|
|
|
|
"prop_names" => nil
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"conversion_rate" => 37.5,
|
|
|
|
"count" => 3,
|
|
|
|
"name" => "Visit /*",
|
|
|
|
"total_count" => 3,
|
|
|
|
"prop_names" => nil
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"conversion_rate" => 37.5,
|
|
|
|
"count" => 3,
|
|
|
|
"name" => "Visit /signup/**",
|
|
|
|
"total_count" => 3,
|
|
|
|
"prop_names" => nil
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"conversion_rate" => 25.0,
|
|
|
|
"count" => 2,
|
|
|
|
"name" => "Visit /billing**/success",
|
|
|
|
"total_count" => 2,
|
|
|
|
"prop_names" => nil
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"conversion_rate" => 25.0,
|
|
|
|
"count" => 2,
|
|
|
|
"name" => "Visit /reg*",
|
|
|
|
"total_count" => 2,
|
|
|
|
"prop_names" => nil
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"conversion_rate" => 12.5,
|
|
|
|
"count" => 1,
|
|
|
|
"name" => "Visit /billing*/success",
|
|
|
|
"total_count" => 1,
|
|
|
|
"prop_names" => nil
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"conversion_rate" => 12.5,
|
|
|
|
"count" => 1,
|
|
|
|
"name" => "Visit /register",
|
|
|
|
"total_count" => 1,
|
|
|
|
"prop_names" => nil
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"conversion_rate" => 12.5,
|
|
|
|
"count" => 1,
|
|
|
|
"name" => "Visit /signup/*",
|
|
|
|
"total_count" => 1,
|
|
|
|
"prop_names" => nil
|
|
|
|
}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|
2019-11-19 07:30:42 +03:00
|
|
|
end
|