2019-05-17 16:21:11 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-05-17 16:21:11 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-23 15:16:47 +00:00
|
|
|
defmodule Pleroma.Web.MongooseIMControllerTest do
|
2020-12-21 11:21:40 +00:00
|
|
|
use Pleroma.Web.ConnCase, async: true
|
2019-05-17 16:21:11 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
|
|
|
|
test "/user_exists", %{conn: conn} do
|
|
|
|
_user = insert(:user, nickname: "lain")
|
|
|
|
_remote_user = insert(:user, nickname: "alice", local: false)
|
2020-10-12 22:42:27 +00:00
|
|
|
_deactivated_user = insert(:user, nickname: "konata", is_active: false)
|
2019-05-17 16:21:11 +00:00
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get(mongoose_im_path(conn, :user_exists), user: "lain")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert res == true
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get(mongoose_im_path(conn, :user_exists), user: "alice")
|
|
|
|
|> json_response(404)
|
|
|
|
|
|
|
|
assert res == false
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get(mongoose_im_path(conn, :user_exists), user: "bob")
|
|
|
|
|> json_response(404)
|
|
|
|
|
|
|
|
assert res == false
|
2020-04-27 17:16:05 +00:00
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get(mongoose_im_path(conn, :user_exists), user: "konata")
|
|
|
|
|> json_response(404)
|
|
|
|
|
|
|
|
assert res == false
|
2019-05-17 16:21:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "/check_password", %{conn: conn} do
|
2022-12-30 02:46:58 +00:00
|
|
|
user = insert(:user, password_hash: Pleroma.Password.hash_pwd_salt("cool"))
|
2020-04-27 23:29:31 +00:00
|
|
|
|
|
|
|
_deactivated_user =
|
|
|
|
insert(:user,
|
|
|
|
nickname: "konata",
|
2020-10-12 22:42:27 +00:00
|
|
|
is_active: false,
|
2022-12-30 02:46:58 +00:00
|
|
|
password_hash: Pleroma.Password.hash_pwd_salt("cool")
|
2020-04-27 23:29:31 +00:00
|
|
|
)
|
2019-05-17 16:21:11 +00:00
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get(mongoose_im_path(conn, :check_password), user: user.nickname, pass: "cool")
|
|
|
|
|> json_response(200)
|
|
|
|
|
|
|
|
assert res == true
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get(mongoose_im_path(conn, :check_password), user: user.nickname, pass: "uncool")
|
|
|
|
|> json_response(403)
|
|
|
|
|
|
|
|
assert res == false
|
|
|
|
|
2020-04-27 16:31:00 +00:00
|
|
|
res =
|
|
|
|
conn
|
2020-04-27 17:16:05 +00:00
|
|
|
|> get(mongoose_im_path(conn, :check_password), user: "konata", pass: "cool")
|
2020-04-27 16:31:00 +00:00
|
|
|
|> json_response(404)
|
|
|
|
|
|
|
|
assert res == false
|
|
|
|
|
2019-05-17 16:21:11 +00:00
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get(mongoose_im_path(conn, :check_password), user: "nobody", pass: "cool")
|
|
|
|
|> json_response(404)
|
|
|
|
|
|
|
|
assert res == false
|
|
|
|
end
|
|
|
|
end
|