gpt4 book ai didi

pattern-matching - 如何使用模式匹配在 Phoenix Controller 测试中断言两个映射

转载 作者:行者123 更新时间:2023-12-04 16:06:48 25 4
gpt4 key购买 nike

在我的 Phoenix Controller 测试中,我正在做这样的事情,

describe "update/2" do
setup [:create_user]
test "Edits, and responds with the user if attributes are valid", %{conn: conn, user: user} do

response =
conn
|> put(user_path(conn, :update, user.id, @update_attrs))
|> json_response(200)

expected = %{
"data" =>
%{"currentCity" => "pune", "mobileNumber" => "1234567890"}
}

assert expected == response

end

我的 react 图是

%{
"data" => %{"currentCity" => "pune",
"mobileNumber" => "1234567890",
"name" => "xyz",
"gender" => "male"}}

由于我的响应映射包含预期映射中不存在的额外键,因此带有 == 的断言失败,所以我尝试使用这样的模式匹配进行断言

assert expected = response

但在这种情况下,无论预期和响应中的值是什么,断言始终为真。

我很困惑在 map 的情况下模式匹配发生了什么。

最佳答案

I am confused what's happening with the pattern matching in the case of maps.

当您进行模式匹配时,模式必须出现在左侧。您不能“存储”模式。您在这里所做的是将模式 expectedresponse 的值匹配,这将始终匹配,因为 expected 是一个变量,它将匹配右侧的任何值。

要解决这个问题,您可以像这样内联模式:

assert %{"data" => 
%{"currentCity" => "pune", "mobileNumber" => "1234567890"}
} = response

关于pattern-matching - 如何使用模式匹配在 Phoenix Controller 测试中断言两个映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47405985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com