gpt4 book ai didi

go - 运行测试用例时,模拟方法在 golang 中不起作用

转载 作者:行者123 更新时间:2023-12-01 22:08:11 25 4
gpt4 key购买 nike

我试图在测试用例中模拟一个结构方法,但它不起作用。
我要模拟验证 方法在这里:
`

package main

import (
"fmt"
)

type DemoInterface interface {
Inc(int) (int, error)
Validate(int) error
}
type DemoStruct struct{}

func (l DemoStruct) Inc(num int) (int, error) {
err := l.Validate(num)
if err != nil {
return 0, err
}
num = num + 100
return num, nil

}
func (l DemoStruct) Validate(num int) error {// SOME DB LOGIC IS HERE WHICH I CAN NOT POST at Stackoverflow
if num > 100 {
return fmt.Errorf("INVALID NUM %v", num)
}
return nil
}

func main() {
s, err := DemoStruct{}.Inc(10)
if err != nil {
fmt.Println(err)
}
fmt.Println(s)

}

`

我的测试用例:
package main

import (
"fmt"
"testing"
)

const (
SUCCESS = "SUCCESS"
ERROR = "ERROR"
)

type MockDemoStruct struct {
DemoStruct
functionality string
}

func (m MockDemoStruct) Validate(num int) error {
switch m.functionality {
case SUCCESS:
return nil
case ERROR:
fmt.Errorf("MOCK ERROR %v", num)

}
return fmt.Errorf("MOCK ERROR %v", num)
}

func TestPath(t *testing.T) {

t.Run("ERROR", func(t *testing.T) {
ls := MockDemoStruct{DemoStruct{}, ERROR}
res, err := ls.Inc(110)
expected := fmt.Errorf("MOCK ERROR %v", 10)
if err != expected {
t.Errorf("NOT MATCH %v %v", err, expected)
//NOT MATCH INVALID NUM 110 MOCK ERROR 10

}
fmt.Println(res)
})
}

这里 MockDemoStruct.Validate 没有被调用。
我收到 无效的号码 110 来自验证,但应该是 模拟错误 110

最佳答案

在这种情况下,方法 IncDemoStruct调用方法l.Validate其中 l 是 DemoStruct .该方法的接收者明确是 DemoStruct .所以MockDemoStruct.Validate方法不会被调用。

Go 没有您在代码中假设的继承。您不能覆盖 DemoStruct 的方法. MockDemoStruct组成DemoStruct .要实际测试此方法,我建议通过 DemoStruct一个 db 接口(interface),可以在您的测试中模拟。

关于go - 运行测试用例时,模拟方法在 golang 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59693971/

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