summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core.iOS.UITests/Tests/Legacy-UnevenViewCellUITests.cs
blob: 1b826ec00d23df6eb5cdb938e616d613f7950d01 (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
using NUnit.Framework;
using Xamarin.UITest;

namespace Xamarin.Forms.Core.UITests
{
	[TestFixture]
	[Category ("Cells")]
	internal class UnevenViewCellGalleryTests : BaseTestFixture
	{
		// TODO
		// TODO: Port to new conventions

		public UnevenViewCellGalleryTests ()
		{
			ShouldResetPerFixture = false;
		}

		protected override void NavigateToGallery ()
		{
			App.NavigateToGallery (GalleryQueries.UnevenViewCellGalleryLegacy);
		}
//		void AllElementsPresent ()
//		{
//			App.WaitForElement (q => q.Marked ("Testing"), "Timeout : Testing");
//			App.WaitForElement (PlatformQueries.Map, "Timeout : Map");
//			App.Screenshot ("All elements exist");
//		}

		[Test]
		[Description ("All views exist")]
		public void UnevenViewCellGalleryScrollDownForAllElements ()
		{
//			AllElementsPresent ();

//			var window = App.Query (q => q.Raw ("*")) [0];
//			var windowWidth = window.Rect.Width;
//			var windowHeight = window.Rect.Height;

//			App.DragFromToForElement (20, q => q.Marked ("1 day"), windowWidth - 100, windowHeight - 100, windowWidth - 100, windowHeight / 2);
//			App.DragFromToForElement (20, q => q.Marked ("2 days"), windowWidth - 100, windowHeight - 100, windowWidth - 100, windowHeight / 2);
//			App.DragFromToForElement (20, q => q.Marked ("3 days"), windowWidth - 100, windowHeight - 100, windowWidth - 100, windowHeight / 2);
//			App.DragFromToForElement (20, q => q.Marked ("4 days"), windowWidth - 100, windowHeight - 100, windowWidth - 100, windowHeight / 2);
//			App.DragFromToForElement (20, q => q.Marked ("5 days"), windowWidth - 100, windowHeight - 100, windowWidth - 100, windowHeight / 2);

//			App.Screenshot ("All views exist");
		}

//		[Test]
//		[Description ("Check uneven ViewCell sizes")]
//		public void UnevenViewCellGalleryCheckViewCellSizes ()
//		{
//			AllElementsPresent ();

//			var window = App.Query (q => q.Raw ("*")) [0];
//			var windowWidth = window.Rect.Width;
//			var windowHeight = window.Rect.Height;

//			var unevenCellHeight = App.Query (PlatformQueries.Map) [0].Rect.Height;

//			App.DragFromToForElement (20, q => q.Marked ("1 day"), windowWidth - 100, windowHeight - 100, windowWidth - 100, windowHeight / 2);

//			var evenCellHeight = App.Query (q => q.Marked ("1 day")) [0].Rect.Height;

//			Assert.Greater (unevenCellHeight, evenCellHeight);
//		}

///*******************************************************/
///**************** Landscape tests **********************/
///*******************************************************/

//		[Test]
//		[Description ("All views exist - Landscape")]
//		public void UnevenViewCellGalleryScrollDownForAllElementsLandscape ()
//		{
//			App.SetOrientationLandscape ();
//			App.Screenshot ("Rotated to Landscape");
//			UnevenViewCellGalleryScrollDownForAllElements ();
//			App.SetOrientationPortrait ();
//			App.Screenshot ("Rotated to Portrait");
//		}

//		[Test]
//		[Description ("Check uneven ViewCell sizes - Landscape")]
//		public void UnevenViewCellGalleryCheckViewCellSizesLandscape ()
//		{
//			App.SetOrientationLandscape ();
//			App.Screenshot ("Rotated to Landscape");
//			UnevenViewCellGalleryCheckViewCellSizes ();
//			App.SetOrientationPortrait ();
//			App.Screenshot ("Rotated to Portrait");
//		}

	}
}