vote up 1 vote down star
1

I have a web part that uses PortalSiteMapProvider to query the Sharepoint navigation hierarchy, but unit tests written for that code fail, because the code is being run outside the Sharepoint context and thus no site map providers are available.

I've identified two alternate ways of solving this dilemma:

  • Because Sharepoint is basically an elaborate ASP.Net application, it should be possible to run tests inside the Sharepoint context with the HostType and UrlToTest test attributes
  • Use a mock instead of PortalSiteMapProvider

Are either of these viable or is there a better third option?

flag
We have a massive custom Sharepoint solution and we use the HostType and UrlToTest for most of our unit test. There is no better way; MS has admitted SP does not lend well to unit testing. – Rex M Feb 6 at 15:59

4 Answers

vote up 2 vote down check

The Microsoft Patterns and Practices dudes recommend TypeMock to help unit test Sharepoint

http://msdn.microsoft.com/en-us/library/dd203468.aspx

http://www.typemock.com/sharepointpage.php

Not a free solution unfortunately.

link|flag
vote up 0 vote down

BTW Typemock have a reduced price product especially for SharePoint.

link|flag
vote up 0 vote down

You will not be able to mock the SPRequest class, which is an internal class. I am facing the same issues. One approach is to try to isolate your code from the SharePoint API, and this is not so nice.

link|flag
vote up -1 vote down

Second option is more appropriate. Abstract away PSMP and hide it behind IPortalSiteMapProvider and then mock it in your unit test. In order to bridge the interface and concrete implementation you can either write a thin delegating adapter or use duck typing.

link|flag
Urgh, Sharepoint and unit testing is always horrible. Because there are no interfaces for any sharepoint classes you'll have to abstract the PSMP through another custom class just to unit test. – Ray Booysen Feb 6 at 11:18

Your Answer

Get an OpenID
or

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