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 8352537
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:59:19+00:00 2026-06-09T08:59:19+00:00

Django has a very handy test client /dummy web browser that one can use

  • 0

Django has a very handy test client/dummy web browser that one can use in test cases to verify the correctness of HTTP responses (e.g., status codes, context/model data). It does not require you to have the web server running, as it deals directly with the framework to simulate the calls.

I’d really love an nUnit (or similar) equivalent that we can slip right into our test suites. We’re working in MVC3 and 4, and want to check things like successful 301 redirects, that model validation is correct, and that ViewModel data is correct in the views.

What’s the best solution for this?

  • 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. Editorial Team
    Editorial Team
    2026-06-09T08:59:21+00:00Added an answer on June 9, 2026 at 8:59 am

    ViewModel Data should be easy to check with the following:

        public T GetViewModelFromResult<T>(ActionResult result) where T : class
        {
            Assert.IsInstanceOf<ViewResult>(result);
            var model = ((ViewResult)result).Model;
            Assert.IsInstanceOf<T>(model);
            return model as T;
        }
    
        [Test]
        public void TheModelHasTheOrder()
        {
            var controller = new MyController();
            var result = controller.MyActionMethod();
            var model = GetViewModelFromResult<MyModel>();
    
            Assert.That(model, Is.SameAs(???));
        }
    

    As for the model validation, if you are using the out of the box .net property attributes like [Required] etc, you can be pretty sure they will work fine, and won’t need testing.

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

Sidebar

Related Questions

I have a web application written in Django that has one specific page I'd
I am trying to use HTSQL for one of my Django projects. For that
Django has the concept of filters that allow you to format values in views.
Django has various numeric fields available for use in models, e.g. DecimalField and PositiveIntegerField
Given that django-nonrel has got JOINs working, does this mean we have M2M fields
Now that django-sentry has become a standalone server (and is fantastic) I'm trying to
My friend says that Django only has 1 thread or something? And I have
I want to design a page in django that has a search bar in
I'm building a system using django, Sphinx and MySQL that's very quickly becoming quite
Web frameworks such as Rails and Django has built-in support for slugs which are

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.