forked from microsoft/microsoft-ui-xaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeakTests.cs
206 lines (169 loc) · 7.38 KB
/
LeakTests.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System;
using System.Collections.Generic;
using MUXControlsTestApp.Utilities;
using Windows.UI.Xaml.Controls;
using Common;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Media;
#if USING_TAEF
using WEX.TestExecution;
using WEX.TestExecution.Markup;
using WEX.Logging.Interop;
#else
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting.Logging;
#endif
using ScrollView = Microsoft.UI.Xaml.Controls.ScrollView;
using RatingControl = Microsoft.UI.Xaml.Controls.RatingControl;
using ColorPicker = Microsoft.UI.Xaml.Controls.ColorPicker;
using NavigationView = Microsoft.UI.Xaml.Controls.NavigationView;
using ParallaxView = Microsoft.UI.Xaml.Controls.ParallaxView;
using ScrollPresenter = Microsoft.UI.Xaml.Controls.Primitives.ScrollPresenter;
using TreeView = Microsoft.UI.Xaml.Controls.TreeView;
using TreeViewNode = Microsoft.UI.Xaml.Controls.TreeViewNode;
namespace Windows.UI.Xaml.Tests.MUXControls.ApiTests
{
[TestClass]
public class LeakTests : ApiTestBase
{
void CheckLeaks(Dictionary<string, WeakReference> objects)
{
foreach (var pair in objects)
{
Log.Comment("Checking if object {0} has been collected", pair.Key);
object target = pair.Value.Target;
if (target != null)
{
Verify.DisableVerifyFailureExceptions = true; // throwing exceptions makes running this in TDP harder
Verify.Fail(String.Format("Object {0} is still alive when it should not be.", target));
Verify.DisableVerifyFailureExceptions = false;
}
}
objects.Clear();
}
[TestMethod]
public void VerifySimpleCollectionScenario()
{
var objects = new Dictionary<string, WeakReference>();
RunOnUIThread.Execute(() =>
{
var rating = new RatingControl();
objects["Rating"] = new WeakReference(rating);
var colorPicker = new ColorPicker();
objects["ColorPicker"] = new WeakReference(colorPicker);
var navigationView = new NavigationView();
objects["NavigationView"] = new WeakReference(navigationView);
var parallaxView = new ParallaxView();
objects["ParallaxView"] = new WeakReference(parallaxView);
var scrollPresenter = new ScrollPresenter();
objects["ScrollPresenter"] = new WeakReference(scrollPresenter);
if (PlatformConfiguration.IsOsVersionGreaterThanOrEqual(OSVersion.Redstone2))
{
var scrollView = new ScrollView();
objects["ScrollView"] = new WeakReference(scrollView);
}
});
IdleSynchronizer.Wait();
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
RunOnUIThread.Execute(() => CheckLeaks(objects));
}
[TestMethod]
public void VerifyEventCycleScenario()
{
if (!PlatformConfiguration.IsOsVersionGreaterThanOrEqual(OSVersion.Redstone2))
{
Log.Warning("Reference tracking is only supported on RS2 and greater...skipping.");
return;
}
var objects = new Dictionary<string, WeakReference>();
// Create EventCycle but don't add it to the tree. Demonstrates cycle with Events.
Log.Comment("Create EventCycle but don't add it to the tree. Demonstrates cycle with Events");
RunOnUIThread.Execute(() =>
{
var eventCycle = new MUXControlsTestApp.EventCycleTest(false);
objects["EventCycle"] = new WeakReference(eventCycle);
});
IdleSynchronizer.Wait();
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
Log.Comment("Verify that EventCycleTest object got collected.");
// Verify that EventCycle got collected.
RunOnUIThread.Execute(() => CheckLeaks(objects));
IdleSynchronizer.Wait();
// Now make another EventCycle object but this time add it to the tree.
Log.Comment("Now make another EventCycle object but this time add it to the tree.");
RunOnUIThread.Execute(() =>
{
var eventCycle = new MUXControlsTestApp.EventCycleTest();
Content = eventCycle;
objects["EventCycle"] = new WeakReference(eventCycle);
Content.UpdateLayout();
// After templates have been expanded, now remove it. After the dust has settled we expect that things have been GC'd.
Log.Comment("After templates have been expanded, now remove it. After the dust has settled we expect that things have been GC'd.");
Content = null;
});
IdleSynchronizer.Wait();
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
RunOnUIThread.Execute(() => CheckLeaks(objects));
}
[TestMethod]
public void VerifyTreeViewHasNoLeak()
{
var objects = new Dictionary<string, WeakReference>();
RunOnUIThread.Execute(() =>
{
var tree = new TreeView();
objects["Tree"] = new WeakReference(tree);
for (int i = 1; i <= 3; i++)
{
var parentName = "Node " + i;
var parentNode = new TreeViewNode() { Content = parentName };
objects[parentName] = new WeakReference(parentNode);
var childName = "Node " + i + ".1";
var childNode = new TreeViewNode() { Content = childName };
objects[childName] = new WeakReference(childNode);
parentNode.Children.Add(childNode);
tree.RootNodes.Add(parentNode);
}
Content = tree;
Content.UpdateLayout();
objects["TreeViewList"] = new WeakReference(FindVisualChildByName(tree, "ListControl"));
tree = null;
Content = null;
});
IdleSynchronizer.Wait();
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
RunOnUIThread.Execute(() => CheckLeaks(objects));
}
public static DependencyObject FindVisualChildByName(FrameworkElement parent, string name)
{
if (parent.Name == name)
{
return parent;
}
int childrenCount = VisualTreeHelper.GetChildrenCount(parent);
for (int i = 0; i < childrenCount; i++)
{
FrameworkElement childAsFE = VisualTreeHelper.GetChild(parent, i) as FrameworkElement;
if (childAsFE != null)
{
DependencyObject result = FindVisualChildByName(childAsFE, name);
if (result != null)
{
return result;
}
}
}
return null;
}
}
}