1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
go-mock
=======
A mocking framework for [Go](http://golang.org/).
Read online reference at http://godoc.org/github.com/maraino/go-mock
Status
------
[](https://travis-ci.org/maraino/go-mock)
[](https://coveralls.io/github/maraino/go-mock?branch=master)
[](http://godoc.org/github.com/maraino/go-mock)
Usage
-----
Let's say that we have an interface like this that we want to Mock.
type Client interface {
Request(url *url.URL) (int, string, error)
}
We need to create a new struct that implements the interface. But we will use
github.com/maraino/go-mock to replace the actual calls with some specific results.
import (
"github.com/maraino/go-mock"
"net/url"
)
type MyClient struct {
mock.Mock
}
func (c *MyClient) Request(url *url.URL) (int, string, error) {
ret := c.Called(url)
return ret.Int(0), ret.String(1), ret.Error(2)
}
Then we need to configure the responses for the defined functions:
c := &MyClient{}
url, _ := url.Parse("http://www.example.org")
c.When("Request", url).Return(200, "{result:1}", nil).Times(1)
We will execute the function that we have Mocked:
code, json, err := c.Request(url)
fmt.Printf("Code: %d, JSON: %s, Error: %v\n", code, json, err)
This will produce the output:
Code: 200, JSON: {result:1}, Error: <nil>
And finally if we want to verify the number of calls we can use:
if ok, err := c.Verify(); !ok {
fmt.Println(err)
}
API Reference
-------------
### func (m *Mock) When(name string, arguments ...interface{}) *MockFunction
Creates an stub for a specific function and a list of arguments.
c.When("FunctionName", argument1, argument2, ...)
It returns a mock.MockFunction that can be used to configure the behavior and
validations when the method is called
### func (m *Mock) Reset() *Mock
Removes all the defined stubs and returns a clean mock.
### func (m *Mock) Verify() (bool, error)
Checks all validations and return if true if they are ok, or false and an error
if at least one validation have failed.
### func (m *Mock) Called(arguments ...interface{}) *MockResult
Called must be used in the struct that implements the interface that we want to mock.
It's the code that glues that struct with the go-mock package.
We will need to implement the interface and then use Called with the function arguments
and use the return value to return the values to our mocked struct.
type Map interface {
Set(key string, value interface{})
Get(key string) (interface{}, error)
GetString(key string) (string, error)
Load(key string, value interface{}) error
}
type MyMap struct {
mock.Mock
}
func (m *MyMap) Set(key string, value interface{}) {
m.Called(key, value)
}
func (m *MyMap) Get(key string) (interface{}, error) {
ret := m.Called(key)
return ret.Get(0), ret.Error(1)
}
func (m *MyMap) GetString(key string) (string, error) {
ret := m.Called(key)
return ret.String(0), ret.Error(1)
}
func (m *MyMap) Load(key string, value interface{}) error {
ret := m.Called(key, value)
return ret.Error(0)
}
### func (f *MockFunction) Return(v ...interface{}) *MockFunction
Defines the return parameters of our stub. The use of it is pretty simple, we
can simply chain mock.When with Return to set the return values.
m.When("Get", "a-test-key").Return("a-test-value", nil)
m.When("GetString", "a-test-key").Return("a-test-value", nil)
m.When("Get", "another-test-key").Return(123, nil)
m.When("Get", mock.Any).Return(nil, errors.New("not-found"))
If no return values are set, the method will return 0 for numeric types,
false for bools, "" for strings and nil for errors or any other type.
### func (f *MockFunction) ReturnToArgument(n int, v interface{}) *MockFunction
Defines a special return parameter to an argument of the function. We can also chain
this method to a When or a Return.
m.When("Load", "a-test-key").ReturnToArgument(1, "a-test-value")
m.When("Load", "another-test-key").Return(nil).ReturnToArgument(1, 123)
### func (f *MockFunction) Panic(v interface{}) *MockFunction
Panic will cause a panic when the stub method is called with the specified parameters.
m.When("Get", "foobar").Panic("internal error")
### func (f *MockFunction) Times(a int) *MockFunction
Defines the exact number of times a method should be called. This is validated if mock.Verify
is executed.
m.When("Get", "a-test-key").Return("a-test-value", nil).Times(1)
### func (f *MockFunction) AtLeast(a int) *MockFunction
Defines the minimum number of times a method should be called. This is validated if mock.Verify
is executed.
m.When("Get", "a-test-key").Return("a-test-value", nil).AtLeast(2)
### func (f *MockFunction) AtMost(a int) *MockFunction
Defines the maximum number of times a method should be called. This is validated if mock.Verify
is executed.
m.When("Get", "a-test-key").Return("a-test-value", nil).AtMost(1)
### func (f *MockFunction) Between(a, b int) *MockFunction
Defines a range of times a method should be called. This is validated if mock.Verify
is executed.
m.When("Get", "a-test-key").Return("a-test-value", nil).Between(2, 5)
### func (f *MockFunction) Timeout(d time.Duration) *MockFunction
Defines a timeout to sleep before returning the value of a function.
m.When("Get", "a-test-key").Return("a-test-value", nil).Timeout(100 * time.Millisecond)
### func (f *MockFunction) Call(call interface{}) *MockFunction
Defines a custom function that will be executed instead of the function in the stub.
The return values of the function will be used as the return values for the stub.
datastore := make(map[string]interface{})
m.When("Get", mock.Any).Call(func(key string) (interface{}, error) {
if i, ok := datastore[key]; ok {
return i, nil
} else {
return nil, ErrNotFound
}
})
m.When("Set", mock.Any, mock.Any).Call(func(key string, value interface{}) error {
datastore[key] = value
return nil
})
|