summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/XReference.xaml.cs
blob: e3ad9e753b892def690d99755585895055bfa07e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
using System;
using System.Collections.Generic;

using Xamarin.Forms;

using NUnit.Framework;

namespace Xamarin.Forms.Xaml.UnitTests
{	
	public partial class XReference : ContentPage
	{	
		public XReference ()
		{
			InitializeComponent ();
		}

		public XReference (bool useCompiledXaml)
		{
			//this stub will be replaced at compile time
		}

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void SupportsXReference (bool useCompiledXaml)
			{
				var layout = new XReference (useCompiledXaml);
				Assert.AreSame (layout.image, layout.imageView.Content);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void XReferenceAsCommandParameterToSelf (bool useCompiledXaml)
			{
				var layout = new XReference (useCompiledXaml);

				var button = layout.aButton;
				button.BindingContext = new {
					ButtonClickCommand = new Command (o => {
						if (o == button)
							Assert.Pass ();
					})
				};
				((IButtonController) button).SendClicked ();
				Assert.Fail ();
			}

			[TestCase (false)]
			[TestCase (true)]
			public void XReferenceAsBindingSource (bool useCompiledXaml)
			{
				var layout = new XReference (useCompiledXaml);

				Assert.AreEqual ("foo", layout.entry.Text);
				Assert.AreEqual ("bar", layout.entry.Placeholder);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void CrossXReference (bool useCompiledXaml)
			{
				var layout = new XReference (useCompiledXaml);

				Assert.AreSame (layout.label0, layout.label1.BindingContext);
				Assert.AreSame (layout.label1, layout.label0.BindingContext);
			}
		}
	}
}