show/hide this revision's text 2 updated isAjaxRequest method to latest syntax

I generally try not to worry about it. The Asp.Net MVC is enough of a separation of concerns to keep leakage to a minimum. You're right though; there is a bit of a hurdle when testing.

Here's a test helper I use, and it's worked well:

protected static Dictionary<string, string> GetJsonProps(JsonResult result)
{
	var properties = new Dictionary<string, string>();
	if (result != null && result.Data != null)
	{
		object o = result.Data;
		foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(o))
			properties.Add(prop.Name, prop.GetValue(o) as string);
	}
	return properties;
}

You can use the Request.IsMvcAjaxRequest(Request.IsAjaxRequest() extension method to return different ActionResult types:

if (this.Request != null && this.Request.IsMvcAjaxRequest()this.Request.IsAjaxRequest())
	return Json(new { Message = "Success" });
else
	return RedirectToAction("Some Action");

Note: you'll need that Request != null to not break your tests.

show/hide this revision's text 1

I generally try not to worry about it. The Asp.Net MVC is enough of a separation of concerns to keep leakage to a minimum. You're right though; there is a bit of a hurdle when testing.

Here's a test helper I use, and it's worked well:

protected static Dictionary<string, string> GetJsonProps(JsonResult result)
{
	var properties = new Dictionary<string, string>();
	if (result != null && result.Data != null)
	{
		object o = result.Data;
		foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(o))
			properties.Add(prop.Name, prop.GetValue(o) as string);
	}
	return properties;
}

You can use the Request.IsMvcAjaxRequest() extension method to return different ActionResult types:

if (this.Request != null && this.Request.IsMvcAjaxRequest())
	return Json(new { Message = "Success" });
else
	return RedirectToAction("Some Action");

Note: you'll need that Request != null to not break your tests.