logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: bc59da96c52a0fe751154dd98405e11817029b23
parent 8de573b04783ef50b74bd629843a58b37c0ce31d
Author: Tusooa Zhu <tusooa@kazv.moe>
Date:   Wed,  2 Mar 2022 20:04:30 -0500

Add test for fallbacking to a general language

Diffstat:

Mtest/pleroma/web/plugs/set_locale_plug_test.exs14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/test/pleroma/web/plugs/set_locale_plug_test.exs b/test/pleroma/web/plugs/set_locale_plug_test.exs @@ -33,6 +33,20 @@ defmodule Pleroma.Web.Plugs.SetLocalePlugTest do assert %{locale: "ru"} == conn.assigns end + test "fallback to the general language if a variant is not supported" do + conn = + :get + |> conn("/cofe") + |> Conn.put_req_header( + "accept-language", + "ru-CA;q=0.9, en;q=0.8, *;q=0.5" + ) + |> SetLocalePlug.call([]) + + assert "ru" == Gettext.get_locale() + assert %{locale: "ru"} == conn.assigns + end + test "use supported locale with specifiers from `accept-language`" do conn = :get