[#1521] AdminApiControllerTest: fixed create report test (OAuth).
This commit is contained in:
parent
00d08c9231
commit
ca3b4de2c9
|
@ -1363,9 +1363,9 @@ test "returns 404 when report id is invalid", %{conn: conn} do
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
test "requires write:reports scope", %{conn: conn, id: id, admin: admin} do
|
test "requires admin:write:reports scope", %{conn: conn, id: id, admin: admin} do
|
||||||
read_token = insert(:oauth_token, user: admin, scopes: ["read"])
|
read_token = insert(:oauth_token, user: admin, scopes: ["admin:read"])
|
||||||
write_token = insert(:oauth_token, user: admin, scopes: ["write:reports"])
|
write_token = insert(:oauth_token, user: admin, scopes: ["admin:write:reports"])
|
||||||
|
|
||||||
response =
|
response =
|
||||||
conn
|
conn
|
||||||
|
@ -1376,7 +1376,7 @@ test "requires write:reports scope", %{conn: conn, id: id, admin: admin} do
|
||||||
|> json_response(403)
|
|> json_response(403)
|
||||||
|
|
||||||
assert response == %{
|
assert response == %{
|
||||||
"error" => "Insufficient permissions: admin:write:reports | write:reports."
|
"error" => "Insufficient permissions: admin:write:reports."
|
||||||
}
|
}
|
||||||
|
|
||||||
conn
|
conn
|
||||||
|
|
Loading…
Reference in New Issue