X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fsupport%2Ffactory.ex;h=c8c45e2a7b4dda9ea5e267dc3ef2021c3af7425f;hb=b078e0567dbecc768f88d991a2565141eb9e8c50;hp=f0b797fd4411b781e6825ebd34e4a4878b55a7af;hpb=c466e739b6cfe21e68fb10805f7747ea74d76f74;p=akkoma diff --git a/test/support/factory.ex b/test/support/factory.ex index f0b797fd4..c8c45e2a7 100644 --- a/test/support/factory.ex +++ b/test/support/factory.ex @@ -32,7 +32,9 @@ defmodule Pleroma.Factory do password_hash: Comeonin.Pbkdf2.hashpwsalt("test"), bio: sequence(:bio, &"Tester Number #{&1}"), last_digest_emailed_at: NaiveDateTime.utc_now(), - notification_settings: %Pleroma.User.NotificationSetting{} + last_refreshed_at: NaiveDateTime.utc_now(), + notification_settings: %Pleroma.User.NotificationSetting{}, + multi_factor_authentication_settings: %Pleroma.MFA.Settings{} } %{ @@ -421,4 +423,13 @@ defmodule Pleroma.Factory do last_read_id: "1" } end + + def mfa_token_factory do + %Pleroma.MFA.Token{ + token: :crypto.strong_rand_bytes(32) |> Base.url_encode64(padding: false), + authorization: build(:oauth_authorization), + valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), 60 * 10), + user: build(:user) + } + end end