Mosh
Mosh

Reputation: 6044

Integration testing an ASP.NET MVC application

I need some advice about efficient way of writing integration tests for our current ASP.NET MVC application. Our architecture consists of:

What I think should be done is to:

My Questions:

Any advice would be greatly appreciated.

Cheers

Upvotes: 6

Views: 2667

Answers (3)

Scott Rickman
Scott Rickman

Reputation: 560

I've been using SpecsFor.MVC for integration testing. Essentially you write code in a test class and the framework runs a browser interpreting your C# into browser actions. It's beautifully simple to use and setup.

Upvotes: 0

ulu
ulu

Reputation: 6092

I'm using Ivonna for testing various levels of isolation. I'm able to test that a particular Url with some particular POST data hits the expected Action method with the expected arguments, and at the same time I'm able to stub/mock external services.

Upvotes: 1

Junior Mayhe
Junior Mayhe

Reputation: 16411

Here at office we do not test against real services.

  • We have test in service side
  • We are testing controllers as unit tests, we use mock in these unit tests
  • Yet we don't have a integration test :-(

We were advised to not use real services for testing, we use Rhino Mocks to simulate answers for methods being called inside controller actions.

So the problem is still about how to do integration tests in a good way.

Maybe this could help you:

http://www.codeproject.com/Articles/98373/Integration-testing-an-ASP-NET-MVC-application-wit.aspx

but I am still looking for a better understanding about its possibilities.

Upvotes: 1

Related Questions