-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathMultiTouchScenarios.cs
124 lines (111 loc) · 4.41 KB
/
MultiTouchScenarios.cs
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
//******************************************************************************
//
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
//******************************************************************************
using System;
using System.Drawing;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Input
{
[TestClass]
public class MultiTouchScenarios : TestBase
{
#region Test lifecycle code
[ClassInitialize]
public static void Setup(TestContext context)
{
BaseSetup(context);
}
[ClassCleanup]
public static void TearDown()
{
BaseTearDown();
}
[TestInitialize]
public void Clear()
{
var clear = AppSession.FindElementByAccessibilityId("Clear");
TouchScreen.SingleTap(clear.Coordinates);
Assert.AreEqual(string.Empty, _GetResultText());
}
#endregion
/// <summary>
/// Multiple fingers touch the screen and move in the same direction.
/// Manipulation gesture.
/// </summary>
[TestMethod, TestCategory("MultiTouch")]
public void MultiSlide()
{
throw new NotImplementedException();
}
/// <summary>
/// Two or more fingers touch the screen and move a short distance in the same direction.
/// Manipulation gesture.
/// </summary>
[TestMethod, TestCategory("MultiTouch")]
public void MultiSwipe()
{
throw new NotImplementedException();
}
/// <summary>
/// Multiple fingers touch the screen and move in a clockwise or counter-clockwise arc.
/// Manipulation gesture.
/// AKA Rotate
/// </summary>
[TestMethod, TestCategory("MultiTouch")]
public void Turn()
{
throw new NotImplementedException();
}
/// <summary>
/// Multiple fingers touch the screen and move closer together.
/// Manipulation gesture.
/// </summary>
[TestMethod, TestCategory("MultiTouch")]
public void Pinch()
{
var touchable = AppSession.FindElementByAccessibilityId("Touchable");
var coords = touchable.Coordinates.LocationInViewport;
var startSize = new Size(touchable.Size.Width, touchable.Size.Height);
var x = coords.X + startSize.Width / 2;
var y = coords.Y + startSize.Height / 2;
// The Pinch method assumes a 100px difference between the start/end points.
// Add half (50) to offset the touch to the center of the element.
AppSession.Pinch(x, y + 50);
// AppSession.Pinch(touchable); Not supported yet
Assert.IsTrue(startSize.Height > touchable.Size.Height);
Assert.IsTrue(startSize.Width > touchable.Size.Width);
}
/// <summary>
/// Multiple fingers touch the screen and move farther apart.
/// Manipulation gesture.
/// AKA Zoom
/// </summary>
[TestMethod, TestCategory("MultiTouch")]
public void Stretch()
{
var touchable = AppSession.FindElementByAccessibilityId("Touchable");
var coords = touchable.Coordinates.LocationInViewport;
var startSize = new Size(touchable.Size.Width, touchable.Size.Height);
var x = coords.X + startSize.Width / 2;
var y = coords.Y + startSize.Height / 2;
// The Zoom method assumes a 100px difference between the start/end points.
// Add half (50) to offset the touch to the center of the element.
AppSession.Zoom(x, y + 50);
// AppSession.Zoom(touchable); Not supported yet
Assert.IsTrue(startSize.Height < touchable.Size.Height);
Assert.IsTrue(startSize.Width < touchable.Size.Width);
}
}
}