test(export): add basic test for ExportController

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2023-06-20 15:01:04 +02:00
parent a76b1ca66d
commit 02098bbb3d
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# Portions of this file are derived from Pleroma:
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social>
# SPDX-License-Identifier: AGPL-3.0-only
# Upstream: https://git.pleroma.social/pleroma/pleroma/blob/develop/test/web/web_finger/web_finger_test.exs
defmodule Mobilizon.Web.ExportControllerTest do
use Mobilizon.Web.ConnCase
test "GET /.well-known/webfinger with no query", %{conn: conn} do
conn = get(conn, "/exports/not_existing/whatever")
assert response(conn, 404) == "Export to format not_existing is not enabled on this instance"
end
end