summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/GenericsTests.xaml.cs
blob: 5a62b9fa1e8a8233b8da006bcffbc79d880c93ad (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
using System;
using System.Collections.Generic;

using Xamarin.Forms;

using NUnit.Framework;

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

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

		[TestFixture]
		public class Tests
		{
			[Test]
			public void NoGenericsOnXaml2006 ()
			{
				var xaml = @"
				<ContentPage 
				xmlns=""http://xamarin.com/schemas/2014/forms""
				xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""
				xmlns:scg=""clr-namespace:System.Collections.Generic;assembly=mscorlib"">
					<ContentPage.Resources>
						<ResourceDictionary>
							<scg:List x:TypeArguments=""Button"" x:Key=""genericList""/>
						</ResourceDictionary>
					</ContentPage.Resources>
				</ContentPage>";
				Assert.Throws (new XamlParseExceptionConstraint (8, 9), () => new ContentPage ().LoadFromXaml (xaml));
			}

			[TestCase (false)]
			[TestCase (true)]
			public void GenericSupportOnXaml2009 (bool useCompiledXaml)
			{
				var layout = new GenericsTests (useCompiledXaml);
				Assert.True (layout.Resources.ContainsKey ("genericButtonList"));
				var list = layout.Resources ["genericButtonList"];
				Assert.That (list, Is.TypeOf<List<Button>> ());
				Assert.AreEqual (2, ((List<Button>)list).Count);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void FindGenericByName (bool useCompiledXaml)
			{
				var layout = new GenericsTests (useCompiledXaml);
				var list = layout.FindByName<List<Button>> ("myList");
				Assert.NotNull (list);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void TestGenericParsing (bool useCompiledXaml)
			{
				var layout = new GenericsTests (useCompiledXaml);
				var list = layout.Resources ["list"];
				Assert.NotNull (list);
				Assert.That (list, Is.TypeOf<List<String>> ());

				var dict = layout.Resources ["dict"];
				Assert.NotNull (dict);
				Assert.That (dict, Is.TypeOf<Dictionary<string,string>> ());

				var queue = layout.Resources ["queue"];
				Assert.NotNull (dict);
				Assert.That (queue, Is.TypeOf<Queue<KeyValuePair<string,string>>> ());
			}

			[TestCase (false)]
			[TestCase (true)]
			public void TestXamlPrimitives (bool useCompiledXaml)
			{
				var layout = new GenericsTests (useCompiledXaml);
				var list = layout.Resources ["stringList"];
				Assert.NotNull (list);
				Assert.That (list, Is.TypeOf<List<String>> ());
			}
		}
	}
}