Fix style
This commit is contained in:
parent
5f96c2d216
commit
c859cd1d61
|
@ -9,7 +9,8 @@
|
||||||
# Disable captha for tests
|
# Disable captha for tests
|
||||||
config :pleroma, Pleroma.Captcha,
|
config :pleroma, Pleroma.Captcha,
|
||||||
enabled: true,
|
enabled: true,
|
||||||
method: Pleroma.Captcha.Mock # A fake captcha service for tests
|
# A fake captcha service for tests
|
||||||
|
method: Pleroma.Captcha.Mock
|
||||||
|
|
||||||
# Print only warnings and errors during test
|
# Print only warnings and errors during test
|
||||||
config :logger, level: :warn
|
config :logger, level: :warn
|
||||||
|
|
|
@ -6,36 +6,33 @@ defmodule Pleroma.CaptchaTest do
|
||||||
@ets_options [:ordered_set, :private, :named_table, {:read_concurrency, true}]
|
@ets_options [:ordered_set, :private, :named_table, {:read_concurrency, true}]
|
||||||
|
|
||||||
describe "Kocaptcha" do
|
describe "Kocaptcha" do
|
||||||
|
|
||||||
setup do
|
setup do
|
||||||
ets_name = Pleroma.Captcha.Kocaptcha.Ets
|
ets_name = Pleroma.Captcha.Kocaptcha.Ets
|
||||||
^ets_name = :ets.new(ets_name, @ets_options)
|
^ets_name = :ets.new(ets_name, @ets_options)
|
||||||
|
|
||||||
mock fn
|
mock(fn
|
||||||
%{method: :get, url: "http://localhost:9093/new"} ->
|
%{method: :get, url: "http://localhost:9093/new"} ->
|
||||||
json(
|
json(%{
|
||||||
%{
|
md5: "63615261b77f5354fb8c4e4986477555",
|
||||||
md5: "63615261b77f5354fb8c4e4986477555",
|
token: "afa1815e14e29355e6c8f6b143a39fa2",
|
||||||
token: "afa1815e14e29355e6c8f6b143a39fa2",
|
url: "/captchas/afa1815e14e29355e6c8f6b143a39fa2.png"
|
||||||
url: "/captchas/afa1815e14e29355e6c8f6b143a39fa2.png"
|
})
|
||||||
}
|
end)
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
:ok
|
:ok
|
||||||
end
|
end
|
||||||
|
|
||||||
test "new and validate" do
|
test "new and validate" do
|
||||||
assert Pleroma.Captcha.Kocaptcha.new() == %{
|
assert Pleroma.Captcha.Kocaptcha.new() == %{
|
||||||
type: :kocaptcha,
|
type: :kocaptcha,
|
||||||
token: "afa1815e14e29355e6c8f6b143a39fa2",
|
token: "afa1815e14e29355e6c8f6b143a39fa2",
|
||||||
url: "http://localhost:9093/captchas/afa1815e14e29355e6c8f6b143a39fa2.png"
|
url: "http://localhost:9093/captchas/afa1815e14e29355e6c8f6b143a39fa2.png"
|
||||||
}
|
}
|
||||||
|
|
||||||
assert Pleroma.Captcha.Kocaptcha.validate(
|
assert Pleroma.Captcha.Kocaptcha.validate(
|
||||||
"afa1815e14e29355e6c8f6b143a39fa2",
|
"afa1815e14e29355e6c8f6b143a39fa2",
|
||||||
"7oEy8c"
|
"7oEy8c"
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue