简体   繁体   中英

Moq: Unable to cast to interface

earlier today I asked this question .

So since moq creates it's own class from an interface I wasn't able to cast it to a different class.

So it got me wondering what if I created a ICustomPrincipal and tried to cast to that.

This is how my mocks look:

var MockHttpContext = new Mock<HttpContextBase>();
var MockPrincipal = new Mock<ICustomPrincipal>();

MockHttpContext.SetupGet(h => h.User).Returns(MockPrincipal.Object);

In the method I am trying to test the follow code gives the error(again):

var user = (ICustomPrincipal)httpContext.User;

The error is the following:

Unable to cast object of type 'IPrincipalProxy4081807111564298854aabfc890edcc8' 
to type 'MyProject.Web.ICustomPrincipal'.

I guess I still need some practice with interfaces and moq but shouldn't I be able to cast the class that moq created back to ICustomPrincipal? I know httpContext.User returns an IPrincipal so maybe something gets lost there?

Well if anybody can help me I would appreciate that.

Pickels


As requested the full code of the method I am testing. It's still not finished but this is what I have so far:

public bool AuthorizeCore(HttpContextBase httpContext)
{
    if (httpContext == null)
    {
        throw new ArgumentNullException("httpContext");
    }

    var user = (ICustomPrincipal)httpContext.User;

    if (!user.Identity.IsAuthenticated)
    {
        return false;
    }

    return true;
}

Seems that if I use Thread.CurrentPrincipal instead of HttpContext.current.user I can cast it without a problem. Reading up on the differences between the two now.

Your code example show that you are mocking a http context and principal objects.

However, your code example in which you are trying to get the user it is hard to determine if you are using the Mock http context or one provided by the framework?

var user = (ICustomPrincipal)httpContext.User;

Is the above line used in a method or object using dependency injection?

Are you able to show me the method / object as a whole?

I'm guessing you have some confusion in namespaces / interface names. Are you sure, you're casting to the same ICustomPrincipal , for which you create your mock?

And why is it saying "IPrincipalProxy" in the error message? Are you mocking IPrincipal interface somewhere? Then what's the relation between IPrincipal and ICustomPrincipal ?

I think you need to be able to inject your mocks into your code...

For instance, in your class if you add the following:

public static HttpContextBase HttpContext;
public static ICustomPrincipal User;

and have the following in your code...

var user = (ICustomPrincipal)User;

and in your class under test (say it is named ClassUnderTest)

ClassUnderTest.HttpContextBase = MockHttpContext.Object;

and

ClassUnderTest.User = MockPrincipal.Object;

well... I think that that should fix things for you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM