Coder Social home page Coder Social logo

mockgenredisv9's Introduction

Potential bug between mockgen and redis cache v9

Introduction

Running go test -cover ./... in the root directory here or running the test suite in mock_v9 directory shows the test failure result

wrong number of arguments in DoAndReturn func for *mock_v9.MockCmdable.MGet: got 3, want 2 [/build/mock_v9/redis_cache_v2_test.go:36]

This is not expected as 3 arguments are supplied and available on the method, I would expect this test which is in file redis_cache_v2_test.go to pass.

mockRedis.EXPECT().MGet(gomock.Any(), gomock.Any(), gomock.Any()).DoAndReturn(func(context context.Context, cacheKey string, deleteKey string)

Mock file generation

To generate the mock files (which already exist).

mockgen github.com/redis/go-redis/v9 Cmdable > mock_v9/redis_mock.go

mockgen github.com/redis/go-redis/v9 Pipeliner > mock_v9/redis_pipeliner_mock.go

mockgenredisv9's People

Contributors

philandrewatfamilyzone avatar philandrew avatar

Watchers

 avatar

Forkers

albaizzz

mockgenredisv9's Issues

The problem of test run failure

redis.MGet only accepts two params. First is context, Second is a string slice.
So you can try change as this:
mockRedis.EXPECT().MGet(gomock.Any(), gomock.Any(), gomock.Any()).DoAndReturn(func(context context.Context, cacheKey string, deleteKey string)
->
mockRedis.EXPECT().MGet(gomock.Any(), gomock.Any()).DoAndReturn(func(context context.Context, keys string...)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.