vote up 1 vote down star
1

I am using Moq to mock a connection to a Microsoft Dynamics CRM system. I have set up an expectation when a RetrieveMultipleRequest is sent to my Execute method with a specific value in a parameter. The expectation looks like this:

mockConnection.Setup(
  m => m.Execute(It.Is<RetrieveMultipleRequest>(
     r => r.Query.EntityName == "custom_entity")))
  .Returns(configResponse);

In my code, I call the Execute method of the mocked connection. I can see from debugging the code that the EntityName parameter is set how I expect it to be. However, rather than returning configResponse, an ArgumentOutOfRangeException is thrown from within Moq.

The stack trace of the exception are:

System.Collections.ArrayList.get_Item(Int32 index)
lambda_method(ExecutionScope , RetrieveMultipleRequest )
b__1(TValue value)
Matches(Object value)
Moq.Matcher.Matches(Object value)
Moq.MethodCall.Matches(IInvocation call)
b__4(IProxyCall c)
System.Linq.Enumerable.LastOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
Moq.Interceptor.Intercept(IInvocation invocation)
Castle.DynamicProxy.AbstractInvocation.Proceed()
ICrmConnectionProxy17058decd02e4fb58f77d282ab950c88.Execute(Request request)

I have a total of ten expectations against the same method but none that have the same EntityName property value.

flag

71% accept rate

1 Answer

vote up 0 vote down

What's the moq version you are using? What's the CRM SDK version? What connection are you trying to mock?

For now I was only able to construct this code, which fails with ArgumentException, because the Execute method is not overridable in CrmService...

    [TestMethod]
    public void Test()
    {
        var mockService = new Mock<CrmService>();

        RetrieveMultipleRequest actualRequest = new RetrieveMultipleRequest();
        actualRequest.Query = new QueryExpression("custom_entity");

        RetrieveResponse expectedResponse = new RetrieveResponse();

        mockService.Setup(m => m.Execute(It.Is<RetrieveMultipleRequest>(
            r => r.Query.EntityName == "custom_entity"
            ))).Returns(expectedResponse);

        Response actualResponse = mockService.Object.Execute(actualRequest);

        Assert.AreEqual(expectedResponse, actualResponse);
    }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.