用Elixir / Phoenix测试api调用

时间:2016-04-23 09:59:52

标签: testing elixir phoenix-framework

我是Elixir和Phoenix的新手,我正在尝试创建一个网络服务来赞美我的网站。首先,我只想通过从json文件导入一些数据来测试我的新数据结构。我以为我会通过测试做到这一点。我已经阅读了基本指南(包括测试部分),但我还没有找到关于测试api电话的任何内容。

从下面的代码中,运行mix test时出现以下错误:

** (ArgumentError) flash not fetched, call fetch_flash/2

在发出呼叫并返回连接的线路上失败。我假设我使用了错误的电话/丢失了什么?是否有我错过的文档,或者有人能指出我的好榜样?

这是我router.ex

的摘录
  scope "/", ContactsApp do
    pipe_through :browser # Use the default browser stack

    get "/", PageController, :index
    resources "/contacts", ContactsController
  end

  # Other scopes may use custom stacks.
  scope "/api", ContactsApp do
    pipe_through :api

    get "/import", ContactsController, :import
  end

目前,我所做的只是复制ContactsController.Create方法并将其称为ContactsController.Import。我还复制了"创建资源并在数据有效时重定向"测试并使用:import代替:create

这里是完整的堆栈跟踪:

** (ArgumentError) flash not fetched, call fetch_flash/2
 stacktrace:
   (phoenix) lib/phoenix/controller.ex:997: Phoenix.Controller.get_flash/1
   (phoenix) lib/phoenix/controller.ex:982: Phoenix.Controller.put_flash/3
   (contacts_app) web/controllers/contacts_controller.ex:74: ContactsApp.LogController.stuff/2
   (contacts_app) web/controllers/contacts_controller.ex:1: ContactsApp.LogController.action/2
   (contacts_app) web/controllers/contacts_controller.ex:1: ContactsApp.LogController.phoenix_controller_pipeline/2
   (contacts_app) lib/phoenix/router.ex:261: ContactsApp.Router.dispatch/2
   (contacts_app) web/router.ex:1: ContactsApp.Router.do_call/2
   (contacts_app) lib/contacts_app/endpoint.ex:1: ContactsApp.Endpoint.phoenix_pipeline/1
   (contacts_app) lib/phoenix/endpoint/render_errors.ex:34: ContactsApp.Endpoint.call/2
   (phoenix) lib/phoenix/test/conn_test.ex:194: Phoenix.ConnTest.dispatch/5
   test/controllers/contacts_controller_test.exs:69

1 个答案:

答案 0 :(得分:1)

感谢@Dogbert和@sobolevn,我能够弄清楚我做错了什么。当代码由mix phoenix.gen.html生成时,控制器可能具有以下内容:

def create(conn, %{"contact" => contact_params}) do
  changeset = Contact.changeset(%Contact{}, contact_params)

  case Repo.insert(changeset) do
    {:ok, _contact} ->
      conn
      |> put_flash(:info, "Contact created successfully.")
      |> redirect(to: contact_path(conn, :index))
    {:error, changeset} ->
      render(conn, "new.html", changeset: changeset)
  end
end

当代码由mix phoenix.gen.json生成时,控制器包含稍微不同的代码:

def create(conn, %{"fred" => fred_params}) do
  changeset = Fred.changeset(%Fred{}, fred_params)

  case Repo.insert(changeset) do
    {:ok, fred} ->
      conn
      |> put_status(:created)
      |> put_resp_header("location", fred_path(conn, :show, fred))
      |> render("show.json", fred: fred)
    {:error, changeset} ->
      conn
      |> put_status(:unprocessable_entity)
      |> render(ContactsApp.ChangesetView, "error.json", changeset: changeset)
  end
end

在我复制和粘贴的代码中,@ Dogbert建议调用put_flash(这意味着可以使用:browser管道)。使用mix phoenix.gen.json生成的代码可以解决问题。