summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Android.UITests/PlatformHelpers.cs
blob: 6021f2a2fa0fbd15ffe409b0f8bb27937959049b (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
using System;
using Xamarin.UITest;
using Xamarin.UITest.Android;
using Xamarin.UITest.Queries;
using NUnit.Framework;
using System.Threading;

namespace Xamarin.Forms.UITests
{

	public static class PlatformHelpers
	{

		public static string GetTextForQuery (this IApp app, Func<AppQuery, AppQuery> query)
		{
			AppResult[] elements = app.Query (query);
			if (elements.Length > 1) {
				// Test cloud doesn't support Assert.Fail
				Assert.False (true, "Query returned more than one result");
			}
			return elements [0].Text;
		}
	
		public static bool ScrollDownForElement (this IApp app, Func<AppQuery, AppQuery> query, int scrollNumberLimit)
		{
			// Check if element exists before scrolling
			if (app.Query (query).Length > 0)
				return true;

			int scrollNumber = 0;
			while (app.Query (query).Length == 0) {
				app.ScrollDown ();
				scrollNumber++;
				if (scrollNumber > scrollNumberLimit)
					return false;
			}

			return true;
		}

		public static bool ScrollUpForElement (this IApp app, Func<AppQuery, AppQuery> query, int scrollNumberLimit)
		{
			int scrollNumber = 0;
			while (app.Query (query).Length == 0) {
				app.ScrollUp ();
				scrollNumber++;
				if (scrollNumber > scrollNumberLimit)
					return false;
			}

			return true;
		}

		public static bool DragFromToForElement (this AndroidApp app, int scrollNumberLimit, Func<AppQuery, AppQuery> query, float xStart, float yStart, float xEnd, float yEnd)
		{
			int numberOfScrolls = 0;
			// Element exists
			if (app.Query (query).Length > 0)
				return true;

			while (app.Query (query).Length == 0) {
				DragFromTo (app, xStart, yStart, xEnd, yEnd);
				if (numberOfScrolls > scrollNumberLimit) {
					return false;
				}
				numberOfScrolls++;
			}
			// Element found
			return true;
		}

		public static void SwipeBackNavigation (this AndroidApp app)
		{
			// Do nothing on Android
		}

		public static void DragFromTo (this AndroidApp app, float xStart, float yStart, float xEnd, float yEnd, Speed speed = Speed.Fast)
		{
			// No effect on Android
			app.DragCoordinates (xStart, yStart, xEnd, yEnd);
		}

		public static void KeyboardIsPresent (this AndroidApp app)
		{
			// TODO : Add keyboard detection
//			Thread.Sleep (1000);
//
//			AppRect screenSize = app.MainScreenBounds ();
//			AppRect contentBounds = app.Query (q => q.Raw ("*").Id ("content"))[0].Rect;
//
//			bool keyboardIsShown = false;
//			if ((screenSize.Height - contentBounds.Height) > (screenSize.Height / 4)) {
//				// Determine if keyboard is showing by seeing if content size is shrunk by over 1/4 of screens size
//				keyboardIsShown = true;
//			}
//
//			Assert.IsTrue (keyboardIsShown, "Keyboard should be shown");
			Assert.Inconclusive ("Keyboard should be shown");
		}

		public static void KeyboardIsDismissed (this AndroidApp app)
		{
			// TODO : Add keyboard detection
//			AppRect screenSize = app.MainScreenBounds ();
//			AppRect contentBounds = app.Query (q => q.Raw ("*").Id ("content"))[0].Rect;
//
//			bool keyboardIsShown = false;
//			if ((screenSize.Height - contentBounds.Height) > (screenSize.Height / 4)) {
//				// Determine if keyboard is showing by seeing if content size is shrunk by over 1/4 of screens size
//				keyboardIsShown = true;
//			}
//
//			Assert.IsFalse (keyboardIsShown, "Keyboard should be dismissed");
			Assert.Inconclusive ("Keyboard should be dismissed");
		}

		public static int IndexForElementWithText (this AndroidApp app, Func<AppQuery, AppQuery> query, string text)
		{
			var elements = app.Query (query);
			int index = 0;
			for (int i = 0; i < elements.Length; i++) {
				string labelText = elements[i].Text;
				if (labelText == (text)) {
					index = i;
					break;
				} 
				index++;
			}
			return index == elements.Length ? -1 : index; 
		}
	}
}