total rebase
[anni] / test / pleroma / mfa / totp_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.MFA.TOTPTest do
6   use Pleroma.DataCase, async: true
7
8   alias Pleroma.MFA.TOTP
9
10   import Pleroma.Tests.Helpers, only: [uri_equal?: 2]
11
12   test "create provisioning_uri to generate qrcode" do
13     uri =
14       TOTP.provisioning_uri("test-secrcet", "test@example.com",
15         issuer: "Plerome-42",
16         digits: 8,
17         period: 60
18       )
19
20     assert uri_equal?(
21              uri,
22              "otpauth://totp/test@example.com?digits=8&issuer=Plerome-42&period=60&secret=test-secrcet"
23            )
24   end
25 end