(RuntimeError)期望连接有响应

时间:2015-05-05 21:46:53

标签: elixir phoenix-framework

我是Phoenix Framework的新用户,我正在尝试设置一个简单的HTTP POST服务,它对传入的数据执行计算并返回结果,但是我收到以下错误:

** (RuntimeError) expected connection to have a response but no response was set/sent
 stacktrace:
   (phoenix) lib/phoenix/conn_test.ex:311: Phoenix.ConnTest.response/2
   (phoenix) lib/phoenix/conn_test.ex:366: Phoenix.ConnTest.json_response/2
   test/controllers/translation_controller_test.exs:20

我的测试用例:

test "simple POST" do
  post conn(), "/api/v1/foo", %{"request" => "bar"}
  IO.inspect body = json_response(conn, 200)
end

我的路由器定义:

scope "/api", MyWeb do
  pipe_through :api

  post "/v1/foo", TranslationController, :transform
end

我的控制器:

def transform(conn, params) do
  doc = Map.get(params, "request")
  json conn, %{"response" => "grill"}
end

我错过了什么?

1 个答案:

答案 0 :(得分:11)

在测试中,您使用Plug.Test.conn/4获取Plug.Conn结构,并将其作为参数传递给post。但是,您不能将结果存储在名为conn的变量中。

这意味着在检查conn时第二次使用json_response实际上是对Plug.Test.conn/4的第二次调用。

请改为尝试:

test "simple POST" do
  conn = post conn(), "/api/v1/foo", %{"request" => "bar"}
  assert json_response(conn, 200) == <whatever the expected JSON should be>