1

嗨,我正在尝试在 GO 中模拟一个结构。我正在使用作证来做到这一点。但我似乎无法让它发挥作用,现在也不知道我做错了什么。下面是我拥有的示例 main.go 和 main_test.go 文件

// Arithmetic ...
type Arithmetic interface {
    Add(int, int) int
    Subtract(int, int) int
}

// MathOperation ...
type MathOperation struct {}

// GetNewArithmetic ...
func GetNewArithmetic(obj Arithmetic) Arithmetic {
    if obj != nil {
        return obj
    }

    return MathOperation{}
}

// Add ...
func (a MathOperation) Add(num1 int, num2 int) int {
    return num1 + num2
}

// Subtract ...
func (a MathOperation) Subtract(num1 int, num2 int) int {
    return num1 - num2
}

这是我的测试文件

import (
    "testing"

    "github.com/stretchr/testify/assert"
    "github.com/stretchr/testify/mock"
)

type MyMock struct {
    mock.Mock
}

func (m *MyMock) Add(num1 int, num2 int) int {
    args := m.Called(num1, num2)
    return args.Int(0) + args.Int(1)
}

func (m *MyMock) Subtract(num1 int, num2 int) int {
    args := m.Called(num1, num2)
    return args.Int(0) + args.Int(1)
}

func TestDoComputation(t *testing.T) {
    testobj := new(MyMock)

    testobj.On("Add", 1, 2).Return(5)

    // a := GetNewArithmetic(testobj)

    result := GetNewArithmetic(testobj)

    assert.Equal(t, 5, result.Add(5, 6))
    testobj.AssertExpectations(t)
}

我收到此错误

--- FAIL: TestDoComputation (0.00s)
panic:

mock: Unexpected Method Call
-----------------------------

Add(int,int)
            0: 5
            1: 6

The closest call I have is:

Add(int,int)
            0: 1
            1: 2


 [recovered]
        panic:

mock: Unexpected Method Call
-----------------------------

Add(int,int)
            0: 5
            1: 6

The closest call I have is:

Add(int,int)
            0: 1
            1: 2

goroutine 13 [running]:
testing.tRunner.func1(0xc420106870)
        /usr/lib/golang/src/testing/testing.go:711 +0x2d2
panic(0x701160, 0xc420011070)

我不知道如何修复,因为这是我第一次使用 Go 并使用 Testify 进行单元测试。如果有人可以看看并有一个工作版本,将不胜感激。谢谢

4

2 回答 2

6

线

testobj.On("Add", 1, 2).Return(5)

意味着您希望testobjmock 接收到对其Add带有参数的方法的调用1并将其2传递给它,并且您还指定该调用应返回整数值5

而是在这条线上

assert.Equal(t, 5, result.Add(5, 6))

您正在Add使用参数调用该方法,5并且6.

这会导致您得到的错误:

mock: Unexpected Method Call
-----------------------------

Add(int,int)
            0: 5
            1: 6
// this is result.Add(5, 6), the 0: and 1: are indexes of the actually passed in aguments.

The closest call I have is:

Add(int,int)
            0: 1
            1: 2
// this is testobj.On("Add", 1, 2), and 0: and 1: are indexes of the expected arguments.

最重要的是,您的模拟实现正在尝试计算并返回该值。这不是模拟应该做的。模拟应该返回通过该Return方法提供给它的值。

您可以使用args从方法调用返回的值来执行此操作Called,该值将保存Return方法的参数,其索引顺序与它们传递给的顺序相同Return

所以你在这一行5传递的整数值Return

testobj.On("Add", 1, 2).Return(5)

可以使用Int实用程序方法访问并将其传递给第 0 个索引。那return args.Int(0)将返回整数值5

所以你的测试文件应该看起来更像这样:

import (
    "testing"

    "github.com/stretchr/testify/assert"
    "github.com/stretchr/testify/mock"
)

type MyMock struct {
    mock.Mock
}

func (m *MyMock) Add(num1 int, num2 int) int {
    args := m.Called(num1, num2)
    return args.Int(0)
}

func (m *MyMock) Subtract(num1 int, num2 int) int {
    args := m.Called(num1, num2)
    return args.Int(0)
}

func TestDoComputation(t *testing.T) {
    testobj := new(MyMock)

    testobj.On("Add", 1, 2).Return(5)

    // a := GetNewArithmetic(testobj)

    result := GetNewArithmetic(testobj)

    assert.Equal(t, 5, result.Add(1, 2))
    testobj.AssertExpectations(t)
}
于 2018-06-09T09:48:50.960 回答
2

在作证/模拟包中

testobj.On("Add", 1, 2).Return(5)

在上面的行中,它告诉模拟对象,每当我们使用以下参数调用 Add 方法时,它应该返回 5。return 用于将结果传递给具有给定参数的方法。

assert.Equal(t, 5, result.Add(5, 6))

在这一行中,您要求将预期结果与函数调用相匹配。之前您指定在传递 1 和 2 时,函数应返回 5,但在 Equal 语句中,您传递的值是 5 和 6

您所要做的就是更改具有正确值的任何一行。

testobj.On("添加", 5, 6).Return(5)

于 2018-11-29T05:53:04.437 回答