-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathTouchScenarios.cs
140 lines (125 loc) · 5.24 KB
/
TouchScenarios.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
//******************************************************************************
//
// 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 Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Input
{
[TestClass]
public class SingleTouchScenarios : 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>
/// One finger touches the screen and lifts up.
/// Static gesture.
/// </summary>
[TestMethod, TestCategory("SingleTouch")]
public void Tap()
{
var touchable = AppSession.FindElementByAccessibilityId("Touchable");
TouchScreen.SingleTap(touchable.Coordinates);
Assert.AreEqual("Tapped", _GetLastResultString());
}
/// <summary>
/// One finger touches the screen and lifts up twice, in quick succession.
/// Static gesture.
/// </summary>
[TestMethod, TestCategory("SingleTouch")]
public void DoubleTap()
{
var touchable = AppSession.FindElementByAccessibilityId("Touchable");
TouchScreen.DoubleTap(touchable.Coordinates);
Assert.AreEqual("DoubleTapped", _GetLastResultString());
}
/// <summary>
/// One finger touches the screen and stays in place.
/// Static gesture.
/// </summary>
[TestMethod, TestCategory("SingleTouch")]
public void PressAndHold()
{
var touchable = AppSession.FindElementByAccessibilityId("Touchable");
TouchScreen.LongPress(touchable.Coordinates);
Assert.AreEqual("Holding", _GetFirstResultString());
}
/// <summary>
/// One finger touches the screen and stays in place for a moment, then releases.
/// Static gesture.
/// </summary>
[TestMethod, TestCategory("SingleTouch")]
public void RightTapped()
{
var touchable = AppSession.FindElementByAccessibilityId("Touchable");
TouchScreen.LongPress(touchable.Coordinates);
Assert.AreEqual("RightTapped", _GetLastResultString());
}
/// <summary>
/// One finger touches the screen and moves in a direction.
/// Manipulation gesture.
/// </summary>
[TestMethod, TestCategory("SingleTouch")]
public void Slide()
{
var touchable = AppSession.FindElementByAccessibilityId("Touchable");
var startCoords = touchable.Coordinates.LocationInViewport;
var endX = startCoords.X + TouchDistance.Long;
var endY = startCoords.Y + TouchDistance.Long;
TouchScreen.Down(startCoords.X, startCoords.Y);
TouchScreen.Up(endX, endY);
var endCoords = touchable.Coordinates.LocationInViewport;
Assert.IsTrue(endCoords.X > startCoords.X);
Assert.IsTrue(endCoords.Y > startCoords.Y);
}
/// <summary>
/// One finger touches the screen and moves a short distance in a direction.
/// Manipulation gesture.
/// </summary>
[TestMethod, TestCategory("SingleTouch")]
public void Swipe()
{
var touchable = AppSession.FindElementByAccessibilityId("Touchable");
var startCoords = touchable.Coordinates.LocationInViewport;
// Not supported
//var startX = startCoords.X + touchable.Size.Width / 2;
//var startY = startCoords.Y + touchable.Size.Width / 2;
//var endX = startX + TouchDistance.Short;
//var endY = startY + TouchDistance.Short;
//AppSession.Swipe(startX, startY, endX, endY, TouchDuration.Short);
TouchScreen.Flick(touchable.Coordinates, TouchDistance.Short, TouchDistance.Short, TouchSpeed.Slow);
var endCoords = touchable.Coordinates.LocationInViewport;
Assert.IsTrue(endCoords.X > startCoords.X);
Assert.IsTrue(endCoords.Y > startCoords.Y);
Assert.IsTrue(endCoords.X - startCoords.X <= TouchDistance.Short);
Assert.IsTrue(endCoords.Y - startCoords.Y <= TouchDistance.Short);
}
}
}