进行电子邮件的测试和更改操作
来源:stackoverflow
时间:2024-02-13 12:18:23 294浏览 收藏
大家好,今天本人给大家带来文章《进行电子邮件的测试和更改操作》,文中内容主要涉及到,如果你对Golang方面的知识点感兴趣,那就请各位朋友继续看下去吧~希望能真正帮到你们,谢谢!
问题内容
我正在尝试运行 go 测试,这部分失败了。我正在使用 changeemail 函数进行测试。我真的不知道发生了什么。
func testchangeemail(t *testing.t) { ctx := context.background() inittestcontext(ctx) buf := bytes.buffer{} enc := json.newencoder(&buf) enc.encode(testprofile) // create the request object with jwt req, err := http.newrequestwithcontext(ctx, "put", "http://localhost:8080/v1/profile/", &buf) if err != nil { t.fatal(err) } // // 1) create the initial profile const sqlselectall = `select * from "profiles" where email = $1 order by "profiles"."id" limit 1` const sqlcreate = `insert into "profiles" ("created_at","updated_at","deleted_at","display_name","email","email_verified","id") values ($1,$2,$3,$4,$5,$6,$7) returning "id"` expected := sqlmock.newrows([]string{"id", "display_name", "email"}).addrow(testprofile.id, testprofile.displayname, testprofile.email) mock.expectquery(regexp.quotemeta(sqlselectall)).withargs(testprofile.email).willreturnerror(fmt.errorf("not found")) mock.expectbegin() mock.expectquery(regexp.quotemeta(sqlcreate)).withargs(anytime{}, anytime{}, nil, testprofile.displayname, testprofile.email, testprofile.emailverified, sqlmock.anyarg()).willreturnrows(expected) mock.expectcommit() newemail := "[email protected]" // // 2) change the initial profile's email const sqlupdate = `update "profiles" set "email"=$1 where "email"=$2` mock.expectbegin() mock.expectexec(regexp.quotemeta(sqlupdate)).withargs(newemail, testprofile.email).willreturnresult(sqlmock.newresult(0, 1)) mock.expectcommit() if err := executeandvalidaterequest(req, http.statuscreated); err != nil { t.error(err) } }
我收到的错误是 --- fail: testchangeemail (0.00s) 恐慌:运行时错误:无效的内存地址或 nil 指针取消引用 [已恢复] 恐慌:运行时错误:无效的内存地址或 nil 指针取消引用 [信号 sigsegv : 分段违规代码=0x2 addr=0x18 pc=0x102d2fc94]
这是 legec 指出的下面的堆栈跟踪。我只是想添加所有我能添加的信息
goroutine 4 [running]: testing.tRunner.func1.2({0x1050f65e0, 0x105512000}) /usr/local/go/src/testing/testing.go:1396 +0x1c8 testing.tRunner.func1() /usr/local/go/src/testing/testing.go:1399 +0x378 panic({0x1050f65e0, 0x105512000}) /usr/local/go/src/runtime/panic.go:884 +0x204 gitlab/developers/server/profile.changeEmail({0x105199db8, 0x14000341e80}, 0x14000374600) /Users/example/Documents/project/server/profile/handlers.go:75 +0x44 net/http.HandlerFunc.ServeHTTP(0x14000374500?, {0x105199db8?, 0x14000341e80?}, 0x0?) /usr/local/go/src/net/http/server.go:2109 +0x38 github.com/gorilla/mux.(*Router).ServeHTTP(0x1400015a480, {0x105199db8, 0x14000341e80}, 0x14000374400) /Users/example/go/pkg/mod/github.com/gorilla/[email protected]/mux.go:210 +0x19c gitlab/developers/server/profile.executeAndValidateRequest(0x14000247ce0?, 0x12?) /Users/example/Documents/project/server/profile/handlers_test.go:134 +0xbc gitlab/developers/server/profile.TestChangeEmail(0x14000156d00) /Users/example/Documents/project/server/profile/handlers_test.go:282 +0x89c testing.tRunner(0x14000156d00, 0x105191b28) /usr/local/go/src/testing/testing.go:1446 +0x10c created by testing.(*T).Run /usr/local/go/src/testing/testing.go:1493 +0x300 FAIL gitlab/developers/server/profile 0.145s FAIL
正确答案
除了此错误消息之外,您还有一个堆栈跟踪,指示代码失败的位置。
从上到下读取堆栈跟踪:
- 在恐慌之后有几帧,因为一些代码和函数被执行来处理恐慌本身,
- 然后你就会看到恐慌本身:
panic({0x1050f65e0, 0x105512000}) /usr/local/go/src/runtime/panic.go:884 +0x204
此代码位于标准库中 - 后面的行会告诉您哪一行触发了恐慌:
gitlab/developers/server/profile.changeEmail({0x105199db8, 0x14000341e80}, 0x14000374600) /Users/example/Documents/project/server/profile/handlers.go:75 +0x44
该行触发了零指针取消引用:server/profile/handlers.go:75
- 您还拥有导致执行该行的函数调用序列
例如:在堆栈的底部,您可以看到,在测试函数testchangeemail()
中,触发错误的调用位于handlers_test.go:282
,其顶部的框架表明它是对executeandvalidaterequest()
您现在可以调试代码,看看它是否是项目中的错误,或者是测试中未初始化的内容。
好了,本文到此结束,带大家了解了《进行电子邮件的测试和更改操作》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!
声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
357 收藏
-
352 收藏
-
101 收藏
-
440 收藏
-
212 收藏
-
143 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习