How do I unit test a WCF service? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:09:36Z http://stackoverflow.com/feeds/question/37375 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/37375/how-do-i-unit-test-a-wcf-service 4 How do I unit test a WCF service? Esteban Araya 2008-09-01T02:13:52Z 2009-05-04T01:37:41Z <p>We have a whole bunch of DLLs that give us access to our database and other applications and services.</p> <p>We've wrapped these DLLs with a thin WCF service layer which our clients then consume.</p> <p>I'm a little unsure on how to write unit tests that only test the WCF service layer. Should I just write unit tests for the DLLs, and integration tests for the WCF services? I'd appreciate any wisdom... I know that if my unit tests actually go to the database they won't actually be true unit tests. I also understand that I don't really need to test the WCF service host in a unit test. </p> <p>So, I'm confused about exactly what to test and how.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/37375/how-do-i-unit-test-a-wcf-service/37385#37385 2 Answer by Toran Billups for How do I unit test a WCF service? Toran Billups 2008-09-01T02:26:40Z 2008-09-01T16:31:52Z <p>If you want to unit test your WCF service classes make sure you design them with loose coupling in mind so you can mock out each dependancy as you only want to test the logic inside the service class itself.</p> <p>For example, in the below service I break out my data access repository using "Poor Man's Dependency Injection".</p> <pre><code>Public Class ProductService Implements IProductService Private mRepository As IProductRepository Public Sub New() mRepository = New ProductRepository() End Sub Public Sub New(ByVal repository As IProductRepository) mRepository = repository End Sub Public Function GetProducts() As System.Collections.Generic.List(Of Product) Implements IProductService.GetProducts Return mRepository.GetProducts() End Function End Class </code></pre> <p>On the client you can mock the WCF service itself using the interface of the service contract.</p> <pre><code>&lt;TestMethod()&gt; _ Public Sub ShouldPopulateProductsListOnViewLoadWhenPostBackIsFalse() mMockery = New MockRepository() mView = DirectCast(mMockery.Stub(Of IProductView)(), IProductView) mProductService = DirectCast(mMockery.DynamicMock(Of IProductService)(), IProductService) mPresenter = New ProductPresenter(mView, mProductService) Dim ProductList As New List(Of Product)() ProductList.Add(New Product) Using mMockery.Record() SetupResult.For(mView.PageIsPostBack).Return(False).Repeat.Once() Expect.Call(mProductService.GetProducts()).Return(ProductList).Repeat.Once() End Using Using mMockery.Playback() mPresenter.OnViewLoad() End Using 'Verify that we hit the service dependency during the method when postback is false Assert.AreEqual(1, mView.Products.Count) mMockery.VerifyAll() End Sub </code></pre> http://stackoverflow.com/questions/37375/how-do-i-unit-test-a-wcf-service/37387#37387 0 Answer by eed3si9n for How do I unit test a WCF service? eed3si9n 2008-09-01T02:27:57Z 2008-09-01T02:27:57Z <p>The consumer of your service doesn't care what's underneath your service. To really test your service layer, I think your layer needs to go down to DLLs and the database and write at least <a href="http://en.wikipedia.org/wiki/Create,_read,_update_and_delete" rel="nofollow">CRUD</a> test. </p> http://stackoverflow.com/questions/37375/how-do-i-unit-test-a-wcf-service/38316#38316 2 Answer by Jan Soltis for How do I unit test a WCF service? Jan Soltis 2008-09-01T19:19:36Z 2008-09-01T19:19:36Z <p>It depends on what the thin WCF service does. If it's really thin and there's no interesting code there, don't bother unit testing it. Don't be afraid to not unit test something if there's no real code there. If the test cannot be at least one level simpler then the code under the test, don't bother. If the code is dumb, the test will also be dumb. You don't want to have more dumb code to maintain.</p> <p>If you can have tests that go all the way to the db then great! It's even better. It's not a "true unit test?" Not a problem at all. </p> http://stackoverflow.com/questions/37375/how-do-i-unit-test-a-wcf-service/714326#714326 1 Answer by unknown (yahoo) for How do I unit test a WCF service? unknown (yahoo) 2009-04-03T15:03:18Z 2009-05-04T01:37:41Z <p>You can use <a href="http://www.wcfstorm.com/wcf/home.aspx" rel="nofollow">WCFStorm</a>. It let you create and run functional test cases and performance test cases. You can even expose your WCF as a webservice (basicHttpBinding, wsHttpBinding etc.) and your test cases will still work. Check it out!</p> <p>Below is a screenshot of a functional test case. The actual response didnt match the expected response and the difference is shown.</p> <p><img src="http://geekswithblogs.net/images/geekswithblogs%5Fnet/Erik/9896/r%5FWcfStormFunctionalTest.jpg" alt="alt text" /></p>