-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathMockPatternTest.cs
734 lines (610 loc) · 21.8 KB
/
MockPatternTest.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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
using System;
using System.Windows.Automation;
using System.Windows.Automation.Providers;
using NUnit.Framework;
using UIAutomationClient;
using SupportedTextSelection = System.Windows.Automation.SupportedTextSelection;
using ZoomUnit = System.Windows.Automation.ZoomUnit;
namespace UIAComWrapperTests
{
[System.Runtime.InteropServices.ComVisible(true)]
public class MockPatternProvider : IRawElementProviderSimple,
IAnnotationProvider,
IStylesProvider,
ISpreadsheetProvider,
ISpreadsheetItemProvider,
ITransformProvider2,
IDragProvider,
IDropTargetProvider,
ITextProvider,
ITextProvider2,
ITextChildProvider
{
private IntPtr _hwnd;
public MockPatternProvider(IntPtr hwnd)
{
_hwnd = hwnd;
}
#region IRawElementProviderSimple Members
public UIAutomationClient.ProviderOptions ProviderOptions
{
get
{
return UIAutomationClient.ProviderOptions.ProviderOptions_ClientSideProvider;
}
}
public object GetPatternProvider(int patternId)
{
if (patternId == AnnotationPattern.Pattern.Id ||
patternId == StylesPattern.Pattern.Id ||
patternId == SpreadsheetPattern.Pattern.Id ||
patternId == SpreadsheetItemPattern.Pattern.Id ||
patternId == TransformPattern.Pattern.Id ||
patternId == TransformPattern2.Pattern.Id ||
patternId == DragPattern.Pattern.Id ||
patternId == DropTargetPattern.Pattern.Id ||
patternId == TextPattern.Pattern.Id ||
patternId == TextPattern2.Pattern.Id ||
patternId == TextChildPattern.Pattern.Id)
{
return this;
}
else
{
return null;
}
}
public object GetPropertyValue(int propertyId)
{
if (propertyId == AutomationElement.ProviderDescriptionProperty.Id)
{
return "Mock Pattern Provider";
}
return null;
}
public IRawElementProviderSimple HostRawElementProvider
{
get
{
return AutomationInteropProvider.HostProviderFromHandle(this._hwnd);
}
}
#endregion
public static IRawElementProviderSimple MockPatternFactory(IntPtr hwnd, int idChild, int idObject)
{
return new MockPatternProvider(hwnd);
}
#region IAnnotationProvider members
public AnnotationType AnnotationTypeId
{
get { return AnnotationType.Comment; }
}
public string AnnotationTypeName
{
get { return "Comment"; }
}
public string Author
{
get { return "John Doe"; }
}
public string DateTime
{
get { return "July 4, 1776"; }
}
public IRawElementProviderSimple Target
{
get { return this; }
}
#endregion
#region IStylesProvider methods
public StyleId StyleId
{
get { return StyleId.Heading5; }
}
public string StyleName
{
get { return "Heading #5"; }
}
public int FillColor
{
get { return 0x00FF00; }
}
public string FillPatternStyle
{
get { return "pinstriped"; }
}
public string Shape
{
get { return "dodecahedron"; }
}
public int FillPatternColor
{
get { return 0x0000FF; }
}
public string ExtendedProperties
{
get { return "prop1=a;prop2=b"; }
}
#endregion
#region ISpreadsheetProvider methods
public IRawElementProviderSimple GetItemByName(string name)
{
if (name == "primary")
{
return this;
}
else
{
return null;
}
}
#endregion
#region ISpreadsheetItemProvider methods
public string Formula
{
get { return "E=mc^2"; }
}
public IRawElementProviderSimple[] GetAnnotationObjects()
{
return new IRawElementProviderSimple[2] { this, this };
}
public AnnotationType[] GetAnnotationTypes()
{
return new AnnotationType[2] { AnnotationType.SpellingError, AnnotationType.GrammarError };
}
#endregion
#region ITransformProvider2 methods
double zoomLevel = 1.0;
public void Zoom(double zoom)
{
if (zoom < 0.25 || zoom > 4.0)
{
throw new InvalidOperationException();
}
this.zoomLevel = zoom;
}
public bool CanZoom
{
get { return true; }
}
public double ZoomLevel
{
get { return this.zoomLevel; }
}
public double ZoomMinimum
{
get { return 0.25; }
}
public double ZoomMaximum
{
get { return 4.0; }
}
public void ZoomByUnit(ZoomUnit zoomUnit)
{
double delta = 0;
switch (zoomUnit)
{
case ZoomUnit.LargeDecrement: delta = -0.25; break;
case ZoomUnit.SmallDecrement: delta = -0.1; break;
case ZoomUnit.LargeIncrement: delta = 0.25; break;
case ZoomUnit.SmallIncrement: delta = 0.1; break;
case ZoomUnit.NoAmount: delta = 0; break;
}
double proposed = this.zoomLevel + delta;
if (proposed < 0.25 || proposed > 4.0)
{
throw new InvalidOperationException();
}
this.zoomLevel = proposed;
}
public void Move(double x, double y)
{
throw new NotImplementedException();
}
public void Resize(double width, double height)
{
throw new NotImplementedException();
}
public void Rotate(double degrees)
{
throw new NotImplementedException();
}
public bool CanMove
{
get { throw new NotImplementedException(); }
}
public bool CanResize
{
get { throw new NotImplementedException(); }
}
public bool CanRotate
{
get { throw new NotImplementedException(); }
}
#endregion
#region IDragProvider methods
public bool IsGrabbed
{
get { return true; }
}
public string DropEffect
{
get { return "Copy"; }
}
public string[] DropEffects
{
get { return new string[2] { "Copy", "Move" }; }
}
public IRawElementProviderSimple[] GetGrabbedItems()
{
return new IRawElementProviderSimple[2] { this, this };
}
#endregion
#region IDropTargetProvider methods
public string DropTargetEffect
{
get { return "Copy"; }
}
public string[] DropTargetEffects
{
get { return new string[2] { "Copy", "Move" }; }
}
#endregion
#region ITextProvider2
public ITextRangeProvider[] GetSelection()
{
return new ITextRangeProvider[] {
new MockTextRangeProvider(this, "selection")
};
}
public ITextRangeProvider[] GetVisibleRanges()
{
return new ITextRangeProvider[] {
new MockTextRangeProvider(this, "visible")
};
}
public ITextRangeProvider RangeFromChild(IRawElementProviderSimple childElement)
{
if (childElement == null)
{
throw new ArgumentNullException();
}
return new MockTextRangeProvider(this, "fromChild");
}
public ITextRangeProvider RangeFromPoint(System.Windows.Point screenLocation)
{
return new MockTextRangeProvider(this, "fromPoint");
}
public ITextRangeProvider DocumentRange
{
get
{
return new MockTextRangeProvider(this, "document");
}
}
public SupportedTextSelection SupportedTextSelection
{
get { return System.Windows.Automation.SupportedTextSelection.None; }
}
public ITextRangeProvider RangeFromAnnotation(IRawElementProviderSimple annotation)
{
if (annotation == null)
{
throw new ArgumentNullException();
}
return new MockTextRangeProvider(this, "fromAnnotation");
}
public ITextRangeProvider GetCaretRange(out bool isActive)
{
isActive = true;
return new MockTextRangeProvider(this, "caret");
}
#endregion
#region ITextChildProvider
public IRawElementProviderSimple TextContainer
{
get { return this; }
}
public ITextRangeProvider TextRange
{
get { return RangeFromChild(this); }
}
#endregion
}
/// <summary>
/// A very simple mock object for a text range
/// </summary>
public class MockTextRangeProvider :
ITextRangeProvider
{
public MockTextRangeProvider(MockPatternProvider mockObject, string text)
{
this.mockObject = mockObject;
this.text = text;
}
private MockPatternProvider mockObject;
private string text;
#region ITextRangeProvider
public ITextRangeProvider Clone()
{
throw new NotImplementedException();
}
public bool Compare(ITextRangeProvider range)
{
throw new NotImplementedException();
}
public int CompareEndpoints(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, ITextRangeProvider targetRange, System.Windows.Automation.Text.TextPatternRangeEndpoint targetEndpoint)
{
throw new NotImplementedException();
}
public void ExpandToEnclosingUnit(System.Windows.Automation.Text.TextUnit unit)
{
throw new NotImplementedException();
}
public ITextRangeProvider FindAttribute(int attribute, object value, bool backward)
{
throw new NotImplementedException();
}
public ITextRangeProvider FindText(string text, bool backward, bool ignoreCase)
{
throw new NotImplementedException();
}
public object GetAttributeValue(int attribute)
{
throw new NotImplementedException();
}
public double[] GetBoundingRectangles()
{
throw new NotImplementedException();
}
public IRawElementProviderSimple GetEnclosingElement()
{
throw new NotImplementedException();
}
public string GetText(int maxLength)
{
if (maxLength < 0)
{
return this.text;
}
else
{
return this.text.Substring(0, maxLength);
}
}
public int Move(System.Windows.Automation.Text.TextUnit unit, int count)
{
throw new NotImplementedException();
}
public int MoveEndpointByUnit(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, System.Windows.Automation.Text.TextUnit unit, int count)
{
throw new NotImplementedException();
}
public void MoveEndpointByRange(System.Windows.Automation.Text.TextPatternRangeEndpoint endpoint, ITextRangeProvider targetRange, System.Windows.Automation.Text.TextPatternRangeEndpoint targetEndpoint)
{
throw new NotImplementedException();
}
public void Select()
{
throw new NotImplementedException();
}
public void AddToSelection()
{
throw new NotImplementedException();
}
public void RemoveFromSelection()
{
throw new NotImplementedException();
}
public void ScrollIntoView(bool alignToTop)
{
throw new NotImplementedException();
}
public IRawElementProviderSimple[] GetChildren()
{
throw new NotImplementedException();
}
#endregion
}
/// <summary>
/// Summary description for ClientSideProvidersTest
/// </summary>
[TestFixture]
public class MockPatternTests
{
private IntPtr targetHwnd;
private AutomationElement mockObject;
[SetUp]
public void MyTestInitialize()
{
// Find the taskbar, which will be our target
AutomationElement taskBar = AutomationElementTest.GetTaskbar();
this.targetHwnd = (IntPtr)taskBar.Current.NativeWindowHandle;
// Register a client side provider
ClientSideProviderDescription provider = new ClientSideProviderDescription(
new ClientSideProviderFactoryCallback(MockPatternProvider.MockPatternFactory), "Shell_TrayWnd");
ClientSideProviderDescription[] providers = new ClientSideProviderDescription[1] { provider };
ClientSettings.RegisterClientSideProviders(providers);
// Get the overridden element
this.mockObject = AutomationElement.FromHandle(this.targetHwnd);
Assert.IsNotNull(this.mockObject);
}
[TearDown]
public void MyTestCleanup()
{
// Restore the status quo ante
ClientSettings.RegisterClientSideProviders(new ClientSideProviderDescription[0]);
}
[Test]
public void AnnotationPatternTest()
{
CheckWin8();
// Get the annotation pattern
object patternAsObj;
AnnotationPattern pattern;
mockObject.TryGetCurrentPattern(AnnotationPattern.Pattern, out patternAsObj);
Assert.IsNotNull(patternAsObj);
pattern = (AnnotationPattern)patternAsObj;
// Test it
Assert.AreEqual(AnnotationType.Comment, pattern.Current.AnnotationTypeId);
Assert.AreEqual("Comment", pattern.Current.AnnotationTypeName);
Assert.AreEqual("John Doe", pattern.Current.Author);
Assert.AreEqual("July 4, 1776", pattern.Current.DateTime);
Assert.IsTrue(Automation.Compare(this.mockObject, pattern.Current.Target));
}
[Test]
public void StylesPatternTest()
{
CheckWin8();
// Get the pattern
StylesPattern pattern = (StylesPattern)mockObject.GetCurrentPattern(StylesPattern.Pattern);
// Test it
Assert.AreEqual(StyleId.Heading5, pattern.Current.StyleId);
Assert.AreEqual("Heading #5", pattern.Current.StyleName);
Assert.AreEqual("pinstriped", pattern.Current.FillPatternStyle);
Assert.AreEqual(0x00FF00, pattern.Current.FillColor);
Assert.AreEqual(0x0000FF, pattern.Current.FillPatternColor);
Assert.AreEqual("dodecahedron", pattern.Current.Shape);
Assert.AreEqual("prop1=a;prop2=b", pattern.Current.ExtendedProperties);
}
[Test]
public void SpreadsheetPatternTest()
{
CheckWin8();
// Get the pattern
SpreadsheetPattern pattern = (SpreadsheetPattern)mockObject.GetCurrentPattern(SpreadsheetPattern.Pattern);
// Test it
AutomationElement result = pattern.GetItemByName("primary");
Assert.IsNotNull(result);
Assert.IsTrue(Automation.Compare(this.mockObject, result));
Assert.IsNull(pattern.GetItemByName("secondary"));
}
[Test]
public void SpreadsheetItemPatternTest()
{
CheckWin8();
// Get the pattern
SpreadsheetItemPattern pattern = (SpreadsheetItemPattern)mockObject.GetCurrentPattern(SpreadsheetItemPattern.Pattern);
// Test it
Assert.AreEqual("E=mc^2", pattern.Current.Formula);
AutomationElement [] annotationObjects = pattern.Current.GetAnnotationObjects();
Assert.AreEqual(2, annotationObjects.Length);
Assert.IsTrue(Automation.Compare(this.mockObject, annotationObjects[0]));
Assert.IsTrue(Automation.Compare(this.mockObject, annotationObjects[1]));
AnnotationType[] annotationTypes = pattern.Current.GetAnnotationTypes();
Assert.AreEqual(2, annotationTypes.Length);
Assert.AreEqual(AnnotationType.SpellingError, annotationTypes[0]);
Assert.AreEqual(AnnotationType.GrammarError, annotationTypes[1]);
}
[Test]
// Not sure why this one is not working -- it crashes on call into the mock Transform2
public void TransformPattern2Test()
{
CheckWin8();
// Get the pattern
System.Diagnostics.Debug.WriteLine(String.Format("Pattern ID is {0}", TransformPattern2.Pattern.Id));
TransformPattern2 pattern = (TransformPattern2)mockObject.GetCurrentPattern(TransformPattern2.Pattern);
// Test it
Assert.AreEqual(0.25, pattern.Current.ZoomMinimum);
Assert.AreEqual(4.0, pattern.Current.ZoomMaximum);
Assert.AreEqual(1.0, pattern.Current.ZoomLevel);
pattern.Zoom(2.0);
Assert.AreEqual(2.0, pattern.Current.ZoomLevel);
try
{
pattern.Zoom(10.0);
Assert.Fail("Expected InvalidOperationException");
}
catch (InvalidOperationException)
{
}
catch (Exception)
{
Assert.Fail("Expected InvalidOperationException");
}
pattern.ZoomByUnit(ZoomUnit.LargeDecrement);
Assert.AreEqual(1.75, pattern.Current.ZoomLevel);
pattern.ZoomByUnit(ZoomUnit.NoAmount);
Assert.AreEqual(1.75, pattern.Current.ZoomLevel);
}
[Test]
public void DragPatternTest()
{
CheckWin8();
// Get the pattern
DragPattern pattern = (DragPattern)mockObject.GetCurrentPattern(DragPattern.Pattern);
// Test it
Assert.AreEqual(true, pattern.Current.IsGrabbed);
Assert.AreEqual("Copy", pattern.Current.DropEffect);
Assert.AreEqual(2, pattern.Current.DropEffects.Length);
Assert.AreEqual("Copy", pattern.Current.DropEffects[0]);
Assert.AreEqual("Move", pattern.Current.DropEffects[1]);
AutomationElement[] grabbedItems = pattern.Current.GrabbedItems;
Assert.AreEqual(2, grabbedItems.Length);
Assert.IsTrue(Automation.Compare(this.mockObject, grabbedItems[0]));
Assert.IsTrue(Automation.Compare(this.mockObject, grabbedItems[1]));
}
[Test]
public void DropTargetPatternTest()
{
CheckWin8();
// Get the pattern
DropTargetPattern pattern = (DropTargetPattern)mockObject.GetCurrentPattern(DropTargetPattern.Pattern);
// Test it
Assert.AreEqual("Copy", pattern.Current.DropTargetEffect);
Assert.AreEqual(2, pattern.Current.DropTargetEffects.Length);
Assert.AreEqual("Copy", pattern.Current.DropTargetEffects[0]);
Assert.AreEqual("Move", pattern.Current.DropTargetEffects[1]);
}
[Test]
public void TextPattern2Test()
{
CheckWin8();
// Get the pattern
TextPattern2 pattern = (TextPattern2)mockObject.GetCurrentPattern(TextPattern2.Pattern);
// Test it
System.Windows.Automation.Text.TextPatternRange annotationRange;
try
{
annotationRange = pattern.RangeFromAnnotation(null);
Assert.Fail("Expected ArgumentNullException");
}
catch (ArgumentNullException)
{
}
catch (Exception)
{
Assert.Fail("Expected ArgumentNullException");
}
annotationRange = pattern.RangeFromAnnotation(this.mockObject);
Assert.IsNotNull(annotationRange);
Assert.AreEqual("fromAnnotation", annotationRange.GetText(-1));
bool isActive;
System.Windows.Automation.Text.TextPatternRange caretRange;
caretRange = pattern.GetCaretRange(out isActive);
Assert.AreEqual(true, isActive);
Assert.IsNotNull(caretRange);
Assert.AreEqual("caret", caretRange.GetText(-1));
}
[Test]
public void TextChildPatternTest()
{
CheckWin8();
// Get the pattern
TextChildPattern pattern = (TextChildPattern)mockObject.GetCurrentPattern(TextChildPattern.Pattern);
// Test it
AutomationElement container = pattern.TextContainer;
Assert.IsTrue(Automation.Compare(this.mockObject, container));
System.Windows.Automation.Text.TextPatternRange childRange;
childRange = pattern.TextRange;
Assert.IsNotNull(childRange);
Assert.AreEqual("fromChild", childRange.GetText(-1));
}
private void CheckWin8()
{
var win8version = new Version(6, 2, 9200, 0);
if (Environment.OSVersion.Version < win8version)
Assert.Inconclusive("These features only available on Windows 8, can't test them here");
}
}
}