-1

嗨,我想测试或模拟某个函数并为此返回一个模拟响应。下面演示的是我的代码

示例.go

package main

import (
    "fmt"

    log "github.com/sirupsen/logrus"
)

var connectDB = Connect

func Sample() {
    config := NewConfig()
    response := connectDB(config)
    fmt.Println(response)
    log.Info(response)
}

func Connect(config *Config) string {
    return "Inside the connect"
}

我的测试是这样的

Sample_test.go

package main

import (
    "testing"
)

func TestSample(t *testing.T) {

    oldConnect := connectDB
    connectDB := func(config *Config) string {
        return "Mock response"
    }
    defer func() { connectDB = oldConnect }()

    Sample()
}

因此,在运行go test时,我期望接收和输出Mock 响应,但我仍然进入Connect 内部。我在这里缺少什么吗?

4

2 回答 2

1

@jrefior 是正确的,但我建议使用接口进行模拟。当然,这取决于你,对我打赌它更清晰,但更复杂的代码:)

// lack some fields :)
type Config struct {
}

// Use interface to call Connect method
type IConnection interface {
    Connect(config *Config) string
}

// Real connection to DB
type Connection struct {
}

func (c Connection) Connect(config *Config) string {
    return "Inside the connect"
}

// Mock connection
type MockConnection struct {
}

func (c MockConnection) Connect(config *Config) string {
    return "Mock connection"
}

// Accepts interface to connect real or mock DB
func Sample(con IConnection) {
    log.Println(con.Connect(nil))
}


func main() {
    realConnection := Connection{}
    Sample(realConnection)

    mockConnection := MockConnection{}
    Sample(mockConnection)
}
于 2018-07-25T11:24:11.183 回答
0

此处使用冒号会创建一个新的同名函数范围变量:

connectDB := func(config *Config) string {
    return "Mock response"
}

删除冒号以分配给包变量。

于 2018-07-25T11:08:23.980 回答