Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 175029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:37:38+00:00 2026-05-11T13:37:38+00:00

I have a couple of ActionMethods that queries the Controller.User for its role like

  • 0

I have a couple of ActionMethods that queries the Controller.User for its role like this

bool isAdmin = User.IsInRole('admin'); 

acting conveniently on that condition.

I’m starting to make tests for these methods with code like this

[TestMethod] public void HomeController_Index_Should_Return_Non_Null_ViewPage() {     HomeController controller  = new HomePostController();     ActionResult index = controller.Index();      Assert.IsNotNull(index); } 

and that Test Fails because Controller.User is not set. Any idea?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T13:37:39+00:00Added an answer on May 11, 2026 at 1:37 pm

    You need to Mock the ControllerContext, HttpContextBase and finally IPrincipal to mock the user property on Controller. Using Moq (v2) something along the following lines should work.

        [TestMethod]     public void HomeControllerReturnsIndexViewWhenUserIsAdmin() {         var homeController = new HomeController();          var userMock = new Mock<IPrincipal>();         userMock.Expect(p => p.IsInRole('admin')).Returns(true);          var contextMock = new Mock<HttpContextBase>();         contextMock.ExpectGet(ctx => ctx.User)                    .Returns(userMock.Object);          var controllerContextMock = new Mock<ControllerContext>();         controllerContextMock.ExpectGet(con => con.HttpContext)                              .Returns(contextMock.Object);          homeController.ControllerContext = controllerContextMock.Object;         var result = homeController.Index();         userMock.Verify(p => p.IsInRole('admin'));         Assert.AreEqual(((ViewResult)result).ViewName, 'Index');     } 

    Testing the behaviour when the user isn’t an admin is as simple as changing the expectation set on the userMock object to return false.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 77k
  • Answers 77k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer I would inherit from Control and create your own as… May 11, 2026 at 3:22 pm
  • added an answer Pretty well all of them. MIME multipart is pretty durn… May 11, 2026 at 3:22 pm
  • added an answer From the Browser service. NetServerEnum pre-dates Active Directory, and has… May 11, 2026 at 3:22 pm

Related Questions

I have a couple of questions regarding VBScript and ASP Classic: What is the
I have a couple of files containing a value in each line. EDIT :
I have a couple of header files, which boil down to: tree.h: #include element.h
I have a couple of triggers on a table that I want to keep

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.