How to use Any method of gomock Package

Best Mock code snippet using gomock.Any

conda_test.go

Source:conda_test.go Github

copy

Full Screen

...40 depDir = filepath.Join(depsDir, depsIdx)41 mockCtrl = gomock.NewController(GinkgoT())42 mockInstaller = NewMockInstaller(mockCtrl)43 mockStager = NewMockStager(mockCtrl)44 mockStager.EXPECT().BuildDir().AnyTimes().Return(buildDir)45 mockStager.EXPECT().CacheDir().AnyTimes().Return(cacheDir)46 mockStager.EXPECT().DepDir().AnyTimes().Return(depDir)47 mockStager.EXPECT().DepsIdx().AnyTimes().Return(depsIdx)48 mockCommand = NewMockCommand(mockCtrl)49 buffer = new(bytes.Buffer)50 logger = libbuildpack.NewLogger(ansicleaner.New(buffer))51 subject = conda.New(mockInstaller, mockStager, mockCommand, logger)52 })53 AfterEach(func() {54 mockCtrl.Finish()55 Expect(os.RemoveAll(buildDir)).To(Succeed())56 Expect(os.RemoveAll(cacheDir)).To(Succeed())57 Expect(os.RemoveAll(depsDir)).To(Succeed())58 })59 Describe("Version", func() {60 Context("runtime.txt specifies python 3", func() {61 BeforeEach(func() {62 Expect(ioutil.WriteFile(filepath.Join(buildDir, "runtime.txt"), []byte("python-3.2.3"), 0644)).To(Succeed())63 })64 It("returns 'miniconda3'", func() {65 Expect(subject.Version()).To(Equal("miniconda3"))66 })67 })68 Context("runtime.txt does not exist", func() {69 It("returns 'miniconda3'", func() {70 Expect(subject.Version()).To(Equal("miniconda3"))71 })72 })73 })74 Describe("Install", func() {75 It("downloads and installs miniconda version", func() {76 mockInstaller.EXPECT().InstallOnlyVersion("Miniconda7", gomock.Any()).Do(func(_, path string) {77 Expect(ioutil.WriteFile(path, []byte{}, 0644)).To(Succeed())78 })79 mockCommand.EXPECT().Execute("/", gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any())80 Expect(subject.Install("Miniconda7")).To(Succeed())81 })82 It("make downloaded file executable", func() {83 mockInstaller.EXPECT().InstallOnlyVersion("Miniconda7", gomock.Any()).Do(func(_, path string) {84 Expect(ioutil.WriteFile(path, []byte{}, 0644)).To(Succeed())85 })86 mockCommand.EXPECT().Execute("/", gomock.Any(), gomock.Any(), gomock.Any(), "-b", "-p", filepath.Join(depDir, "conda")).Do(func(_ string, _, _ io.Writer, path string, _ ...string) {87 fi, err := os.Lstat(path)88 Expect(err).NotTo(HaveOccurred())89 Expect(fi.Mode()).To(Equal(os.FileMode(0755)))90 })91 Expect(subject.Install("Miniconda7")).To(Succeed())92 })93 It("deletes installer", func() {94 var installerPath string95 mockInstaller.EXPECT().InstallOnlyVersion("Miniconda7", gomock.Any()).Do(func(_, path string) {96 Expect(ioutil.WriteFile(path, []byte{}, 0644)).To(Succeed())97 installerPath = path98 })99 mockCommand.EXPECT().Execute("/", gomock.Any(), gomock.Any(), gomock.Any(), "-b", "-p", filepath.Join(depDir, "conda")).Do(func(_ string, _, _ io.Writer, path string, _ ...string) {100 Expect(path).To(Equal(installerPath))101 })102 Expect(subject.Install("Miniconda7")).To(Succeed())103 Expect(installerPath).ToNot(BeARegularFile())104 })105 })106 Describe("UpdateAndClean", func() {107 AfterEach(func() {108 os.Unsetenv("BP_DEBUG")109 })110 Context("BP_DEBUG == false", func() {111 It("calls update and clean on conda (with quiet flag)", func() {112 mockCommand.EXPECT().Execute("/", gomock.Any(), gomock.Any(), filepath.Join(depDir, "conda", "bin", "conda"), "env", "update", "--quiet", "-n", "dep_env", "-f", filepath.Join(buildDir, "environment.yml"))113 mockCommand.EXPECT().Execute("/", gomock.Any(), gomock.Any(), filepath.Join(depDir, "conda", "bin", "conda"), "clean", "-pt")114 Expect(subject.UpdateAndClean()).To(Succeed())115 })116 })117 Context("BP_DEBUG == true", func() {118 BeforeEach(func() {119 os.Setenv("BP_DEBUG", "1")120 })121 It("calls update and clean on conda (with debug and verbose flags)", func() {122 mockCommand.EXPECT().Execute("/", gomock.Any(), gomock.Any(), filepath.Join(depDir, "conda", "bin", "conda"), "env", "update", "--debug", "--verbose", "-n", "dep_env", "-f", filepath.Join(buildDir, "environment.yml"))123 mockCommand.EXPECT().Execute("/", gomock.Any(), gomock.Any(), filepath.Join(depDir, "conda", "bin", "conda"), "clean", "-pt")124 Expect(subject.UpdateAndClean()).To(Succeed())125 })126 })127 })128 It("ProfileD", func() {129 Expect(subject.ProfileD()).To(Equal(`grep -rlI ` + depDir + ` $DEPS_DIR/13/conda | xargs sed -i -e "s|` + depDir + `|$DEPS_DIR/13|g"130source activate dep_env131`))132 })133 Describe("SaveCache", func() {134 It("copies the conda envs dir to cache", func() {135 mockCommand.EXPECT().Output("/", "cp", "-Rl", filepath.Join(depDir, "conda", "envs"), filepath.Join(cacheDir, "envs"))136 Expect(subject.SaveCache()).To(Succeed())137 })138 It("stores dep dir in cache as conda_prefix", func() {139 mockCommand.EXPECT().Output(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).AnyTimes()140 Expect(subject.SaveCache()).To(Succeed())141 Expect(filepath.Join(cacheDir, "conda_prefix")).To(BeARegularFile())142 Expect(ioutil.ReadFile(filepath.Join(cacheDir, "conda_prefix"))).To(Equal([]byte(depDir)))143 })144 })145 Describe("RestoreCache", func() {146 Context("no cache", func() {147 It("does nothing", func() {148 Expect(subject.RestoreCache()).To(Succeed())149 })150 })151 Context("envs cache exists", func() {152 BeforeEach(func() {153 Expect(ioutil.WriteFile(filepath.Join(cacheDir, "conda_prefix"), []byte("/old/dep/dir\n"), 0644)).To(Succeed())...

Full Screen

Full Screen

transfer_test.go

Source:transfer_test.go Github

copy

Full Screen

...35 "amount": amount,36 "currency": util.USD,37 },38 buildStubs: func(store *mockdb.MockStore) {39 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account1.ID)).Times(1).Return(account1, nil)40 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account2.ID)).Times(1).Return(account2, nil)41 arg := db.TransferTxParams{42 FromAccountID: account1.ID,43 ToAccountID: account2.ID,44 Amount: amount,45 }46 store.EXPECT().TransferTx(gomock.Any(), gomock.Eq(arg)).Times(1)47 },48 checkResponse: func(recorder *httptest.ResponseRecorder) {49 require.Equal(t, http.StatusOK, recorder.Code)50 },51 },52 {53 name: "FromAccountNotFound",54 body: gin.H{55 "from_account_id": account1.ID,56 "to_account_id": account2.ID,57 "amount": amount,58 "currency": util.USD,59 },60 buildStubs: func(store *mockdb.MockStore) {61 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account1.ID)).Times(1).Return(db.Account{}, sql.ErrNoRows)62 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account2.ID)).Times(0)63 store.EXPECT().TransferTx(gomock.Any(), gomock.Any()).Times(0)64 },65 checkResponse: func(recorder *httptest.ResponseRecorder) {66 require.Equal(t, http.StatusNotFound, recorder.Code)67 },68 },69 {70 name: "ToAccountNotFound",71 body: gin.H{72 "from_account_id": account1.ID,73 "to_account_id": account2.ID,74 "amount": amount,75 "currency": util.USD,76 },77 buildStubs: func(store *mockdb.MockStore) {78 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account1.ID)).Times(1).Return(account1, nil)79 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account2.ID)).Times(1).Return(db.Account{}, sql.ErrNoRows)80 store.EXPECT().TransferTx(gomock.Any(), gomock.Any()).Times(0)81 },82 checkResponse: func(recorder *httptest.ResponseRecorder) {83 require.Equal(t, http.StatusNotFound, recorder.Code)84 },85 },86 {87 name: "FromAccountCurrencyMismatch",88 body: gin.H{89 "from_account_id": account3.ID,90 "to_account_id": account2.ID,91 "amount": amount,92 "currency": util.USD,93 },94 buildStubs: func(store *mockdb.MockStore) {95 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account3.ID)).Times(1).Return(account3, nil)96 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account2.ID)).Times(0)97 store.EXPECT().TransferTx(gomock.Any(), gomock.Any()).Times(0)98 },99 checkResponse: func(recorder *httptest.ResponseRecorder) {100 require.Equal(t, http.StatusBadRequest, recorder.Code)101 },102 },103 {104 name: "ToAccountCurrencyMismatch",105 body: gin.H{106 "from_account_id": account1.ID,107 "to_account_id": account3.ID,108 "amount": amount,109 "currency": util.USD,110 },111 buildStubs: func(store *mockdb.MockStore) {112 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account1.ID)).Times(1).Return(account1, nil)113 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account3.ID)).Times(1).Return(account3, nil)114 store.EXPECT().TransferTx(gomock.Any(), gomock.Any()).Times(0)115 },116 checkResponse: func(recorder *httptest.ResponseRecorder) {117 require.Equal(t, http.StatusBadRequest, recorder.Code)118 },119 },120 {121 name: "InvalidCurrency",122 body: gin.H{123 "from_account_id": account1.ID,124 "to_account_id": account2.ID,125 "amount": amount,126 "currency": "XYZ",127 },128 buildStubs: func(store *mockdb.MockStore) {129 store.EXPECT().GetAccount(gomock.Any(), gomock.Any()).Times(0)130 store.EXPECT().TransferTx(gomock.Any(), gomock.Any()).Times(0)131 },132 checkResponse: func(recorder *httptest.ResponseRecorder) {133 require.Equal(t, http.StatusBadRequest, recorder.Code)134 },135 },136 {137 name: "NegativeAmount",138 body: gin.H{139 "from_account_id": account1.ID,140 "to_account_id": account2.ID,141 "amount": -amount,142 "currency": util.USD,143 },144 buildStubs: func(store *mockdb.MockStore) {145 store.EXPECT().GetAccount(gomock.Any(), gomock.Any()).Times(0)146 store.EXPECT().TransferTx(gomock.Any(), gomock.Any()).Times(0)147 },148 checkResponse: func(recorder *httptest.ResponseRecorder) {149 require.Equal(t, http.StatusBadRequest, recorder.Code)150 },151 },152 {153 name: "GetAccountError",154 body: gin.H{155 "from_account_id": account1.ID,156 "to_account_id": account2.ID,157 "amount": amount,158 "currency": util.USD,159 },160 buildStubs: func(store *mockdb.MockStore) {161 store.EXPECT().GetAccount(gomock.Any(), gomock.Any()).Times(1).Return(db.Account{}, sql.ErrConnDone)162 store.EXPECT().TransferTx(gomock.Any(), gomock.Any()).Times(0)163 },164 checkResponse: func(recorder *httptest.ResponseRecorder) {165 require.Equal(t, http.StatusInternalServerError, recorder.Code)166 },167 },168 {169 name: "TransferTxError",170 body: gin.H{171 "from_account_id": account1.ID,172 "to_account_id": account2.ID,173 "amount": amount,174 "currency": util.USD,175 },176 buildStubs: func(store *mockdb.MockStore) {177 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account1.ID)).Times(1).Return(account1, nil)178 store.EXPECT().GetAccount(gomock.Any(), gomock.Eq(account2.ID)).Times(1).Return(account2, nil)179 store.EXPECT().TransferTx(gomock.Any(), gomock.Any()).Times(1).Return(db.TransferTxResult{}, sql.ErrTxDone)180 },181 checkResponse: func(recorder *httptest.ResponseRecorder) {182 require.Equal(t, http.StatusInternalServerError, recorder.Code)183 },184 },185 }186 for i := range testCases {187 tc := testCases[i]188 t.Run(tc.name, func(t *testing.T) {189 ctrl := gomock.NewController(t)190 defer ctrl.Finish()191 store := mockdb.NewMockStore(ctrl)192 tc.buildStubs(store)193 server := NewServer(store)...

Full Screen

Full Screen

Any

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 ctrl := gomock.NewController(t)4 defer ctrl.Finish()5 mock := NewMockMyInterface(ctrl)6 mock.EXPECT().Any(gomock.Any()).Return(nil)7}

Full Screen

Full Screen

Any

Using AI Code Generation

copy

Full Screen

1import (2type MyInterface interface {3 DoSomething(int) int4}5type MyMock struct {6}7type MockMyInterfaceMockRecorder struct {8}9func NewMyMock(ctrl *gomock.Controller) *MyMock {10 mock := &MyMock{ctrl: ctrl}11 mock.recorder = &MockMyInterfaceMockRecorder{mock}12}13func (m *MyMock) EXPECT() *MockMyInterfaceMockRecorder {14}15func (m *MyMock) DoSomething(arg0 int) int {16 m.ctrl.T.Helper()17 ret := m.ctrl.Call(m, "DoSomething", arg0)18 ret0, _ := ret[0].(int)19}20func (mr *MockMyInterfaceMockRecorder) DoSomething(arg0 interface{}) *gomock.Call {21 mr.mock.ctrl.T.Helper()22 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DoSomething", reflect.TypeOf((*MyMock)(nil).DoSomething), arg0)23}24func main() {25 ctrl := gomock.NewController(t)26 defer ctrl.Finish()27 m := NewMyMock(ctrl)28 fmt.Println(m)29}30&{0xc0000a2000 0xc0000a2008}31func TestFunction(t *testing.T) {32 funcToTest := func(i int) int {33 }34 result := function(funcToTest)35 if result != 2 {36 t.Errorf("Expected 2, got %d", result)37 }38}39func function(f func(int) int) int {40 return f(1)41}

Full Screen

Full Screen

Any

Using AI Code Generation

copy

Full Screen

1func TestAny(t *testing.T) {2 ctrl := gomock.NewController(t)3 defer ctrl.Finish()4 mock := mock_math.NewMockCalculator(ctrl)5 mock.EXPECT().Add(gomock.Any(), gomock.Any()).Return(2, nil)6 result, err := mock.Add(1, 1)7 if err != nil {8 t.Errorf("Unexpected error %v", err)9 }10 if result != 2 {11 t.Errorf("Unexpected result %d, expected 2", result)12 }13}14--- PASS: TestAny (0.00s)15func TestDo(t *testing.T) {16 ctrl := gomock.NewController(t)17 defer ctrl.Finish()18 mock := mock_math.NewMockCalculator(ctrl)19 mock.EXPECT().Add(gomock.Any(), gomock.Any()).Do(func(a, b int) {20 if a != 1 || b != 1 {21 t.Errorf("Unexpected arguments a=%d, b=%d", a, b)22 }23 }).Return(2, nil)24 result, err := mock.Add(1, 1)25 if err != nil {26 t.Errorf("Unexpected error %v", err)27 }28 if result != 2 {29 t.Errorf("Unexpected result %d, expected 2", result)30 }31}32--- PASS: TestDo (0.00s)

Full Screen

Full Screen

Any

Using AI Code Generation

copy

Full Screen

1func TestSomething(t *testing.T) {2 for i := 0; i < 10; i++ {3 testStrings = append(testStrings, fmt.Sprintf("test%d", i))4 }5 testStrings := []string{"test0", "test1", "test2", "test3", "test4", "test5", "test6", "test7", "test8", "test9"}6}7func TestSomething(t *testing.T) {8 for i := 0; i < 10; i++ {9 testStrings = append(testStrings, fmt.Sprintf("test%d", i))10 }11 testStrings := []string{"test0", "test1", "test2", "test3", "test4", "test5", "test6", "test7", "test8", "test9"}12}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful