-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathScenarioTests.cs
526 lines (468 loc) · 24.5 KB
/
ScenarioTests.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
using System;
using System.Runtime.InteropServices;
using System.Windows.Automation;
using System.Windows.Automation.Text;
using NUnit.Framework;
namespace UIAComWrapperTests
{
/// <summary>
/// ScenarioTests: intended to contain tests that manipulate UI
/// and are therefore less reliable than pure unit tests.
///</summary>
[TestFixture]
public class ScenarioTests
{
[Test]
public void ExpandCollapsePatternTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL intl.cpl"))
{
// Find a well-known combo box
AutomationElement combo = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "1021"));
Assert.IsNotNull(combo);
ExpandCollapsePattern expando = (ExpandCollapsePattern)combo.GetCurrentPattern(ExpandCollapsePattern.Pattern);
Assert.AreEqual(expando.Current.ExpandCollapseState, ExpandCollapseState.Collapsed);
expando.Expand();
System.Threading.Thread.Sleep(100 /* ms */);
Assert.AreEqual(expando.Current.ExpandCollapseState, ExpandCollapseState.Expanded);
expando.Collapse();
System.Threading.Thread.Sleep(100 /* ms */);
Assert.AreEqual(expando.Current.ExpandCollapseState, ExpandCollapseState.Collapsed);
}
}
[Test]
public void ExpandCollapsePatternCachedTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL intl.cpl"))
{
CacheRequest req = new CacheRequest();
req.Add(ExpandCollapsePattern.Pattern);
req.Add(ExpandCollapsePattern.ExpandCollapseStateProperty);
using (req.Activate())
{
// Find a well-known combo box
AutomationElement combo = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "1021"));
Assert.IsNotNull(combo);
ExpandCollapsePattern expando = (ExpandCollapsePattern)combo.GetCachedPattern(ExpandCollapsePattern.Pattern);
Assert.AreEqual(expando.Cached.ExpandCollapseState, ExpandCollapseState.Collapsed);
}
}
}
[Test]
public void NoClickablePointTest()
{
// Launch a notepad and position it
using (AppHost host1 = new AppHost("notepad.exe", ""))
{
TransformPattern transformPattern1 = (TransformPattern)host1.Element.GetCurrentPattern(TransformPattern.Pattern);
transformPattern1.Move(0, 0);
transformPattern1.Resize(400, 300);
System.Windows.Point pt1 = host1.Element.GetClickablePoint();
// Launch a second notepad and position it on top
using (AppHost host2 = new AppHost("notepad.exe", ""))
{
TransformPattern transformPattern2 = (TransformPattern)host2.Element.GetCurrentPattern(TransformPattern.Pattern);
transformPattern2.Move(0, 0);
transformPattern2.Resize(400, 300);
// Now try it again for host1
try
{
System.Windows.Point pt1again = host1.Element.GetClickablePoint();
Assert.Fail("expected exception");
}
catch (NoClickablePointException)
{
}
}
}
}
[Test]
public void RangeValuePatternTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL main.cpl ,2"))
{
// Find a well-known slider
AutomationElement slider = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "101"));
Assert.IsNotNull(slider);
RangeValuePattern range = (RangeValuePattern)slider.GetCurrentPattern(RangeValuePattern.Pattern);
double originalValue = range.Current.Value;
try
{
Assert.IsTrue(range.Current.SmallChange >= 0);
Assert.IsTrue(range.Current.LargeChange >= 0);
Assert.IsTrue(originalValue >= range.Current.Minimum);
Assert.IsTrue(originalValue <= range.Current.Maximum);
Assert.IsFalse(range.Current.IsReadOnly);
range.SetValue(range.Current.Minimum);
System.Threading.Thread.Sleep(100 /* ms */);
Assert.AreEqual(range.Current.Value, range.Current.Minimum);
range.SetValue(range.Current.Maximum);
System.Threading.Thread.Sleep(100 /* ms */);
Assert.AreEqual(range.Current.Value, range.Current.Maximum);
double midpoint = (range.Current.Maximum + range.Current.Minimum) / 2;
range.SetValue(midpoint);
System.Threading.Thread.Sleep(100 /* ms */);
Assert.AreEqual(range.Current.Value, midpoint);
}
finally
{
range.SetValue(originalValue);
}
}
}
public void RangeValuePatternCachedTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL main.cpl ,2"))
{
CacheRequest req = new CacheRequest();
req.Add(RangeValuePattern.Pattern);
req.Add(RangeValuePattern.IsReadOnlyProperty);
req.Add(RangeValuePattern.MaximumProperty);
req.Add(RangeValuePattern.MinimumProperty);
req.Add(RangeValuePattern.SmallChangeProperty);
req.Add(RangeValuePattern.LargeChangeProperty);
using (req.Activate())
{
// Find a well-known slider
AutomationElement slider = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "101"));
Assert.IsNotNull(slider);
RangeValuePattern range = (RangeValuePattern)slider.GetCachedPattern(RangeValuePattern.Pattern);
double originalValue = range.Cached.Value;
Assert.IsTrue(range.Cached.SmallChange >= 0);
Assert.IsTrue(range.Cached.LargeChange >= 0);
Assert.IsTrue(originalValue >= range.Cached.Minimum);
Assert.IsTrue(originalValue <= range.Cached.Maximum);
Assert.IsFalse(range.Cached.IsReadOnly);
}
}
}
[Test]
[Ignore]
public void TextPatternTest()
{
System.Reflection.Assembly asm = System.Reflection.Assembly.GetExecutingAssembly();
// Fragile -- I'm open to a better way of doing this.
using (AppHost host = new AppHost("xpsrchvw.exe", "..\\..\\..\\UiaComWrapperTests\\bin\\debug\\test.xps"))
{
AutomationElement mainContent = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.IsTextPatternAvailableProperty, true));
TextPattern text = (TextPattern)mainContent.GetCurrentPattern(TextPattern.Pattern);
Assert.AreEqual(text.SupportedTextSelection, SupportedTextSelection.Single);
TextPatternRange range1 = text.DocumentRange;
Assert.IsNotNull(range1);
Assert.AreEqual(text, range1.TextPattern);
TextPatternRange range2 = range1.Clone();
Assert.IsNotNull(range2);
Assert.IsTrue(range1.Compare(range2));
Assert.IsTrue(0 == range1.CompareEndpoints(TextPatternRangeEndpoint.Start, range2, TextPatternRangeEndpoint.Start));
Assert.IsTrue(0 == range1.CompareEndpoints(TextPatternRangeEndpoint.End, range2, TextPatternRangeEndpoint.End));
string keyString = "Constitution of the United States";
TextPatternRange range3 = range1.FindText(keyString, false, true);
Assert.IsNotNull(range3);
string foundString = range3.GetText(-1);
Assert.AreEqual(keyString, foundString);
range3.Select();
TextPatternRange[] selectedRanges = text.GetSelection();
Assert.AreEqual(1, selectedRanges.Length);
TextPatternRange selectedRange = selectedRanges[0];
Assert.IsTrue(range3.Compare(selectedRange));
// Test attributes. Casts will fail if types are wrong
System.Globalization.CultureInfo culture = (System.Globalization.CultureInfo)range3.GetAttributeValue(TextPattern.CultureAttribute);
string fontName = (string)range3.GetAttributeValue(TextPattern.FontNameAttribute);
bool hiddenValue = (bool)range3.GetAttributeValue(TextPattern.IsItalicAttribute);
Assert.AreEqual(AutomationElement.NotSupported, range3.GetAttributeValue(TextPattern.IsHiddenAttribute));
TextPatternRange range5 = range1.FindAttribute(TextPattern.IsItalicAttribute, true, false /* backward */);
Assert.IsNotNull(range5);
Assert.AreEqual("Note", range5.GetText(-1));
range5.ExpandToEnclosingUnit(TextUnit.Line);
string line5 = range5.GetText(-1);
Assert.AreEqual("Preamble Note ", line5);
System.Windows.Rect[] rects = range3.GetBoundingRectangles();
Assert.AreEqual(rects.Length, 1);
Assert.IsTrue(rects[0].Width > 0);
Assert.IsTrue(rects[0].Height > 0);
}
}
[Test]
public void TogglePatternTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL main.cpl ,2"))
{
// Find a well-known checkbox
AutomationElement checkbox = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "109"));
Assert.IsNotNull(checkbox);
TogglePattern toggle = (TogglePattern)checkbox.GetCurrentPattern(TogglePattern.Pattern);
ToggleState originalState = toggle.Current.ToggleState;
toggle.Toggle();
// Slight wait for effect
System.Threading.Thread.Sleep(100 /* ms */);
ToggleState currentState = toggle.Current.ToggleState;
Assert.AreNotEqual(originalState, currentState);
// Put it back
while (currentState != originalState)
{
toggle.Toggle();
System.Threading.Thread.Sleep(100 /* ms */);
currentState = toggle.Current.ToggleState;
}
}
}
public void TogglePatternCachedTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL main.cpl"))
{
CacheRequest req = new CacheRequest();
req.Add(TogglePattern.Pattern);
req.Add(TogglePattern.ToggleStateProperty);
using (req.Activate())
{
// Find a well-known checkbox
AutomationElement checkbox = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "114"));
Assert.IsNotNull(checkbox);
TogglePattern toggle = (TogglePattern)checkbox.GetCachedPattern(TogglePattern.Pattern);
ToggleState originalState = toggle.Cached.ToggleState;
Assert.IsTrue(originalState == ToggleState.On || originalState == ToggleState.Off);
}
}
}
[Test]
public void TransformPatternTest()
{
// Launch a notepad and position it
using (AppHost host = new AppHost("notepad.exe", ""))
{
TransformPattern transformPattern = (TransformPattern)host.Element.GetCurrentPattern(TransformPattern.Pattern);
// Coded to expectations for an explorer window
Assert.IsTrue(transformPattern.Current.CanMove);
Assert.IsTrue(transformPattern.Current.CanResize);
Assert.IsFalse(transformPattern.Current.CanRotate);
// Little move
transformPattern.Move(10, 10);
// Little resize
transformPattern.Resize(200, 200);
}
}
[Test]
public void TransformPatternCachedTest()
{
using (AppHost host = new AppHost("notepad.exe", ""))
{
CacheRequest req = new CacheRequest();
req.Add(TransformPattern.Pattern);
req.Add(TransformPattern.CanMoveProperty);
req.Add(TransformPattern.CanResizeProperty);
req.Add(TransformPattern.CanRotateProperty);
using (req.Activate())
{
AutomationElement cachedEl = host.Element.GetUpdatedCache(req);
TransformPattern transformPattern = (TransformPattern)cachedEl.GetCachedPattern(TransformPattern.Pattern);
// Coded to expectations for an explorer window
Assert.IsTrue(transformPattern.Cached.CanMove);
Assert.IsTrue(transformPattern.Cached.CanResize);
Assert.IsFalse(transformPattern.Cached.CanRotate);
// Little move
transformPattern.Move(10, 10);
// Little resize
transformPattern.Resize(200, 200);
}
}
}
[Test]
public void ValuePatternTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL intl.cpl"))
{
// Find a well-known combo box
AutomationElement combo = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "1021"));
Assert.IsNotNull(combo);
ValuePattern value = (ValuePattern)combo.GetCurrentPattern(ValuePattern.Pattern);
Assert.IsFalse(value.Current.IsReadOnly);
Assert.IsTrue(value.Current.Value.Length > 0);
}
}
[Test]
public void ValuePatternCachedTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL intl.cpl"))
{
CacheRequest req = new CacheRequest();
req.Add(WindowPattern.Pattern);
req.Add(WindowPattern.CanMaximizeProperty);
req.Add(WindowPattern.CanMinimizeProperty);
req.Add(WindowPattern.IsTopmostProperty);
req.Add(WindowPattern.WindowInteractionStateProperty);
req.Add(WindowPattern.WindowVisualStateProperty);
using (req.Activate())
{
// Find a well-known combo box
AutomationElement combo = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "1021"));
Assert.IsNotNull(combo);
ValuePattern value = (ValuePattern)combo.GetCurrentPattern(ValuePattern.Pattern);
Assert.IsFalse(value.Current.IsReadOnly);
Assert.IsTrue(value.Current.Value.Length > 0);
}
}
}
[Test]
public void WindowPatternTest()
{
using (AppHost host = new AppHost("notepad.exe", ""))
{
// Window Pattern
WindowPattern windowPattern = (WindowPattern)host.Element.GetCurrentPattern(WindowPattern.Pattern);
Assert.IsTrue(windowPattern.Current.CanMaximize);
Assert.IsTrue(windowPattern.Current.CanMinimize);
Assert.IsFalse(windowPattern.Current.IsTopmost);
Assert.AreNotEqual(windowPattern.Current.WindowVisualState, WindowVisualState.Minimized);
Assert.AreNotEqual(windowPattern.Current.WindowInteractionState, WindowInteractionState.Closing);
}
}
[Test]
public void WindowPatternCachedTest()
{
using (AppHost host = new AppHost("notepad.exe", ""))
{
CacheRequest req = new CacheRequest();
req.Add(WindowPattern.Pattern);
req.Add(WindowPattern.CanMaximizeProperty);
req.Add(WindowPattern.CanMinimizeProperty);
req.Add(WindowPattern.IsTopmostProperty);
req.Add(WindowPattern.WindowInteractionStateProperty);
req.Add(WindowPattern.WindowVisualStateProperty);
using (req.Activate())
{
AutomationElement cachedEl = host.Element.GetUpdatedCache(req);
// Window Pattern
WindowPattern windowPattern = (WindowPattern)cachedEl.GetCachedPattern(WindowPattern.Pattern);
Assert.IsTrue(windowPattern.Cached.CanMaximize);
Assert.IsTrue(windowPattern.Cached.CanMinimize);
Assert.IsFalse(windowPattern.Cached.IsTopmost);
Assert.AreNotEqual(windowPattern.Cached.WindowVisualState, WindowVisualState.Minimized);
Assert.AreNotEqual(windowPattern.Cached.WindowInteractionState, WindowInteractionState.Closing);
}
}
}
[Test]
public void LegacyIAccessiblePatternTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL intl.cpl"))
{
// Find a well-known combo box
AutomationElement combo = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "1021"));
Assert.IsNotNull(combo);
// BLOCK
{
LegacyIAccessiblePattern acc = (LegacyIAccessiblePattern)combo.GetCurrentPattern(LegacyIAccessiblePattern.Pattern);
Assert.AreEqual(0, acc.Current.ChildId);
Assert.IsTrue(acc.Current.Name.Length > 0);
Assert.IsTrue(acc.Current.Value.Length > 0);
Assert.AreEqual("Alt+f", acc.Current.KeyboardShortcut);
Assert.AreEqual((uint)0x2E /* combo box */, acc.Current.Role);
Assert.AreEqual((uint)0x100400 /* collapsed|focusable */, acc.Current.State & 0x100400);
}
// Get the tab controls
AutomationElement tabCtrl = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "12320"));
Assert.IsNotNull(tabCtrl);
// Try out the selection
// BLOCK
{
LegacyIAccessiblePattern acc = (LegacyIAccessiblePattern)tabCtrl.GetCurrentPattern(LegacyIAccessiblePattern.Pattern);
AutomationElement[] selection = acc.Current.GetSelection();
Assert.IsTrue(selection.Length > 0);
Assert.IsInstanceOf<AutomationElement>(selection[0]);
Assert.AreEqual(ControlType.TabItem, selection[0].Current.ControlType);
}
}
}
[Test]
public void LegacyIAccessiblePatternCachedTest()
{
using (AppHost host = new AppHost("rundll32.exe", "shell32.dll,Control_RunDLL intl.cpl"))
{
CacheRequest req = new CacheRequest();
req.Add(LegacyIAccessiblePattern.Pattern);
req.Add(LegacyIAccessiblePattern.NameProperty);
req.Add(LegacyIAccessiblePattern.ChildIdProperty);
req.Add(LegacyIAccessiblePattern.KeyboardShortcutProperty);
req.Add(LegacyIAccessiblePattern.RoleProperty);
req.Add(LegacyIAccessiblePattern.ValueProperty);
req.Add(LegacyIAccessiblePattern.StateProperty);
req.Add(LegacyIAccessiblePattern.SelectionProperty);
using (req.Activate())
{
// Find a well-known combo box
AutomationElement combo = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "1021"));
Assert.IsNotNull(combo);
// BLOCK
{
LegacyIAccessiblePattern acc = (LegacyIAccessiblePattern)combo.GetCachedPattern(LegacyIAccessiblePattern.Pattern);
Assert.AreEqual(0, acc.Cached.ChildId);
Assert.IsTrue(acc.Cached.Name.Length > 0);
Assert.IsTrue(acc.Cached.Value.Length > 0);
Assert.AreEqual("Alt+f", acc.Cached.KeyboardShortcut);
Assert.AreEqual((uint)0x2E /* combo box */, acc.Cached.Role);
Assert.AreEqual((uint)0x100400 /* collapsed|focusable */, acc.Cached.State & 0x100400);
}
// Get the tab controls
AutomationElement tabCtrl = host.Element.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.AutomationIdProperty, "12320"));
Assert.IsNotNull(tabCtrl);
// BLOCK
{
LegacyIAccessiblePattern acc = (LegacyIAccessiblePattern)tabCtrl.GetCachedPattern(LegacyIAccessiblePattern.Pattern);
AutomationElement[] selection = acc.Cached.GetSelection();
Assert.IsTrue(selection.Length > 0);
Assert.IsInstanceOf<AutomationElement>(selection[0]);
Assert.AreEqual(ControlType.TabItem, selection[0].Current.ControlType);
}
}
}
}
[DllImport("oleacc.dll")]
internal static extern int AccessibleObjectFromWindow(
IntPtr hwnd,
uint id,
ref Guid iid,
[In, Out, MarshalAs(UnmanagedType.IUnknown)] ref object ppvObject);
[Test]
public void IAccessibleInterop()
{
// Get the clock
AutomationElement taskbar = AutomationElement.RootElement.FindFirst(TreeScope.Children,
new PropertyCondition(AutomationElement.ClassNameProperty, "Shell_TrayWnd"));
Assert.IsNotNull(taskbar);
AutomationElement clock = taskbar.FindFirst(TreeScope.Subtree,
new PropertyCondition(AutomationElement.ClassNameProperty, "TrayClockWClass"));
Assert.IsNotNull(clock);
// Get the IAccessible for the clock
IntPtr clockHwnd = (IntPtr)clock.Current.NativeWindowHandle;
Guid iidAccessible = new Guid("{618736E0-3C3D-11CF-810C-00AA00389B71}");
object obj = null;
int retVal = AccessibleObjectFromWindow(clockHwnd, (uint)0xFFFFFFFC, ref iidAccessible, ref obj);
Assert.IsNotNull(obj);
Accessibility.IAccessible accessible = (Accessibility.IAccessible)obj;
Assert.IsNotNull(accessible);
Assert.AreEqual(0x3D /* clock */, accessible.get_accRole(0));
// Convert to an element
AutomationElement element = AutomationElement.FromIAccessible(accessible, 0);
Assert.IsNotNull(element);
Assert.AreEqual(ControlType.Pane, element.Current.ControlType);
// Round-trip: let's get the IAccessible back out
LegacyIAccessiblePattern legacy = (LegacyIAccessiblePattern)element.GetCurrentPattern(LegacyIAccessiblePattern.Pattern);
Accessibility.IAccessible legacyIAcc = legacy.GetIAccessible();
Assert.IsNotNull(legacyIAcc);
Assert.AreEqual(0x3D /* clock */, legacyIAcc.get_accRole(0));
}
}
}