chessh/test/auth/pubkey_test.exs
Simponic fe5f5b77fc
Discord notifs (#14)
* Add role id to config

* Add discord notifications for games

* Fix discord discriminant tests
2023-02-01 14:57:14 -07:00

35 lines
1.0 KiB
Elixir

defmodule Chessh.Auth.PublicKeyAuthenticatorTest do
use ExUnit.Case
alias Chessh.{Key, Repo, Player}
@valid_user %{username: "lizzy#0003", password: "password", discord_id: "2"}
@valid_key %{
name: "The Gamer Machine",
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ/2LOJGGEd/dhFgRxJ5MMv0jJw4s4pA8qmMbZyulN44"
}
setup_all do
Ecto.Adapters.SQL.Sandbox.checkout(Repo)
Ecto.Adapters.SQL.Sandbox.mode(Repo, {:shared, self()})
{:ok, player} = Repo.insert(Player.registration_changeset(%Player{}, @valid_user))
{:ok, _key} =
Repo.insert(
Key.changeset(%Key{}, @valid_key)
|> Ecto.Changeset.put_assoc(:player, player)
)
:ok
end
test "User can sign in with their ssh key from raw string" do
assert Chessh.Auth.KeyAuthenticator.authenticate(@valid_user.username, @valid_key.key)
end
test "User can sign in with erlang decoded ssh key" do
[key] = :ssh_file.decode(@valid_key.key, :openssh_key)
assert Chessh.Auth.KeyAuthenticator.authenticate(@valid_user.username, key)
end
end