-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,33 @@ | ||
defmodule Supavisor.HelpersTest do | ||
use ExUnit.Case | ||
doctest Supavisor.Helpers | ||
use ExUnit.Case, async: true | ||
|
||
alias Supavisor.Helpers | ||
|
||
describe "parse_secret/2" do | ||
test "parses SCRAM-SHA-256 secrets correctly" do | ||
secret = "SCRAM-SHA-256$4000:salt$storedKey:serverKey" | ||
user = "user@example.com" | ||
expected = {:ok, | ||
%{ | ||
digest: "SCRAM-SHA-256", | ||
iterations: 4000, | ||
salt: "salt", | ||
stored_key: Base.decode64!("storedKey"), | ||
server_key: Base.decode64!("serverKey"), | ||
user: user | ||
}} | ||
assert Helpers.parse_secret(secret, user) == expected | ||
end | ||
|
||
test "parses md5 secrets correctly" do | ||
secret = "md5supersecret" | ||
user = "user@example.com" | ||
expected = {:ok, %{digest: :md5, secret: "supersecret", user: user}} | ||
assert Helpers.parse_secret("md5" <> secret, user) == expected | ||
end | ||
|
||
test "returns error for unsupported or invalid secret formats" do | ||
assert Helpers.parse_secret("unsupported_secret", "user@example.com") == {:error, "Unsupported or invalid secret format"} | ||
end | ||
end | ||
end |