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

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

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

		[TestFixture]
		public class Tests 
		{
			[SetUp]
			public void Setup()
			{
				Device.PlatformServices = new MockPlatformServices();
			}

			[TearDown]
			public void TearDown()
			{
				Device.PlatformServices = null;
			}

			[TestCase (false)]
			[TestCase (true)]
			public void ValueIsConverted (bool useCompiledXaml)
			{
				var layout = new TriggerTests (useCompiledXaml);
				Entry entry = layout.entry;
				Assert.NotNull (entry);

				var triggers = entry.Triggers;
				Assert.IsNotEmpty (triggers);
				var pwTrigger = triggers [0] as Trigger;
				Assert.AreEqual (Entry.IsPasswordProperty, pwTrigger.Property);
				Assert.AreEqual (true, pwTrigger.Value);
			}

			[TestCase(false)]
			[TestCase(true)]
			public void ValueIsConvertedWithPropertyCondition(bool useCompiledXaml)
			{
				var layout = new TriggerTests(useCompiledXaml);
				Entry entry = layout.entry1;
				Assert.NotNull(entry);

				var triggers = entry.Triggers;
				Assert.IsNotEmpty(triggers);
				var pwTrigger = triggers[0] as MultiTrigger;
				var pwCondition = pwTrigger.Conditions[0] as PropertyCondition;
				Assert.AreEqual(Entry.IsPasswordProperty, pwCondition.Property);
				Assert.AreEqual(true, pwCondition.Value);
			}
		}
	}
}