2020-10-12 11:00:50 -06:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-12 23:49:20 -07:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-10-12 11:00:50 -06:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-05-07 02:14:54 -06:00
|
|
|
defmodule Pleroma.MFA.TOTPTest do
|
2020-12-21 04:21:40 -07:00
|
|
|
use Pleroma.DataCase, async: true
|
2020-05-07 02:14:54 -06:00
|
|
|
|
|
|
|
alias Pleroma.MFA.TOTP
|
|
|
|
|
|
|
|
test "create provisioning_uri to generate qrcode" do
|
|
|
|
uri =
|
|
|
|
TOTP.provisioning_uri("test-secrcet", "test@example.com",
|
|
|
|
issuer: "Plerome-42",
|
|
|
|
digits: 8,
|
|
|
|
period: 60
|
|
|
|
)
|
|
|
|
|
|
|
|
assert uri ==
|
|
|
|
"otpauth://totp/test@example.com?digits=8&issuer=Plerome-42&period=60&secret=test-secrcet"
|
|
|
|
end
|
|
|
|
end
|