Unit Testing with Silverlight 2

31 March 2008

9/15/08 Update: The Microsoft unit test framework now has its own MSDN Code Gallery site, where you'll find the latest framework releases and other information. http://code.msdn.microsoft.com/silverlightut/ 1/6/09 Update: Updated templates are available that should be used for the final Silverlight 2 release. Please see the MSDN Code Gallery site and/or this post from October '08. Test-driven development is something that every developer can appreciate once they’ve tried it, and something that I’ve worked hard to enable for Silverlight with the release of the controls source.  Scott Guthrie previously posted about the Silverlight 2 Beta 1 release, with a First Look at Silverlight 2 post followed by the First Look at Using Expression Blend with Silverlight 2.  If we could take the same application from the Blend post & create a set of unit tests for the components in the app, it would pay dividends once we start adding new features or working with other developers on the project. If you’d like to hear more about any part of the framework, let me know in the comments and I’ll come back with that information.  Previous posts that may be helpful if you don’t have time to complete this tutorial today: a video walkthrough of the control unit tests, and a quick introduction to the unit testing bits with download locations and installation instructions.

Test support for Silverlight

At MIX we released source code to the controls, unit tests, and we including a unit test framework that runs in the web browser using Silverlight on the Mac and PC.  The Microsoft.Silverlight.Testing framework is simple, easy-to-use, and will give developers yet another way to increase their productivity and application quality. In today's post we’ll take our working chat interface from Scott’s last tutorial, improve its testability, and add some simple tests.  At the end we’ll have a set of cross-platform, cross-browser tests that can run everywhere: The framework will be familiar to anyone who's used the desktop unit testing tools inside Visual Studio Team Test (and also now available with Visual Studio 2008 Professional): the same types and attributes are available for unit testing now in Silverlight. Having unit tests is extremely useful because the more test scenarios you create, the more confidence you'll have when adding features and fixing bugs, especially if you're working with a team of developers.  Since the test projects are packaged like any other Silverlight application, there's no special installation process to run the tests.  On the Silverlight controls team we've built thousands of these tests! A PDF of this tutorial is also available for download here.

Getting started with unit test projects

At the end of ScottGu’s last post, we were in Visual Studio, having just hooked up the UI data binding and wiring up the SendButton's Click method.  There are now two choices we have for adding a ‘test project’ to the solution.  Option 1 will explain how the testing hooks up to run in the browser.  Option 2 (skip ahead) is what you’d probably actually want to do.

Option 1: Adding a new project and manually hooking up the test framework

Add a New Silverlight Application to use as a test project

We'll create a new test project by selecting the File->Add->Project menu item within Visual Studio 2008.  Inside the New Project dialog, drill down into the Silverlight project types and select "Silverlight Application": Note: Make sure not to accidentally select the "Test" project types, since that's for the desktop framework and not Silverlight.  Silverlight unit test projects are not integrated with Visual Studio, so the integrated test features will not work-Silverlight unit tests run in the web browser host. We'll name the project "Test", although if your solution has many discrete components, you may want to pick a better identifier.  When we click the "OK" button, Visual Studio will ask us to choose the type of application project.  To keep it simple, let's just use the option to automatically generate an HTML test page: After clicking "OK", we'll then have 2 projects within the ChatClient solution.  You can switch between the startup projects by right-clicking on either the ChatClient or Test project and choosing "Set StartUp Project".  Next up, adding the unit test assemblies.

Adding references to the unit test framework

The unit test framework is being provided as a download separate from the SDK, as part of the control source code package that you can download here. If we place the test framework assemblies in a directory within the solution, we can then add them as references to the test project by going to the Project->Add Reference menu item and then clicking on the "Browse" tab and finding that folder: Select all three of the files and click "OK".

Wiring up the test framework

We now need to make some quick changes to the default project to wire up the test framework:
  • Removing Page.xaml and the Page.xaml.cs code-behind file
  • Updating App.xaml's code-behind file to create a unit test page
First, highlight the Page.xaml file within the Test project.  Go to the Edit->Delete menu item and when prompted to confirm the operation, select "OK". Your Visual Studio solution should now look like this: Next, we need to replace the RootVisual with a call to create the test page.  The test page handles preparing the framework, starting up the unit test engine, and then running through test classes found and reporting results on the web page. To wire up the framework,
  • Add a reference to the namespace Microsoft.Silverlight.Testing
  • Replace the RootVisual with a call to UnitTestSystem.CreateTestPage.  The parameter to the method enables the framework's test engine to reflect on your test assembly.
Here's the updated App.xaml.cs: Now we’re ready to start adding tests.

Option 2: Adding a new test project using prebuilt templates

It’s much easier to use Visual Studio project templates to do all the work above.  Previously posted about here.

Download the templates

  • SilverlightTestProject.zip (project template, adds a test project Silverlight application to the solution) Copy this into your “%userprofile%\Documents\Visual Studio 2008\Templates\ProjectTemplates”
  • SilverlightTestClass.zip (item template, adds a test class to your Silverlight test project) Copy this into your “%userprofile%\Documents\Visual Studio 2008\Templates\ItemTemplates”

Add a test project to your solution

To create a new Silverlight test project, with your Silverlight application or class library open:
  • Right-click on the solution
  • Select the Add->New Project menu item
  • Click on the root "Visual C#" project type node
  • Under "My Templates", select "Silverlight Test Project", and give your test project a name
There's a default test.cs file that you can use as a starting point, or to add additional test classes to your test project in the future, you can:
  • Right-click on the test project
  • Select the Add->New Item menu option
  • Click on the root "Visual C#" category
  • Select "Silverlight Test Class" and provide a name for your new class

Adding the first test

All that's left for us to do now is start adding unit tests.  To verify that everything's hooked up and we can start testing, let's add a no-op test that will always pass. Even if you haven't used the Visual Studio unit test framework before, it's really easy to pick up since the attributes are self describing: Add a new class to the test project by going to the Project->Add Class menu item, provide the name "SampleTest.cs" and click "OK".  Here's a simple test file: Although we're building a C# test project today, here's what the same test would look like in Visual Basic:

Run the unit tests

To run the test project, make sure that it is set as the StartUp project by going to the Project->Set as StartUp Project menu item.  Then, simply press F5 to start debugging (and your web browser). Since this is a test without any Silverlight controls or interface, nothing is displayed on the plugin's surface.  Only the test log, created by the HTML DOM bridge feature in Silverlight 2, is displayed.  The log shows the test classes and methods that run, any failures, and a clear indication of the number of tests that ran:

API Unit Tests

Now that we know how to prepare a test project, add test classes, and run the tests, we can add some useful tests.  A well-designed application might follow a Model-View pattern that decouples the UI.  Not only does this make development easier, but using this common pattern will make our application easier to test. Thankfully our chat client that we built previously did make use of data binding to abstract away the underlying application state from the user interface.

Testing our application code

The first test we created didn't actually exercise any of our application's components and always passed.  Let's go ahead and delete the SampleTest.cs file by highlighting it, right-clicking and choosing the "Delete" menu option, and then confirming the deletion. To get started we'll need to add a reference to the app project so that the types are available to the test code.  Select the 'Test' project in Visual Studio, navigate to the Project->Add Reference menu item, and then click the Projects tab.  Select the ChatClient and click the "OK" button:

Testing our ChatSession class

For our first "real" test, let's create a new test class titled "ChatSessionTest.cs" within the test project.  ChatSession is an interesting type because it implements the INotifyPropertyChanged interface and contains an ObservableCollection.  Here's a snippet of these declarations from the code: Since the ChatSession doesn't need to know anything about the types that are subscribing to changes notices through the MessageHistory collection, it enforces the Model-View separation and means that we can add a unit test that verifies that the ObservableCollection is properly firing events. Go ahead and add a new unit test: create a new class inside the Test project named ChatSessionTest.  We'll then decorate the ChatSessionTest.cs file by importing the unit test metadata namespace, and also the namespace for the chat application: Performing Negative Testing You can use the ExpectedExceptionAttribute to indicate to the unit test runtime that an Exception should be thrown, and that the test is considered to pass if the type is equal to the type provided in metadata.  This is handy to add unit tests to verify your assumptions and how your components react to unexpected data. Let's go ahead and use this to add a test called "NullInstance" whose purpose is to try reading a property from a null instance of ChatSession, and verify that the NullReferenceException is thrown by the CLR: If we go ahead and run the tests now by pressing F5, we'll be greeted by the bright green "success" indicator in the log. Testing the designer data While we were working with Expression Blend before, there was a set of sample data that helped the design-time experience by showing a preview with some fake data.  Since the method which adds this fake data to a ChatSession instance is a private method, and we want designers to have a consistent experience while working in their design tools, it only makes sense that we should probably add some test coverage here.  In order to verify this data, we'll need to make the chat client a little easier to test first – this is one of those sticky test issues that is less than ideal, especially since Silverlight client code is ‘transparent,’ and so private reflection isn’t available. To do our testing, we have to use the InternalsVisibleTo attribute to allow our test assembly to view internal types and methods of the ChatClient assembly.  Within the ChatClient project, open the "Properties" folder and select the AssemblyInfo.cs file.  If the file doesn't exist, simply add a new code file.  At a minimum, make sure to add the InternalsVisibleTo declaration.   The parameter to the attribute is the name of your test assembly-only that assembly will be able to access the internal members of ChatClient. Then, open up the ChatSession.cs file and add the keyword "internal" to the method called PopulateDummyData.  This will change the method from being private to internal: Now, jump back to our ChatSessionTest and add a test method that creates a new chat session instance, populates the designer data by calling the internal PopulateWithDummyData method (which is now accessible to our test code), and then performs some validation: Inside this test, we've used some new functionality: the Description attribute acts like a comment that can help with analyzing any test failures in the future, and we're also using the CollectionAssert verification routines. Testing the CollectionChanged event For good measure, let's add one more test: let's make sure that the ObservableCollection is actually observing: We have a lot going on here, but it's easy to break down:
  • a new ChatSession instance is created
  • a local boolean is created to track whether our event listener has been called successfully
  • assertions have been added in for robustness. 
  • the SendMessage method on the ChatSession instance is called, which should immediately fire the CollectionChanged event and call the delegate that we wired up to the change event.
To make sure all the tests are passing before continuing, build the project and press F5 to run the tests: Surprisingly, we have a unit test failure! The log now has a summary of the failures (this is useful if running thousands of tests), and the failing method has some exception information. Some quick analysis will show us that inside ChatSession.cs's ConnectWithRemoteUser method, we're assuming that the PropertyChanged event handler is not null: The fix is to encase the event handler calls with a check for null: After marking the fix, a quick F5 run of the tests will confirm our fix: Now we have some good API tests that are well suited for testing Silverlight class library projects, including validating data structures and business objects.  Having a large suite of such tests will give us a lot more confidence when we add the complexity of the user interface into the equation.

Simple UI Tests

Beyond API tests, you can also build tests that simulate user activity by calling methods that glue together your interface with your application logic.  You can examine the visual tree, modify control properties, and perform a number of useful tests with your application code.  Although we aren't looking to simulate mouse events or key presses, we can still validate a large set of the functionality in our chat app by programming against the Page type defined in ChatClient.

Moving our resources into Page.xaml

Since we defined a number of application resources inside the App.xaml file for the chat client, these key resources that define the history view and send button won't be available to our test application (they're separate apps). To demonstrate testing our ChatClient’s Page, which makes up the bulk of our ‘app’, we'll need to move the resources from App.xaml to Page.xaml inside the chat client project.  This is actually extremely easy to do using Expression Blend (or manually, using the XAML text editor in Visual Studio and some cut-and-paste). We should open up Expression Blend 2.5 March 2008 Preview again and open our ChatClient solution.  Inside, we can double-click on Page.xaml to open that view again. The first thing you'll notice is that the test project is also now available inside Expression Blend: If we wanted to run the tests right now, we could right-click on the test project, set is as the Startup Project, and then if we went to the Project->Test Solution menu item (or pressed F5), all of our unit tests would run without us having to be in Visual Studio, a good time saver. To move the two application resources from the application level to the page level, we need to click on the Resources tab in the upper right corner of Blend.  Then, expand both the App.xaml and Page.xaml elements so that we can see all of the available resources: Now we just have to select each resource individually and drag them into the Page.xaml area. The resources should now look like this: Go ahead and exit Blend now, saving your changes to App.xaml and Page.xaml.

Creating a test class to test our UI

The last thing to do now is create a few tests to actually exercise our application as our end users will.  Since the Silverlight test project is actually just another Silverlight application, we don't have the ability to simulate user-initiated actions (no fancy UI automation here), such as mouse clicks and key presses.  What we can do, however, is test: that the code that wires up our button events works, that the visual tree is updated, and that the data source is reflecting the expected set of data. The first thing we need to do is create a new test class.  With Visual Studio open and the test project highlighted, select the Project->Add Class menu item, give the new class the name "ClientTest.cs", and then press "OK". Understanding the SilverlightTest base class If you're authoring Silverlight-specific tests and would like the ability to write much more advanced tests, you can inherit from the base class SilverlightTest, which is in the Microsoft.Silverlight.Testing namespace. The base class provides support for interacting with the root visual and HTML DOM bridge.  Additionally, the base class defines a number of helper methods that can be used in conjunction with the [Asynchronous] attribute to create tests that run beyond the scope of the test method, until the TestComplete method is called.  Such tests are beyond the scope of what I'd like to present in this tutorial, but you could use these methods to verify network requests, background worker events, and other interesting scenarios. In a future blog post I’ll jump into some of the advanced functionality, including the ‘Asynchronous’ test concept, so subscribe to my blog if you haven’t already! To prepare to use this base class with our ClientTest, we need to:
  • Add a using statement for Microsoft.Silverlight.Testing
  • Add a using statement for Microsoft.VisualStudio.TestTools.UnitTesting
  • Add a using statement for ChatClient
  • Inherit from the SilverlightTest base class and mark our class as a test
Add our first interface test Our test class should also be customized for testing our application page, so we need to add a private member variable to save our current instance of the ChatClient's Page type.  To make testing many scenarios easy, we'll create a TestInitialize method that will be called before each TestMethod.  Inside the initialization routine, we'll use some of the functionality that the SilverlightTest base class exposes to interact with the TestSurface.  This is a special type created specifically for this kind of testing: if you access the TestSurface in a test, the contents of the TestSurface (which is a Grid) will be cleared before the next test method runs.  This saves you from having to write code to cleanup temporary visuals used in tests.  We'll use TestSurface to add a new instance of our Page before each test. Let's have a look at our initial work on ClientTest: And so next we can add a test method to verify that the object has a width greater than zero: If you instead wanted to test a fixed width, and validate that the actual width is applied after the layout is updated, then you could use a test like this: For now let's just keep the DisplayDefaultSize test.  If we go ahead and run the tests right now, we'll see the chat application popup for a very brief second before being removed from the TestSurface. Add an interface test that simulates sending messages using the TextBox: The most interesting thing that we can test is that when a user enters text into the TextBox and then clicks the button, that the message is reflected in the data source and is displayed correctly.  To do this, we need to:
  • Set the MessageBox's Text value to represent the user's chat string
  • Simulate the Button's Click event by calling our underlying SendButton_Click method inside Page.xaml.cs
  • Send some messages
  • Verify the data source
Optionally, you could also spend time to jump into the visual tree and verify the various control values. This is pretty straightforward.  To call the SendButton_Click method we need to make it an internal method, so go back into Page.xaml.cs for the chat application and make that change: Next, back inside our ClientTest.cs file, let's add a helper method called SendMessage that works with the text box and calls the SendButton_Click method.  Then we can write a quick string of calls to SendMessage and then verify the result in the data source: That's it!  We now have an end-to-end test that sends messages within the app.  To perform some final testing, we could either press F5 to debug and run the test project, or navigate to the test project's page with another browser such as Firefox or Safari.  On my machine the test page for the test project is located in "C:\Silverlight2\ChatClient\Test\ClientBin\TestPage.html". The good and bad news is that if we run these tests, they happen extremely fast.  You can efficiently easily run thousands of tests using this simple in-browser test experience.  Here's what it would look like if we froze the screen right when the SendManyMessages test ran on my Mac Pro: There's a lot of useful functionality in the unit test framework, including the same metadata and assertions as the desktop's.  I'll be including more information about this framework on my blog.

Summary

By creating and running unit tests inside the web browser, you've now learned another way to build solid, usable, testable applications using Silverlight 2 Beta 1.  Having this unit test capability available to the community is important, and I hope that you'll see great use for this while developing your applications.  The Microsoft.Silverlight.Testing framework is simple, easy-to-use and will give developers yet another way to increase their productivity and application quality. Since simple unit tests are source-compatible with the desktop unit test framework in Visual Studio, it will be easy to move existing desktop developers onto Silverlight application work.  Kudos to the Visual Studio Team Test team who created a rock-solid unit test foundation, having the same capability here for Silverlight is key: I’ve been able to move many of my class libraries to Silverlight and keep the same exact unit test source that was written for the unit test framework in VS. If you haven't had experience with this great unit test framework before, you'll be able to take that metadata knowledge back to your desktop developers as well. Hope all of you that are test-driven development fans find this a good start to bringing that to your Silverlight work, Jeff Wilcox

p.s. Feedback

I’m definitely interested to know if you’re able to make use of this framework, so please use this post to discuss the framework at length! A few things to call out that are known issues or differences: data-driven tests aren’t available in Silverlight, there’s no direct Visual Studio intergration (the “Create Unit Tests” feature shouldn’t be used), negative testing with ExpectedExceptionAttribute needs a fix at the framework level, and without private reflection in the Silverlight product for apps, the ability to get to private types like you can in the full desktop unit test framework isn’t there today. I’ve already received some great feedback and as a result of that, am going to look into what we can do to polish the framework further.  We’ll also look into what it would take to release the source code of the framework itself, since that’d be much more helpful to folks building this into their existing test infrastructure – Reflector only gets you so far. PDF Available Download a PDF of this tutorial here

Jeff Wilcox is a Software Engineer at Microsoft in the Open Source Programs Office (OSPO), helping Microsoft engineers use, contribute to and release open source at scale.

comments powered by Disqus