The mvccontrib-testhelper tag has no wiki summary.
0
votes
1answer
62 views
unit test for route should map to controller fails where a similar one does not
Related to a previous question that can be found here:
tests failing when "Run All Test in Solution" is used
The Test Method:
[TestMethod]
public void AMAC_Route_Maps_to_AMACController()
...
1
vote
1answer
66 views
tests failing when “Run All Test in Solution” is used
I am trying to get unit tests to run successfully for my MVC 4 Web Application project.
When I run the tests classes individually all of the tests pass, when I come to run all test in solution only ...
0
votes
1answer
155 views
unit/integration testing of controllers and views using MvcContrib throws error when run
Am fairly new to the world of testing MVC 4 Web Applications and have been attempting to unit test views and controllers to see whether for a given controller that an action renders a particular view, ...
1
vote
2answers
120 views
How to test that an MVC action is only accessible via HTTP POST?
I am using MvcContrib-TestHelper to test the routing on my app. I have an action which is restricted to HTTP POST only:
public TestController
{
[HttpPost]
public ActionResult Example()
{
...
1
vote
1answer
354 views
MVCContrib TestHelper and User.Identity.Name, Server.MapPath and Form Collection
I am new to MVCContrib Testhelper and mocking with Rhino.
I am needing assistance with unit testing a controller which relies on User.Identity.Name, Server.MapPath and Form Collection.
I started off ...
0
votes
1answer
54 views
Test routing contstraints via TestHelper
I have the next routing.
routes.MapRoute("Companies", "Companies/{companyId}",
new { controller = "Company", action = "Details" },
new { companyId = @"\d+" });
Here is test which tests it.
...
1
vote
1answer
247 views
How do I test the default view when using T4MVC with MvcContrib.TestHelper AssertViewRendered
I am using T4MVC in my ASP.NET MVC 3 project. I have the following basic test:
[TestMethod]
public void IndexReturnsIndexView()
{
var controller = new HomeController();
var result = ...
1
vote
0answers
156 views
Is this a bug in the MvcContrib TestHelper OutBoundUrl class?
I am trying to test the outbound URL of an action method in an MVC area using the MvcContrib TestHelper's static OutBoundUrl class. Here is what I have:
OutBoundUrl.Of<ErrorsController>(action ...
3
votes
2answers
212 views
Using MvcContrib TestHelper to assert that an inbound route should not be mapped
Looked for a method on the MvcContrib.TestHelper.RouteTestingExtensions class named ShouldNotMap. There is ShouldBeIgnored, but I don't want to test an IgnoreRoute invocation. I want to test that a ...
6
votes
1answer
1k views
Looking for direction on unit testing a controller extension that renders a partial view
As the title says, I'm looking for direction on how to properly test a controller extension. The extension renders a partial view which in turn I'm using within a JSONResult:
public static string ...
0
votes
1answer
138 views
Got NullReferenceException when Unit testing Controller
I am working on Unit testing the MVC3 site using NUnit, MvcContrib.TestHelper package but I am facing the exception "Object reference not set to an instance of an object" when my test method accesses ...
1
vote
2answers
180 views
T4MVC and testing with MvcContrib.TestHelpers issues with static linked content
I'm trying to write some tests around some code previously written before I start mucking with it. I'm running into issues where the controller method references some of the static variables that ...
1
vote
2answers
314 views
Can I use Moq with MvcContrib.TestHelper?
I'm working on my first ASP .NET MVC project and prior to this moment I've only used Rhino.Mocks for desktop applications.
It's been a while so I decided to find out what's used in the field now.
...
5
votes
2answers
772 views
Why does mvccontrib's AssertViewRendered().ForView(“Edit”) fail due to view name being full cshtml path?
I have the following unit test:
[TestMethod]
public void Add_Returns_Edit_View()
{
// Act
ActionResult result = _controller.Add();
// Verify
...
1
vote
0answers
80 views
How to verify the parameter of an action method with MVCContrib Route TestHelper
I have an action method which has pagination object as parameter
public override ActionResult Index(Paging paging)
{
.......
return View(...);
}
So how could I verify the url ...
0
votes
1answer
619 views
Testing an Edit view with MVCContrib Test Helper
I am using ASP.NET MVC 3, MVCContrib, NUnit and Rhino Mocks. I have posted this but could not get an answer. People are focusing more on my coding that helping me get a decent answer to get this ...
3
votes
1answer
883 views
Mvcontrib.MVC3.Testhelper UpdateModel NullReferenceExceuption during Unit Test
I am trying to unit test an edit action on my controller in ASP.NET MVC 3.
I have installed Mvcontrib.MVC3.TestHelper via nuget to mock out my controller Context but I am still getting a ...
0
votes
1answer
217 views
Simply Restful Routing
Why would you want to use something like Simply Restful Routing from MVCContrib? When creating a new item, why would you want an action method called New and an action method to handle the post ...
0
votes
1answer
449 views
Testing a get action with view model
I have the following controller action:
public ActionResult Edit(int id)
{
var news = newsRepository.GetNewsByID(id);
Mapper.CreateMap<News, NewsEditModel>();
var newsEditModel =
...
5
votes
1answer
736 views
anyway to install mvccontrib.testhelper with nuget
I have installed mvccontrib using nuget with the usual install-package mvccontrib, but i notice there is no testhelper there. Is there some other way or flag that i have to use to install it.
Trying ...
1
vote
1answer
665 views
MVCContrib TestHelper problem with session.clear, session.abandon and Rhino Mock
Hi I'm trying to unit test my logout action on my controller but I have hard times to test or stub my Session in the HttpContext. I'm using MVC Contrib TestHelper to make it easier but now I need a ...
3
votes
2answers
614 views
Unit Test Controller with PerWebRequest LifeStyle dependency
I am trying to write a unit test for a controller that has a dependency on a type whose lifestyle is "PerWebRequest".
Castle throws the following exception:
System.InvalidOperationException: ...
1
vote
2answers
1k views
Attempted to read or write protected memory
I have a sample ASP.NET MVC 3 web application that is following Jonathan McCracken's Test-Drive Asp.NET MVC (great book , by the way) and I have stumbled upon a problem. Note that I'm using ...
5
votes
3answers
1k views
MvcContrib TestHelper giving an odd error when using AssertViewRendered
I am trying to use the MvcContrib Test Helper to test a controller method in MVC3.
The controller:
public class HomeController : Controller
{
public ActionResult Index()
{
return ...
0
votes
1answer
394 views
Set Session To Null Using MvcContrib TestHelper
I have an action in my controller that verify if my Session has expire ( == null) and, if it's the case, redirect to my login. I would like to add a unit test for this but I can't set the Session to ...
0
votes
1answer
196 views
ASP.NET MVC 2: What to test in views and controllers
I'm using MVC 2 with MVC contrib and Rhino mocks.
I am in need of help. It has been a painful weekend. I have been trying to look for good articles on how to do testing on controllers using MVC ...
2
votes
1answer
331 views
Issue with MvcContrib TestHelper Fluent Route Testing and Specific HttpVerbs
I'm attempting to use the MvcContrib TestHelper fluent route testing API, but I'm seeing odd behavior. The .WithMethod(HttpVerb) extension method does not seem to be executing as expected. Here's my ...
0
votes
1answer
227 views
Issue with mvcContrib fluent route testing in asp.net mvc
I have an issue with testing routes using the MVCContrib Fluent route testing. The test fails yet the application recognises the routes.
Let me explain....
I have the following routes in my register ...
1
vote
2answers
256 views
Missing Documentation: MVCContrib UI-Testing
Is there any documentation or example how to use MvcContrib.TestHelper.Ui and WatinDriver?
2
votes
1answer
435 views
How do I test rendered views when using T4MVC with TestHelper?
How do I test which view was rendered from a controller action if what I get is a T4MVC_ActionResult? Under normal circumstances I should be able to directly use TestHelper's methods, like in the ...
2
votes
0answers
232 views
Using MVCContrib.TestHelpers with MsTest - is there any way to get nicer fail messages?
I'm just starting to use MVCContrib, and I'm really liking the syntactic sugar it adds to various test scenarious. For example, I just wrote this assertion:
...
0
votes
1answer
531 views
MvcContrib TestHelpers don't seem to provide a full HTTPContext.Server object
So the MvcContrib TestHelpers create mock versions of the following
HttpContext
HttpRequest
HttpResponse
HttpSession
Form
TempData
QueryString
ApplicationPath
PathInfo
within a fake controller ...
1
vote
2answers
873 views
Trying to stub Server.MapPath with MvcContrib Test helpers and Rhino Mocks 3.5
I'm using MvcContrib's test helpers and Rhino Mocks 3.5 to test an ASP.NET MVC action method. I build my fake controller like so:
var _builder = new TestControllerBuilder();
...
8
votes
2answers
952 views
After using Automapper to map a ViewModel how and what should I test?
I am attempting to test the Index action of a controller. The action uses AutoMapper to map a domain Customer object to a view model TestCustomerForm. While this works I am concerned about the best ...
1
vote
1answer
532 views
Error using MVCContrib TestHelper
While trying to implement the second answer to a previous question, I am receiving an error.
I have implemented the methods just as the post shows, and the first three work properly. The fourth one ...
2
votes
2answers
511 views
Newbie question on MvcContrib TestHelpers
I'm just starting to use the TestHelpers in MvcContrib. I want to try and test an action method on my controller that itself tests if IsAjaxRequest() is true.
I've used the same code that is shown ...
5
votes
2answers
775 views
How can I test route/action resolution of URL with query string?
I'm trying to use code such as the following in my unit tests,
/* Test setup code */
_routes = RouteTable.Routes;
MvcApplication.RegisterRoutes(_routes); //set up the routes as they would be in ...
0
votes
2answers
1k views
Unit Testing UrlHelper Extension Methods
I'm trying to create unit tests to make sure my extension methods for UrlHelper work? Does anyone know how to do this? I'm using MVC 1.0 and MvcContrib. I can test the routes but can't test code ...
9
votes
1answer
1k views
Need help with error using MvcContrib.TestHelper's ShouldMapTo() generic extension method
I'm trying to unit test my routes using the MvcContrib.TestHelper ShouldMapTo<TController>() extension method, but my tests fail with the following error message:
failed: Method ...
0
votes
1answer
711 views
how to test asp.net mvc post actions using MvcContrib.TestHelper
I am trying to test my routing configuration using the excellent MvcContrib.TestHelper and I've run into a problem.
Please assume that my Routing Configuration is set up correctly and initialised ...
1
vote
1answer
348 views
Making mvccontrib testhelper work with actions that get route data automapped to objects
This is ASP.NET MVC v1 (not using the v2 yet)
I have a route entry like this:
routes.MapRoute(
"Srp",
"soeg-{searchQuery}/{listingType}",
new { ...