Unit test WPF Bindings - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T13:06:17Zhttp://stackoverflow.com/feeds/question/331215http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/331215/unit-test-wpf-bindings4Unit test WPF BindingsNotDan2008-12-01T15:44:53Z2009-05-24T02:35:54Z
<p>I am trying to unit test my WPF databindings using the test suit provided by Microsoft Team System. I would like to be able to test the bindings without showing the window because most of my tests will be for user controls and not actually on a window. Is this possible or is there a better way to do it? The code below works if I show the window, but if I don't, the bindings don't update. </p>
<pre><code> Window1_Accessor target = new Window1_Accessor();
UnitTestingWPF.Window1_Accessor.Person p = new UnitTestingWPF.Window1_Accessor.Person() { FirstName = "Shane" };
Window1 window = (target.Target as Window1);
window.DataContext = p;
//window.Show(); //Only Works when I actually show the window
//Is it possible to manually update the binding here, maybe? Is there a better way?
Assert.AreEqual("Shane", target.textBoxFirstName.Text); //Fails if I don't Show() the window because the bindings aren't updated
</code></pre>
http://stackoverflow.com/questions/331215/unit-test-wpf-bindings/331654#331654-1Answer by Gishu for Unit test WPF BindingsGishu2008-12-01T17:58:31Z2008-12-03T12:42:52Z<p><strong>Eyeball it.</strong><br />
This kind of declarative markup rarely breaks.. unless someone goes in manual and screws it up. Even then, you can fix it within minutes. IMHO the cost of writing such tests far outweigh the benefits.</p>
<p><strong>Update</strong>[Dec3,08]: Alrighty then.<br />
The test is just testing that the textbox has the value "FirstName" as the Path property of the binding. If I change/refactor FirstName to JustName in the actual data source object, the test would still pass since it is testing against an anonymous type. (Green test when code broken - TDD Antipattern: The Liar)
If your aim is to verify that FirstName has been specified in XAML,</p>
<pre><code>Assert.AreEqual("FirstName", txtBoxToProbe.GetBindingExpression(TextBox.TextProperty).ParentBinding.Path.Path);
</code></pre>
<p>If you really must catch broken bindings via unit tests (and don't want to show the UI), use the real data source... struggled for a while and came up with this.</p>
<pre><code>[Test]
public void TestTextBoxBinding()
{
MyWindow w = new MyWindow();
TextBox txtBoxToProbe = w.TextBox1;
Object obDataSource = w; // use 'real' data source
BindingExpression bindingExpr = BindingOperations.GetBindingExpression(txtBoxToProbe, TextBox.TextProperty);
Binding newBind = new Binding(bindingExpr.ParentBinding.Path.Path);
newBind.Source = obDataSource;
txtBoxToProbe.SetBinding(TextBox.TextProperty, newBind);
Assert.AreEqual("Go ahead. Change my value.", txtBoxToProbe.Text);
}
</code></pre>
<p>Epilogue:
There's some <a href="http://social.expression.microsoft.com/Forums/en-US/wpf/thread/9b5b76e1-9a9f-4c24-bfd7-ebb5659a097e/" rel="nofollow">real covert stuff</a> happening in the call to <code>Window.Show()</code>. It somehow magically sets up the DataItem property after which data binding starts working.</p>
<pre><code>// before show
bindingExpr.DataItem => null
bindingExpr.Status => BindingStatus.Unattached
// after show
bindingExpr.DataItem => {Actual Data Source}
bindingExpr.Status => BindingStatus.Active
</code></pre>
<p>Once the Binding is Active, I guess you can force textbox updates via code like this..</p>
<pre><code>txtBoxToProbe.GetBindingExpression(TextBox.TextProperty).UpdateTarget();
</code></pre>
<p>Once again, I voice my reluctance against this approach. Getting NUnit to run in STA was a pain..</p>
http://stackoverflow.com/questions/331215/unit-test-wpf-bindings/337466#3374662Answer by Bob King for Unit test WPF BindingsBob King2008-12-03T15:17:45Z2008-12-03T15:17:45Z<p>Shane, if what you're really worried about is a binding breaking silently, you should look at redirecting the binding traces to somewhere you can examine. I'd start here:</p>
<p><a href="http://blogs.msdn.com/mikehillberg/archive/2006/09/14/WpfTraceSources.aspx" rel="nofollow">http://blogs.msdn.com/mikehillberg/archive/2006/09/14/WpfTraceSources.aspx</a></p>
<p>Other than that, I agree with Gishu that bindings aren't good candidates for unit testing, mainly due to the automagic going on that Gishu mentioned in the "Epilogue". Instead focus on making sure the underlying class behaves correctly.</p>
<p>Note, too, that you can get even more robust traces using the PresentationTraceSources class:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.presentationtracesources.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.diagnostics.presentationtracesources.aspx</a></p>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/331215/unit-test-wpf-bindings/902944#9029440Answer by spurrymoses for Unit test WPF Bindingsspurrymoses2009-05-24T02:35:54Z2009-05-24T02:35:54Z<p>I believe that this activity belongs in an integration test not UnitTests - ie an automated or real user running tests that show dialogs and confirm that the UI is populated or not.</p>
<p>Writing UnitTests for this sort of UI concern is time consuming and I'm not convinced it's worth the effort - you get not much for a lot of work.</p>
<p>That's not to say I wouldn't test it. I would invest the time in creating automated integration tests (eg using <strong><a href="http://www.codeplex.com/white" rel="nofollow">White</a></strong>)</p>