我正在尝试测试我的控制器,但我一直遇到监护人“未经身份验证”错误。我想我知道哪里出了问题,但我只是不确定为什么它不起作用。这就是我所拥有的。
setup %{conn: conn} do
user = insert(:user)
{:ok, jwt, _} = Guardian.encode_and_sign(user, :api)
conn = conn
|> put_req_header("accept", "application/json")
|> put_req_header("authorization", "bearer: " <> jwt)
{:ok, conn: conn}
end
test "creates and renders resource when data is valid", %{conn: conn} do
conn = post(conn, league_path(conn, :create), league: @valid_attrs)
body = json_response(conn, 201)
assert body["name"]
assert Repo.get_by(League, name: "Obama's League")
end
这是正确地创建和签署 JWT,但由于某种原因,它没有在路由器中对其进行身份验证。这里是路由器。
pipeline :authenticated do
plug(Guardian.Plug.EnsureAuthenticated)
end
scope "/api/v1", Statcasters do
pipe_through([:api, :authenticated])
resources("/leagues", LeagueController, only: [:create])
end
我认为这是我出错的地方,因为文档显示如果未解决此路由器插头,则会出现此错误:
错误:
** (RuntimeError) expected response with status 201, got: 401, with body:
{"errors":["Unauthenticated"]}
code: body = json_response(conn, 201)
如何在控制器测试中成功使用监护人?