Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Add example for Call.Do and Call.DoAndReturn (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvgw authored Aug 21, 2020
1 parent 7b53c4d commit d2fe5cd
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,15 @@ func TestFoo(t *testing.T) {

m := NewMockFoo(ctrl)

// Does not make any assertions. Returns 101 when Bar is invoked with 99.
// Does not make any assertions. Executes the anonymous functions and returns
// its result when Bar is invoked with 99.
m.
EXPECT().
Bar(gomock.Eq(99)).
Return(101).
DoAndReturn(func(_ int) int {
time.Sleep(1*time.Second)
return 101
}).
AnyTimes()

// Does not make any assertions. Returns 103 when Bar is invoked with 101.
Expand Down
82 changes: 82 additions & 0 deletions gomock/doc_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
package gomock_test

import (
"fmt"
"testing"
"time"

"github.com/golang/mock/gomock"
mock_sample "github.com/golang/mock/sample/mock_user"
)

func ExampleCall_DoAndReturn_latency() {
t := &testing.T{} // provided by test
ctrl := gomock.NewController(t)
mockIndex := mock_sample.NewMockIndex(ctrl)

mockIndex.EXPECT().Get(gomock.Any()).DoAndReturn(
// signature of anonymous function must have the same number of input and output arguments as the mocked method.
func(arg string) string {
time.Sleep(1 * time.Millisecond)
return "I'm sleepy"
},
)

r := mockIndex.Get("foo")
fmt.Println(r)
// Output: I'm sleepy
}

func ExampleCall_DoAndReturn_captureArguments() {
t := &testing.T{} // provided by test
ctrl := gomock.NewController(t)
mockIndex := mock_sample.NewMockIndex(ctrl)
var s string

mockIndex.EXPECT().Get(gomock.AssignableToTypeOf(s)).DoAndReturn(
// signature of anonymous function must have the same number of input and output arguments as the mocked method.
func(arg string) interface{} {
s = arg
return "I'm sleepy"
},
)

r := mockIndex.Get("foo")
fmt.Printf("%s %s", r, s)
// Output: I'm sleepy foo
}

func ExampleCall_Do_latency() {
t := &testing.T{} // provided by test
ctrl := gomock.NewController(t)
mockIndex := mock_sample.NewMockIndex(ctrl)

mockIndex.EXPECT().Anon(gomock.Any()).Do(
// signature of anonymous function must have the same number of input and output arguments as the mocked method.
func(_ string) {
fmt.Println("sleeping")
time.Sleep(1 * time.Millisecond)
},
)

mockIndex.Anon("foo")
// Output: sleeping
}

func ExampleCall_Do_captureArguments() {
t := &testing.T{} // provided by test
ctrl := gomock.NewController(t)
mockIndex := mock_sample.NewMockIndex(ctrl)

var s string
mockIndex.EXPECT().Anon(gomock.AssignableToTypeOf(s)).Do(
// signature of anonymous function must have the same number of input and output arguments as the mocked method.
func(arg string) {
s = arg
},
)

mockIndex.Anon("foo")
fmt.Println(s)
// Output: foo
}

0 comments on commit d2fe5cd

Please sign in to comment.