mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-14 05:04:49 +00:00
98cb255d12
OTP builds to 1.15
Changelog entry
Ensure policies are fully loaded
Fix :warn
use main branch for linkify
Fix warn in tests
Migrations for phoenix 1.17
Revert "Migrations for phoenix 1.17"
This reverts commit 6a3b2f15b7
.
Oban upgrade
Add default empty whitelist
mix format
limit test to amd64
OTP 26 tests for 1.15
use OTP_VERSION tag
baka
just 1.15
Massive deps update
Update locale, deps
Mix format
shell????
multiline???
?
max cases 1
use assert_recieve
don't put_env in async tests
don't async conn/fs tests
mix format
FIx some uploader issues
Fix tests
35 lines
939 B
Elixir
35 lines
939 B
Elixir
defmodule Pleroma.Web.AkkomaAPI.MetricsControllerTest do
|
|
use Pleroma.Web.ConnCase, async: false
|
|
|
|
describe "GET /api/v1/akkoma/metrics" do
|
|
test "should return metrics when the user has admin:metrics" do
|
|
%{conn: conn} = oauth_access(["admin:metrics"])
|
|
|
|
Pleroma.PrometheusExporter.gather()
|
|
|
|
resp =
|
|
conn
|
|
|> get("/api/v1/akkoma/metrics")
|
|
|> text_response(200)
|
|
|
|
assert resp =~ "# HELP"
|
|
end
|
|
|
|
test "should not allow users that do not have the admin:metrics scope" do
|
|
%{conn: conn} = oauth_access(["read:metrics"])
|
|
|
|
conn
|
|
|> get("/api/v1/akkoma/metrics")
|
|
|> json_response(403)
|
|
end
|
|
|
|
test "should be disabled by export_prometheus_metrics" do
|
|
clear_config([:instance, :export_prometheus_metrics], false)
|
|
%{conn: conn} = oauth_access(["admin:metrics"])
|
|
|
|
conn
|
|
|> get("/api/v1/akkoma/metrics")
|
|
|> response(404)
|
|
end
|
|
end
|
|
end
|