-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathDialogHostTests.cs
More file actions
454 lines (378 loc) · 14.9 KB
/
DialogHostTests.cs
File metadata and controls
454 lines (378 loc) · 14.9 KB
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
using System.ComponentModel;
using System.Threading;
using System.Windows.Threading;
namespace MaterialDesignThemes.Wpf.Tests;
public class DialogHostTests : IDisposable
{
private readonly DialogHost _dialogHost;
public DialogHostTests()
{
_dialogHost = new DialogHost();
_dialogHost.ApplyDefaultStyle();
_dialogHost.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));
}
public void Dispose()
{
_dialogHost.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
}
[StaFact]
public void CanOpenAndCloseDialogWithIsOpen()
{
_dialogHost.IsOpen = true;
DialogSession? session = _dialogHost.CurrentSession;
Assert.False(session?.IsEnded);
_dialogHost.IsOpen = false;
Assert.False(_dialogHost.IsOpen);
Assert.Null(_dialogHost.CurrentSession);
Assert.True(session?.IsEnded);
}
[StaFact]
public async Task CanOpenAndCloseDialogWithShowMethod()
{
var id = Guid.NewGuid();
_dialogHost.Identifier = id;
object? result = await DialogHost.Show("Content", id,
new DialogOpenedEventHandler(((sender, args) => { args.Session.Close(42); })));
Assert.Equal(42, result);
Assert.False(_dialogHost.IsOpen);
}
[StaFact]
public async Task CanOpenDialogWithShowMethodAndCloseWithIsOpen()
{
var id = Guid.NewGuid();
_dialogHost.Identifier = id;
object? result = await DialogHost.Show("Content", id,
new DialogOpenedEventHandler(((sender, args) => { _dialogHost.IsOpen = false; })));
Assert.Null(result);
Assert.False(_dialogHost.IsOpen);
}
[StaFact]
public async Task CanCloseDialogWithRoutedEvent()
{
Guid closeParameter = Guid.NewGuid();
Task<object?> showTask = _dialogHost.ShowDialog("Content");
DialogSession? session = _dialogHost.CurrentSession;
Assert.False(session?.IsEnded);
DialogHost.CloseDialogCommand.Execute(closeParameter, _dialogHost);
Assert.False(_dialogHost.IsOpen);
Assert.Null(_dialogHost.CurrentSession);
Assert.True(session?.IsEnded);
Assert.Equal(closeParameter, await showTask);
}
[StaFact]
public async Task DialogHostExposesSessionAsProperty()
{
var id = Guid.NewGuid();
_dialogHost.Identifier = id;
await DialogHost.Show("Content", id,
new DialogOpenedEventHandler(((sender, args) =>
{
Assert.True(ReferenceEquals(args.Session, _dialogHost.CurrentSession));
args.Session.Close();
})));
}
[StaFact]
public async Task CannotShowDialogWhileItIsAlreadyOpen()
{
var id = Guid.NewGuid();
_dialogHost.Identifier = id;
await DialogHost.Show("Content", id,
new DialogOpenedEventHandler((async (sender, args) =>
{
var ex = await Assert.ThrowsAsync<InvalidOperationException>(() => DialogHost.Show("Content", id));
args.Session.Close();
Assert.Equal("DialogHost is already open.", ex.Message);
})));
}
[StaFact]
public async Task WhenNoDialogsAreOpenItThrows()
{
var id = Guid.NewGuid();
_dialogHost.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
var ex = await Assert.ThrowsAsync<InvalidOperationException>(() => DialogHost.Show("Content", id));
Assert.Equal("No loaded DialogHost instances.", ex.Message);
}
[StaFact]
public async Task WhenNoDialogsMatchIdentifierItThrows()
{
var id = Guid.NewGuid();
var ex = await Assert.ThrowsAsync<InvalidOperationException>(() => DialogHost.Show("Content", id));
Assert.Equal($"No loaded DialogHost have an {nameof(DialogHost.Identifier)} property matching dialogIdentifier ('{id}') argument.", ex.Message);
}
[StaFact]
public async Task WhenMultipleDialogHostsHaveTheSameIdentifierItThrows()
{
var id = Guid.NewGuid();
_dialogHost.Identifier = id;
var otherDialogHost = new DialogHost { Identifier = id };
otherDialogHost.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));
var ex = await Assert.ThrowsAsync<InvalidOperationException>(() => DialogHost.Show("Content", id));
otherDialogHost.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
Assert.Equal("Multiple viable DialogHosts. Specify a unique Identifier on each DialogHost, especially where multiple Windows are a concern.", ex.Message);
}
[StaFact]
public async Task WhenNoIdentifierIsSpecifiedItUsesSingleDialogHost()
{
bool isOpen = false;
await DialogHost.Show("Content", new DialogOpenedEventHandler(((sender, args) =>
{
isOpen = _dialogHost.IsOpen;
args.Session.Close();
})));
Assert.True(isOpen);
}
[StaFact]
public async Task WhenContentIsNullItThrows()
{
var ex = await Assert.ThrowsAsync<ArgumentNullException>(() => DialogHost.Show(null!));
Assert.Equal("content", ex.ParamName);
}
[StaFact]
[Description("Issue 1212")]
public async Task WhenContentIsUpdatedClosingEventHandlerIsInvoked()
{
int closeInvokeCount = 0;
void ClosingHandler(object s, DialogClosingEventArgs e)
{
closeInvokeCount++;
if (closeInvokeCount == 1)
{
e.Cancel();
}
}
var dialogTask = DialogHost.Show("Content", ClosingHandler);
_dialogHost.CurrentSession?.Close("FirstResult");
_dialogHost.CurrentSession?.Close("SecondResult");
object? result = await dialogTask;
Assert.Equal("SecondResult", result);
Assert.Equal(2, closeInvokeCount);
}
[StaFact]
public async Task WhenCancellingClosingEventClosedEventHandlerIsNotInvoked()
{
int closingInvokeCount = 0;
void ClosingHandler(object s, DialogClosingEventArgs e)
{
closingInvokeCount++;
if (closingInvokeCount == 1)
{
e.Cancel();
}
}
int closedInvokeCount = 0;
void ClosedHandler(object s, DialogClosedEventArgs e)
{
closedInvokeCount++;
}
var dialogTask = DialogHost.Show("Content", null, ClosingHandler, ClosedHandler);
_dialogHost.CurrentSession?.Close("FirstResult");
_dialogHost.CurrentSession?.Close("SecondResult");
object? result = await dialogTask;
Assert.Equal("SecondResult", result);
Assert.Equal(2, closingInvokeCount);
Assert.Equal(1, closedInvokeCount);
}
[StaFact]
[Description("Issue 1328")]
public async Task WhenDoubleClickAwayDialogCloses()
{
_dialogHost.CloseOnClickAway = true;
Grid contentCover = _dialogHost.FindVisualChild<Grid>(DialogHost.ContentCoverGridName);
int closingCount = 0;
Task shownDialog = _dialogHost.ShowDialog("Content", new DialogClosingEventHandler((sender, args) =>
{
closingCount++;
}));
contentCover.RaiseEvent(new MouseButtonEventArgs(Mouse.PrimaryDevice, 1, MouseButton.Left)
{
RoutedEvent = UIElement.MouseLeftButtonUpEvent
});
contentCover.RaiseEvent(new MouseButtonEventArgs(Mouse.PrimaryDevice, 1, MouseButton.Left)
{
RoutedEvent = UIElement.MouseLeftButtonUpEvent
});
await shownDialog;
Assert.Equal(1, closingCount);
}
[StaFact]
[Description("Issue 1618")]
public void WhenDialogHostIsUnloadedIsOpenRemainsTrue()
{
_dialogHost.IsOpen = true;
_dialogHost.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
Assert.True(_dialogHost.IsOpen);
}
[StaFact]
[Description("Issue 1750")]
public async Task WhenSettingIsOpenToFalseItReturnsClosingParameterToShow()
{
Guid closeParameter = Guid.NewGuid();
Task<object?> showTask = _dialogHost.ShowDialog("Content");
_dialogHost.CurrentSession!.CloseParameter = closeParameter;
_dialogHost.IsOpen = false;
Assert.Equal(closeParameter, await showTask);
}
[StaFact]
[Description("Issue 1750")]
public async Task WhenClosingDialogReturnValueCanBeSpecifiedInClosingEventHandler()
{
Guid closeParameter = Guid.NewGuid();
Task<object?> showTask = _dialogHost.ShowDialog("Content", (object sender, DialogClosingEventArgs args) =>
{
args.Session.CloseParameter = closeParameter;
});
DialogHost.CloseDialogCommand.Execute(null, _dialogHost);
Assert.Equal(closeParameter, await showTask);
}
[StaFact]
public async Task WhenClosingDialogReturnValueCanBeSpecifiedInClosedEventHandler()
{
Guid closeParameter = Guid.NewGuid();
Task<object?> showTask = _dialogHost.ShowDialog("Content", (sender, args) => { }, (sender, args) => { }, (object sender, DialogClosedEventArgs args) =>
{
args.Session.CloseParameter = closeParameter;
});
DialogHost.CloseDialogCommand.Execute(null, _dialogHost);
Assert.Equal(closeParameter, await showTask);
}
[StaFact]
[Description("Pull Request 2029")]
public void WhenClosingDialogItThrowsWhenNoInstancesLoaded()
{
_dialogHost.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
var ex = Assert.Throws<InvalidOperationException>(() => DialogHost.Close(null!));
Assert.Equal("No loaded DialogHost instances.", ex.Message);
}
[StaFact]
[Description("Pull Request 2029")]
public void WhenClosingDialogWithInvalidIdentifierItThrowsWhenNoMatchingInstances()
{
object id = Guid.NewGuid();
var ex = Assert.Throws<InvalidOperationException>(() => DialogHost.Close(id));
Assert.Equal($"No loaded DialogHost have an Identifier property matching dialogIdentifier ('{id}') argument.", ex.Message);
}
[StaFact]
[Description("Pull Request 2029")]
public void WhenClosingDialogWithMultipleDialogHostsItThrowsTooManyMatchingInstances()
{
var secondInstance = new DialogHost();
try
{
secondInstance.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));
var ex = Assert.Throws<InvalidOperationException>(() => DialogHost.Close(null!));
Assert.Equal("Multiple viable DialogHosts. Specify a unique Identifier on each DialogHost, especially where multiple Windows are a concern.", ex.Message);
}
finally
{
secondInstance.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
}
}
[StaFact]
[Description("Pull Request 2029")]
public void WhenClosingDialogThatIsNotOpenItThrowsDialogNotOpen()
{
var ex = Assert.Throws<InvalidOperationException>(() => DialogHost.Close(null!));
Assert.Equal("DialogHost is not open.", ex.Message);
}
[StaFact]
[Description("Pull Request 2029")]
public void WhenClosingDialogWithParameterItPassesParameterToHandlers()
{
object parameter = Guid.NewGuid();
object? closingParameter = null;
object? closedParameter = null;
_dialogHost.DialogClosing += DialogClosing;
_dialogHost.DialogClosed += DialogClosed;
_dialogHost.IsOpen = true;
DialogHost.Close(null, parameter);
Assert.Equal(parameter, closingParameter);
Assert.Equal(parameter, closedParameter);
void DialogClosing(object sender, DialogClosingEventArgs eventArgs)
{
closingParameter = eventArgs.Parameter;
}
void DialogClosed(object sender, DialogClosedEventArgs eventArgs)
{
closedParameter = eventArgs.Parameter;
}
}
[StaFact]
public void WhenOpenDialogsAreOpenIsExist()
{
object id = Guid.NewGuid();
_dialogHost.Identifier = id;
bool isExist = false;
_ = _dialogHost.ShowDialog("Content", new DialogOpenedEventHandler((sender, arg) =>
{
isExist = DialogHost.IsDialogOpen(id);
}));
Assert.True(isExist);
DialogHost.Close(id);
Assert.False(DialogHost.IsDialogOpen(id));
}
[StaFact]
[Description("Issue 2262")]
public async Task WhenOnlySingleDialogHostIdentifierIsNullItShowsDialog()
{
DialogHost dialogHost2 = new();
dialogHost2.ApplyDefaultStyle();
dialogHost2.Identifier = Guid.NewGuid();
try
{
dialogHost2.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));
Task showTask = DialogHost.Show("Content");
Assert.True(DialogHost.IsDialogOpen(null));
Assert.False(DialogHost.IsDialogOpen(dialogHost2.Identifier));
DialogHost.Close(null);
await showTask;
}
finally
{
dialogHost2.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
}
}
[StaFact]
[Description("Issue 2844")]
public void GetDialogSession_ShouldAllowAccessFromMultipleUIThreads()
{
DialogHost? dialogHost = null;
DialogHost? dialogHostOnOtherUiThread = null;
Dispatcher? otherUiThreadDispatcher = null;
try
{
// Arrange
Guid dialogHostIdentifier = Guid.NewGuid();
Guid dialogHostOnOtherUiThreadIdentifier = Guid.NewGuid();
dialogHost = new DialogHost();
ManualResetEventSlim sync1 = new();
// Load dialogHost on current UI thread
dialogHost.ApplyDefaultStyle();
dialogHost.Identifier = dialogHostIdentifier;
dialogHost.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));
// Load dialogHostOnOtherUiThread on different UI thread
var thread = new Thread(() =>
{
dialogHostOnOtherUiThread = new();
dialogHostOnOtherUiThread.ApplyDefaultStyle();
dialogHostOnOtherUiThread.Identifier = dialogHostOnOtherUiThreadIdentifier;
dialogHostOnOtherUiThread.RaiseEvent(new RoutedEventArgs(FrameworkElement.LoadedEvent));
otherUiThreadDispatcher = Dispatcher.CurrentDispatcher;
sync1.Set();
Dispatcher.Run();
});
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
sync1.Wait();
// Act & Assert
DialogHost.GetDialogSession(dialogHostIdentifier);
DialogHost.GetDialogSession(dialogHostOnOtherUiThreadIdentifier);
}
finally
{
// Cleanup
otherUiThreadDispatcher?.InvokeShutdown();
dialogHost?.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
dialogHostOnOtherUiThread?.RaiseEvent(new RoutedEventArgs(FrameworkElement.UnloadedEvent));
}
}
}