Moq ReturnsAsync() with parameters

前端 未结 2 617
再見小時候
再見小時候 2020-12-15 15:32

I\'m trying to mock a repository\'s method like that

public async Task GetByTypeValue(WhitelistType type, string value)
<
相关标签:
2条回答
  • 2020-12-15 16:33

    I know this is an old question, but the one answer given here did not work for me and I was able to figure it out. It seems that you have to include the mocked function's argument types as type parameters to ReturnsAsync() first, followed by the mocked class type, and then the return type.

    For example: .ReturnsAsync<T1, T2, TMock, TResult>((arg1, arg2) => { ... } )

    Where T1, T2 are the types of your mocked function's arguments, and (arg1, arg2) are the actual arguments given when the mock was called.

    So given the code from the OP, it would look like this:

    whitelistRepositoryMock.Setup(w => w.GetByTypeValue(It.IsAny<WhitelistType>(), It.IsAny<string>()))
                           .ReturnsAsync<WhitelistType, string, IWhiteListRepository, WhitelistItem>((type, value) =>
                           {
                                return (from  item in whitelist
                                        where item.Type == type && item.Value == value
                                        select item).FirstOrDefault();
                           });
    

    Edit: I realized later in the previous answer that the types are given in the lambda which does work. If you leave out the types, like I did, it will not. You would have to use the form I used.

    0 讨论(0)
  • 2020-12-15 16:35

    From Moq v4.5.28 onwards

    You can use ReturnsAsync with lambdas, exactly as in the code example of the question. No need to use Task.FromResult() any more. You just need to specify the types of the lambda delegate arguments. Otherwise you will get the same error message:

    Cannot convert lambda expression to type 'Model.WhitelistItem' because it is not a delegate type

    To give an example, the following works with the latest version of Moq:

    whitelistRepositoryMock.Setup(w => w.GetByTypeValue(It.IsAny<WhitelistType>(), It.IsAny<string>()))
                                    .ReturnsAsync((WhitelistType type, string value) =>
                                    {
                                        return (from  item in whitelist
                                                where item.Type == type && item.Value == value
                                                select item).FirstOrDefault();
                                    });
    

    Before Moq v4.5.28 (answer provided by Alexei Levenkov)

    You have to use Returns with Task.FromResult:

    .Returns((WhitelistType type, string value) =>
     {
         return Task.FromResult(
           (from  item in whitelist
               where item.Type == type && item.Value == value
               select item).FirstOrDefault()
           );
    });
    
    0 讨论(0)
提交回复
热议问题