Tagged Questions
0
votes
0answers
8 views
RESX Resource IO Issue from unit test
The Action method that i have is something like this -
public ActionResult Index(Guid id)
{
.....
string resourseValue = Resources.UIResource.ViewName;
.....
}
When i am trying to unit ...
0
votes
3answers
24 views
Creating an action based on a mocked controller
I have the following test method that is being used to test a controller.
[TestMethod()]
public void ResetTest()
{
var target = new ...
2
votes
2answers
66 views
How to Mock EF Entity with “Include” method
My repository layer method returns "abc" object in the following way
return this.context.abc.Include(x => x.xyz);
the return type is abc
i want to mock this object so that it includes xyz as ...
2
votes
1answer
171 views
Mocking HttpContextBase with Microsoft Fakes - UserGet property is missing
I am currently trying to write some unit tests utilizing the Microsoft Fakes Framework. For a specific unit test I have to mock the Controller.User property. So I added a fake assembly for System.Web ...
1
vote
2answers
154 views
Unit Testing a mock WCF client
I'm having serious issues in how to deploy a WCF client in a MVC site which is easily testable. I'm struggling to set up a mock of the service without actually accessing a endpoint.
Example ...
1
vote
1answer
108 views
Mock MembershipProvider with custom methods
I have an ASP.NET MVC app that I'm working on. I'm using a custom MembershipProvider (MyCustomMembershipProvider) to access membership information because we already have a database with our own ...
2
votes
2answers
521 views
How to use microsoft fakes to Mock HttpSessionStateBase
Moq Code:
mockControllerContext.SetupGet(x => x.HttpContext.Session["User"]).Returns(new User
{
Name = "Moto",
IsAdmin = true ...
1
vote
1answer
179 views
Mock a local variable in an MVC action method?
Using Moq or Rhino, I'd like to mock a local variable in one of my MVC action methods.
In my program I have a 'ProfileController' for instance, with a method that looks like:
public ...
0
votes
0answers
65 views
Partially mocking an ASP.Net MVC action method in Rhino Mock?
I'm new to Rhino, and wondered how to mock a local variable/object inside a method of a class I'd also be mocking. In this case I'd be doing it with an ASP.Net MVC controller & action method.
...
1
vote
1answer
184 views
AppendHeader doesn't add to HttpResponseBase.Headers collection
I'm stuck writing a unit test for a custom ActionFilter in ASP.NET MVC.
Everything works fine but I'm having a strange behavior in my unit test. AppendHeader seems not to modify the ...
0
votes
1answer
103 views
Mocking properties from ProfileBase
So this is getting miserable. I am trying to test some of Microsoft's garbage membership libraries and they are just awful. I managed to put a interface in front of the Membership class and then ran ...
0
votes
2answers
601 views
Mock HttpPostedFileWrapper
I am trying to Mock the MVC object HttpPostedFileWrapper so I can test the "ContentType" and "InputStream" properties in particular. I set up my mock as so:
var mockPostedFile = new ...
5
votes
2answers
4k views
ASP .Net MVC 3: Unit testing controller actions
I am quite new to Unit testing and Mock concepts. I am trying to figure out how to write a good test case for the basic out-of-the box user registration code below:
[HttpPost]
public ActionResult ...
5
votes
2answers
472 views
Mocking NHibernate & Linq
I'm using NHibernate and exposed the Session in my front end. I have a controller action which retrieves tasks as follows:
public ActionResult Overview(DateTime date)
{
var allTasks = ...
0
votes
2answers
162 views
Mocking concrete POCO business logic for Controller Tests
Lets say i have the following controller:
//
// GET: /Courses/Edit/5
public ActionResult Edit(int id)
{
Course course = courseService.GetCourseByID(id);
if (course != ...
5
votes
1answer
1k views
Best way of testing Repositories which use DbContext
In my projects, I follow repository pattern in order to easily unit test my ASP.NET MVC app. This allows me to easily mock the objects.
However, I am not testing the Repository logic by this way at ...
0
votes
2answers
184 views
Testing controllers in ASP MVC
What is the best method to test controllers in ASP MVC? (mocking frameworks, IoC, Selenium/Watir/Watin ...)
2
votes
1answer
895 views
MVC3 HttpContext unit testing / mocking options
So this really applies to several different classes like HttpContext, ConfigurationManager, etc. There are several different ways to handle this, and I have always used wrapper classes to handle this ...
0
votes
2answers
230 views
MVC Unit Test RadioButton Helper extension
in one of my other question I got this really great answer for a helpermethod:
using System;
using System.Linq.Expressions;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Html;
public ...
1
vote
1answer
669 views
How to use Moq framework correctly - basic question
I've never used any Mock frameworks and actually new to ASP.NET MVC, testing and all this related stuff.
I'm trying to figure out how to use Moq framework for testing, but can't make it work. that's ...
2
votes
1answer
177 views
Moq mocking a class
I'm new to Moq and mocking.
I have a class Car and I want to Mock this class:
Car car = Mock<Car>();
I'm getting the error "Cannot implicitly convert type 'Moc.Mock' to 'Car'.
It seems I ...
2
votes
2answers
605 views
Unit Testing Custom Model Binder - Fake HttpContext Issue
I have the following unit test defined to test my model binder:
[TestMethod]
public void DateTime_Works() {
// Arrange
var controllerContext = ...
2
votes
1answer
231 views
Can you mock/stub an internal property?
//class = Person
public string Name { get; internal set; }
I have an object with several different fields that are declared as shown above. I would like to use Moq so I can unit test the ...
1
vote
3answers
349 views
Unit testing ensure one method calls another method
[HttpPost]
public ActionResult Create(Car car)
{
_repository.CreateCar(car);
_repository.UpdateRegistrationDetails(car);
}
What I'm wanting to do is write unit test to ensure that Create calls ...
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.
...
2
votes
1answer
1k views
How to mock application path when unit testing Web App
I am testing code in a MVC HTML helper that throws an error when trying to get the application path:
//appropriate code that uses System.IO.Path to get directory that results in:
string path = ...
0
votes
1answer
406 views
MVC mocked HttpContext, model binding error
I am trying to follow the typical pattern of overriding the ControllerContext in order to mock HttpContext. In my case I specifically want to test HTTP POSTS so i need to mock Request.Form.
I have ...
1
vote
1answer
575 views
How to mock Controller RouteData with MOQ?
My view has a file attachment as well as Captcha validation. The problem is I am using MVCMockHelpers for my file validation but it reinitializes the route data (new RouteData()) while setting the ...
1
vote
1answer
2k views
Mocking a session in MVC 3
I am attempting to mock a controller's Session variable using Moq. What I keep running into is that the Session is visible from the test, but null inside the actual controller.
Test code:
...
0
votes
1answer
157 views
Why is this test unit pass?
I spend over 2 hours on this... i can't figure out why this test is PASSING. I mean.. it shouldnt return the view "Completed" but in the test it does! It say Expected "string.Empty" but returned ...
0
votes
2answers
178 views
Why is this test unit pass?
I spend over 2 hours on this... i can't figure out why this test is PASSING. I mean.. it shouldnt return the view "Completed" but in the test it does! It say Expected "string.Empty" but returned ...
1
vote
1answer
634 views
Null exception in filling a querystring by mocking framework
There is a simple controller that a querystring is read in constructor of it.
public class ProductController : Controller
{
parivate string productName;
public ProductController()
{
...
0
votes
2answers
462 views
How do I Unit test a sql view using SQLite
I am using linq to nhibernate on my project, and I'm writing unit tests using Mock and SQLLite.
The domain object is mapped to the sql view using fluent nhibernate.
The problem is that this domain ...
4
votes
2answers
1k views
How to mock Membership class in ASP.NET MVC to enable testing
I'm building an ASP.NET MVC 3 site that allows users to register. To that end I'm using the built in (static) Membership class; some say it is bloated but it works well and easily enough so there your ...
6
votes
3answers
253 views
what is a good mocking framework to start mocking with in asp.net MVC? (novice and probably not a hardcore mocker)
i want to use mocking in my unit tests.
Till now i more programmed 'tests' and not 'unittests' because i tested whole program flows, but reading discussions i can see the beauty of a mock object, ...
1
vote
2answers
175 views
Unit testing a menu in ASP.NET MVC 2
I have done some reading on unit testing and want to start with my first test. I am using ASP.NET MVC 2.
We determine the type of user by getting the staff number and checking it against the Roles ...
3
votes
4answers
717 views
ASP.NET MVC Unit Tests - Fake repository has become unwieldy
Things started off simple with my fake repositories that contained hard-coded lists of entities.
As I have progressed, my shared fake repositories have become bloated. I am continually adding new ...
2
votes
3answers
745 views
How to mock a model in ASP.NET MVC?
I've made a custom model, and I want to mock it. I'm fairly new to MVC, and very new to unit testing. Most approaches I've seen create an interface for the class and then make a mock that implements ...
1
vote
1answer
370 views
Testing outbound url generation in ASP.NET MVC with Rhino Mocks
I'm struggling to find a complete example of how to create the the request context necessary to test outbound urls with Rhino Mocks.
I've got an example of using Moq that I have attempted to convert ...
2
votes
2answers
888 views
Microsoft.Web.Mvc.LinkBuilder.BuildUrlFromExpression failing when testing Asp.net MVC app
So I'm trying to unit-test a controller method. I'm using MSTest in VS 2010, and Moq 3.1
Test method:
[TestMethod]
public void TestAccountSignup()
{
var request = new ...
1
vote
1answer
639 views
Problem with TempData and Faked HttpContext using ASP.NET MVC
I am working with a faked HttpContext (code provided in the end) and probably I am missing something because I can't access TempData collection (forth line of SetFakeControllerContext method). Every ...
0
votes
1answer
322 views
Testing custom ModelBinder against HTTP context in ASP.NET MVC (1.0)
I'm trying to unit test a custom model binder - specifically, I want to see how it responds to various (possibly conflicting) values being submitted in the Request.Form and Request.QueryString ...
0
votes
3answers
165 views
Generating fake istances at runtime
I'm looking for an utility class to generate fake entity instances at runtime.
I'm implementing a ASP.NET MVC3 website using EF4 with a code-first approach, so I'd like to run the site before creating ...
1
vote
1answer
536 views
Returning specific UserHostAddress using TestControllerBuilder
I am using MvcContrib and the TestControllerBuilder to write tests for my controller.
I am writing the tests for my Error Handling Controller that looks like this:
public JsonResult HttpError()
...
43
votes
2answers
8k views
Unit testing with EF4 “Code First” and Repository
I am attempting to get a handle on Unit testing a very simple ASP.NET MVC test app I've built using the Code First approach in the latest EF4 CTP. I'm not very experience with Unit testing / mocking ...
3
votes
2answers
1k views
MissingMethodException thrown when trying to mock HtmlHelper with Moq
When attempting to follow the article on mocking the htmlhelper with Moq I ran in to the following problem. The exception is thrown on creation of the htmlhelper. I am only guessing that castle ...
1
vote
1answer
508 views
Mock ParentActionViewContext MVC.Net
I can't find a solution to mock ControllerContext.ParentActionViewContext.
here is the code of my controller
[ChildActionOnly]
public ViewResult Menu()
{
string controller = ...
0
votes
1answer
223 views
Can someone help me Mock this ASP.NET MVC Controller with Moq, please?
I'm trying to mock an ASP.NET MVC2 Controller using Moq but I get an error because i'm trying to mock an non-overridable property. How should I be doing this, please?
NOTE: the controller I'm trying ...
4
votes
4answers
548 views
asp.net mvc How to test controllers correctly
I'm having difficulty testing controllers. Original my controller for testing looked something like this:
SomethingController CreateSomethingController()
{
var somethingData = ...
8
votes
3answers
2k views
Why would I select Moles as my mocking framework?
I've been looking at several Mocking frameworks for ASP.NET and came across Microsoft Moles. This seems to be a part of Microsoft Research team and was wondering If anyone here has selected Moles over ...

