summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Compiled/SetValue.xaml.cs
blob: f835d59f7e0dbee617e15ac1c0d90d3eb98510bf (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
using System;
using System.Linq;
using System.Collections.Generic;

using Xamarin.Forms;

using NUnit.Framework;

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

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

		bool fired;
		void onButtonClicked (object sender, EventArgs args)
		{
			fired = true;
		}

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void SetValueToBP (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual ("Foo", page.label0.Text);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetBindingToBP (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (Label.TextProperty.DefaultValue, page.label1.Text);

				page.label1.BindingContext = new {labeltext="Foo"};
				Assert.AreEqual ("Foo", page.label1.Text);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetBindingWithImplicitPath (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (Label.TextProperty.DefaultValue, page.label11.Text);

				page.label11.BindingContext = new {labeltext="Foo"};
				Assert.AreEqual ("Foo", page.label11.Text);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetEvent (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.False (page.fired);
				(page.button0 as IButtonController).SendClicked ();
				Assert.True (page.fired);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetBoolValue (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.True (page.image0.IsOpaque);
			}

			//TODO test all value conversions

			[TestCase (false)]
			[TestCase (true)]
			public void SetAttachedBP (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (1, Grid.GetColumn (page.label2));
				Assert.AreEqual (2, Grid.GetRow (page.label2));
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetContent (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreSame (page.label3, page.contentview0.Content);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetImplicitContent (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreSame (page.label4, page.contentview1.Content);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetCollectionContent (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.True (page.stack0.Children.Contains(page.label5));
				Assert.True (page.stack0.Children.Contains(page.label6));
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetImplicitCollectionContent (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.True (page.stack1.Children.Contains(page.label7));
				Assert.True (page.stack1.Children.Contains(page.label8));
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetSingleCollectionContent (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.True (page.stack2.Children.Contains(page.label9));
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetImplicitSingleCollectionContent (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.True (page.stack3.Children.Contains(page.label10));
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetPropertyDefinedOnGenericType (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (2, page.listView.ItemsSource.Cast<object>().Count ());
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetConvertibleProperties (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (Color.Red, page.label12.TextColor);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void SetValueTypeProperties (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (Color.Pink, page.label13.TextColor);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void CreateValueTypes (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (Color.Purple, page.Resources ["purple"]);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void DefCollections (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (2, page.grid0.RowDefinitions.Count);
				Assert.AreEqual (1, page.grid0.ColumnDefinitions.Count);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void FlagsAreApplied (bool useCompiledXaml)
			{
				var page = new SetValue (useCompiledXaml);
				Assert.AreEqual (AbsoluteLayoutFlags.PositionProportional | AbsoluteLayoutFlags.WidthProportional, AbsoluteLayout.GetLayoutFlags (page.label14));
			}
		}
	}
}