Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my ASP.net MVC application i need to get the host of the application because I have to distinguish between multiple domains/instances.

In consideration of a good design and testability I do not want to get it like this:

public ViewResult Show(int id)
{
   string host = Request.Url.Host;
   ....
}

Is there a possibility to "inject" it through the constructor.

What would be the cleanest solution for this problem?

share|improve this question

2 Answers

up vote 4 down vote accepted

You could also use some constructors for your controller like so :

public MyController() : this(DefaultHostGetter) { }
public MyController(Func<string> hostGetter)
{
    this.hostGetter = hostGetter;
}

private string DefaultHostGetter() { return this.Request.Url.Host; }

the view action would be :

public ViewResult Show(int id)
{
   string host = this.hostGetter();
   ....
}

you would then be able to test your controller by supplying a different host getter (a mock).

share|improve this answer
Great challenge for testability! +1! – Andrei Rinea May 11 '09 at 22:42

Maybe you don't need "injection" in this case. I think for good testability the cleanest solution will be mocking of your Request. Example (using Moq library):

var request = new Mock<HttpRequestBase>();
request.SetupGet(x => x.Url).Returns(new Uri("http://localhost/any"));

var context = new Mock<HttpContextBase>();
context.SetupGet(x => x.Request).Returns(request.Object);

var controller = new YourController();
controller.ControllerContext = new ControllerContext(context.Object, new RouteData(), controller);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.