2018-11-06 10:30:27 +01:00
|
|
|
defmodule MobilizonWeb.Resolvers.UserResolverTest do
|
|
|
|
use MobilizonWeb.ConnCase
|
|
|
|
alias Mobilizon.{Events, Actors}
|
|
|
|
alias Mobilizon.Actors.{Actor, User}
|
|
|
|
alias MobilizonWeb.AbsintheHelpers
|
|
|
|
import Mobilizon.Factory
|
|
|
|
use Bamboo.Test
|
|
|
|
|
|
|
|
@valid_actor_params %{email: "test@test.tld", password: "testest", username: "test"}
|
|
|
|
@non_existent_username "nonexistent"
|
|
|
|
|
|
|
|
describe "User Resolver" do
|
|
|
|
test "find_user/3 returns an user by it's id", context do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
query = """
|
|
|
|
{
|
|
|
|
user(id: "#{user.id}") {
|
|
|
|
email,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> get("/api", AbsintheHelpers.query_skeleton(query, "user"))
|
|
|
|
|
|
|
|
assert json_response(res, 200)["data"]["user"]["email"] == user.email
|
|
|
|
|
|
|
|
query = """
|
|
|
|
{
|
|
|
|
user(id: "#{0}") {
|
|
|
|
email,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> get("/api", AbsintheHelpers.query_skeleton(query, "user"))
|
|
|
|
|
|
|
|
assert json_response(res, 200)["data"]["user"] == nil
|
|
|
|
assert hd(json_response(res, 200)["errors"])["message"] == "User with ID #{0} not found"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "get_current_user/3 returns the current logged-in user", context do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
query = """
|
|
|
|
{
|
|
|
|
loggedUser {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> get("/api", AbsintheHelpers.query_skeleton(query, "logged_user"))
|
|
|
|
|
|
|
|
assert json_response(res, 200)["data"]["loggedUser"] == nil
|
|
|
|
|
|
|
|
assert hd(json_response(res, 200)["errors"])["message"] ==
|
|
|
|
"You need to be logged-in to view current user"
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> auth_conn(user)
|
|
|
|
|> get("/api", AbsintheHelpers.query_skeleton(query, "logged_user"))
|
|
|
|
|
|
|
|
assert json_response(res, 200)["data"]["loggedUser"]["id"] == to_string(user.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@account_creation %{email: "test@demo.tld", password: "long password", username: "test_account"}
|
|
|
|
@account_creation_bad_email %{
|
|
|
|
email: "y@l@",
|
|
|
|
password: "long password",
|
|
|
|
username: "test_account"
|
|
|
|
}
|
|
|
|
|
|
|
|
test "test create_user_actor/3 creates an user", context do
|
|
|
|
mutation = """
|
|
|
|
mutation {
|
|
|
|
createUser(
|
|
|
|
email: "#{@account_creation.email}",
|
|
|
|
password: "#{@account_creation.password}",
|
|
|
|
username: "#{@account_creation.username}"
|
|
|
|
) {
|
|
|
|
preferred_username,
|
|
|
|
user {
|
|
|
|
email
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
|
|
|
|
|
|
|
assert json_response(res, 200)["data"]["createUser"]["preferred_username"] ==
|
|
|
|
@account_creation.username
|
|
|
|
|
|
|
|
assert json_response(res, 200)["data"]["createUser"]["user"]["email"] ==
|
|
|
|
@account_creation.email
|
|
|
|
end
|
|
|
|
|
|
|
|
test "test create_user_actor/3 doesn't create an user with bad email", context do
|
|
|
|
mutation = """
|
|
|
|
mutation {
|
|
|
|
createUser(
|
|
|
|
email: "#{@account_creation_bad_email.email}",
|
|
|
|
password: "#{@account_creation.password}",
|
|
|
|
username: "#{@account_creation.username}"
|
|
|
|
) {
|
|
|
|
preferred_username,
|
|
|
|
user {
|
|
|
|
email
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
|
|
|
|
|
|
|
assert hd(json_response(res, 200)["errors"])["message"] == "Email doesn't fit required format"
|
|
|
|
end
|
|
|
|
|
|
|
|
@valid_actor_params %{email: "test@test.tld", password: "testest", username: "test"}
|
2018-11-06 10:32:53 +01:00
|
|
|
test "test validate_user/3 validates an user", context do
|
2018-11-06 10:30:27 +01:00
|
|
|
{:ok, actor} = Actors.register(@valid_actor_params)
|
|
|
|
|
|
|
|
mutation = """
|
|
|
|
mutation {
|
|
|
|
validateUser(
|
|
|
|
token: "#{actor.user.confirmation_token}"
|
|
|
|
) {
|
|
|
|
token,
|
|
|
|
user {
|
|
|
|
id
|
|
|
|
},
|
|
|
|
actor {
|
|
|
|
preferredUsername
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
|
|
|
|
2018-11-06 10:32:53 +01:00
|
|
|
assert json_response(res, 200)["data"]["validateUser"]["actor"]["preferredUsername"] ==
|
|
|
|
@valid_actor_params.username
|
2018-11-06 10:30:27 +01:00
|
|
|
|
|
|
|
assert json_response(res, 200)["data"]["validateUser"]["user"]["id"] ==
|
|
|
|
to_string(actor.user.id)
|
|
|
|
end
|
|
|
|
|
2018-11-06 10:32:53 +01:00
|
|
|
test "test validate_user/3 with invalid token doesn't validate an user", context do
|
2018-11-06 10:30:27 +01:00
|
|
|
{:ok, actor} = Actors.register(@valid_actor_params)
|
|
|
|
|
|
|
|
mutation = """
|
|
|
|
mutation {
|
|
|
|
validateUser(
|
|
|
|
token: "no pass"
|
|
|
|
) {
|
|
|
|
token,
|
|
|
|
user {
|
|
|
|
id
|
|
|
|
},
|
|
|
|
actor {
|
|
|
|
preferredUsername
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
|
|
|
|
2018-11-06 10:32:53 +01:00
|
|
|
assert hd(json_response(res, 200)["errors"])["message"] == "Invalid token"
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "test resend_confirmation_email/3 with valid email resends an validation email", context do
|
|
|
|
{:ok, actor} = Actors.register(@valid_actor_params)
|
|
|
|
|
|
|
|
mutation = """
|
|
|
|
mutation {
|
|
|
|
resendConfirmationEmail(
|
|
|
|
email: "#{actor.user.email}"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
|
|
|
|
2018-11-06 10:32:53 +01:00
|
|
|
assert hd(json_response(res, 200)["errors"])["message"] ==
|
|
|
|
"You requested again a confirmation email too soon"
|
2018-11-06 10:30:27 +01:00
|
|
|
|
2018-11-06 10:32:53 +01:00
|
|
|
# Hammer time !
|
|
|
|
Mobilizon.Actors.update_user(actor.user, %{
|
|
|
|
confirmation_sent_at: Timex.shift(actor.user.confirmation_sent_at, hours: -3)
|
|
|
|
})
|
2018-11-06 10:30:27 +01:00
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
|
|
|
|
2018-11-06 10:32:53 +01:00
|
|
|
assert json_response(res, 200)["data"]["resendConfirmationEmail"] == actor.user.email
|
|
|
|
assert_delivered_email(Mobilizon.Email.User.confirmation_email(actor.user))
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
|
2018-11-06 10:32:53 +01:00
|
|
|
test "test resend_confirmation_email/3 with invalid email resends an validation email",
|
|
|
|
context do
|
2018-11-06 10:30:27 +01:00
|
|
|
{:ok, actor} = Actors.register(@valid_actor_params)
|
|
|
|
|
|
|
|
mutation = """
|
|
|
|
mutation {
|
|
|
|
resendConfirmationEmail(
|
|
|
|
email: "oh no"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
context.conn
|
|
|
|
|> post("/api", AbsintheHelpers.mutation_skeleton(mutation))
|
|
|
|
|
2018-11-06 10:32:53 +01:00
|
|
|
assert hd(json_response(res, 200)["errors"])["message"] ==
|
|
|
|
"No user to validate with this email was found"
|
2018-11-06 10:30:27 +01:00
|
|
|
end
|
|
|
|
end
|