summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core.iOS.UITests/BaseTestFixture.cs
blob: b2f98e24893a36cdd8ab727d073934c491ba287a (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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using NUnit.Framework;
using Xamarin.Forms.Controls;
using Xamarin.UITest;
using Xamarin.UITest.Queries;

namespace Xamarin.Forms.Core.UITests
{
	internal abstract class BaseTestFixture
	{
		// TODO: Landscape tests

		public static IApp App { get; private set; }
		public string PlatformViewType { get; protected set; }
		public bool ShouldResetPerFixture { get; protected set; }
		public AppRect ScreenBounds { get; private set; }

		protected BaseTestFixture()
		{
			ShouldResetPerFixture = true;
		}

		protected abstract void NavigateToGallery();

#pragma warning disable 618
		[TestFixtureSetUp]
#pragma warning restore 618
		protected virtual void FixtureSetup()
		{
			try
			{
				if (ShouldResetPerFixture)
				{
					RelaunchApp();
				}
			}
			catch (Exception ex)
			{
				Debug.WriteLine(ex);
				throw;
			}
		}

#pragma warning disable 618
		[TestFixtureTearDown]
#pragma warning restore 618
		protected virtual void FixtureTeardown()
		{
		}

		[SetUp]
		protected virtual void TestSetup()
		{
			if (!ShouldResetPerFixture)
			{

				RelaunchApp();
			}
		}

		[TearDown]
		protected virtual void TestTearDown()
		{

		}

		void RelaunchApp()
		{
			App = null;
			App = AppSetup.Setup();
			App.SetOrientationPortrait();
			ScreenBounds = App.RootViewRect();
			NavigateToGallery();
		}
	}
}