ButtonTests.cs 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770
  1. using System;
  2. using Avalonia.Controls.Presenters;
  3. using Avalonia.Controls.Templates;
  4. using Avalonia.Controls.UnitTests.Utils;
  5. using Avalonia.Data;
  6. using Avalonia.Input;
  7. using Avalonia.Interactivity;
  8. using Avalonia.Layout;
  9. using Avalonia.Media;
  10. using Avalonia.Platform;
  11. using Avalonia.Rendering;
  12. using Avalonia.Threading;
  13. using Avalonia.UnitTests;
  14. using Moq;
  15. using Xunit;
  16. using MouseButton = Avalonia.Input.MouseButton;
  17. namespace Avalonia.Controls.UnitTests
  18. {
  19. public class ButtonTests : ScopedTestBase
  20. {
  21. private MouseTestHelper _helper = new MouseTestHelper();
  22. [Fact]
  23. public void Button_Is_Disabled_When_Command_Is_Disabled()
  24. {
  25. var command = new TestCommand(false);
  26. var target = new Button
  27. {
  28. Command = command,
  29. };
  30. var root = new TestRoot { Child = target };
  31. Assert.False(target.IsEffectivelyEnabled);
  32. command.IsEnabled = true;
  33. Assert.True(target.IsEffectivelyEnabled);
  34. command.IsEnabled = false;
  35. Assert.False(target.IsEffectivelyEnabled);
  36. }
  37. [Fact]
  38. public void Button_Is_Disabled_When_Command_Is_Enabled_But_IsEnabled_Is_False()
  39. {
  40. var command = new TestCommand(true);
  41. var target = new Button
  42. {
  43. IsEnabled = false,
  44. Command = command,
  45. };
  46. var root = new TestRoot { Child = target };
  47. Assert.False(((IInputElement)target).IsEffectivelyEnabled);
  48. }
  49. [Fact]
  50. public void Button_Is_Disabled_When_Bound_Command_Doesnt_Exist()
  51. {
  52. var target = new Button
  53. {
  54. [!Button.CommandProperty] = new Binding("Command"),
  55. };
  56. Assert.True(target.IsEnabled);
  57. Assert.False(target.IsEffectivelyEnabled);
  58. }
  59. [Fact]
  60. public void Button_Is_Disabled_When_Bound_Command_Is_Removed()
  61. {
  62. var viewModel = new
  63. {
  64. Command = new TestCommand(true),
  65. };
  66. var target = new Button
  67. {
  68. DataContext = viewModel,
  69. [!Button.CommandProperty] = new Binding("Command"),
  70. };
  71. Assert.True(target.IsEnabled);
  72. Assert.True(target.IsEffectivelyEnabled);
  73. target.DataContext = null;
  74. Assert.True(target.IsEnabled);
  75. Assert.False(target.IsEffectivelyEnabled);
  76. }
  77. [Fact]
  78. public void Button_Is_Enabled_When_Bound_Command_Is_Added()
  79. {
  80. var viewModel = new
  81. {
  82. Command = new TestCommand(true),
  83. };
  84. var target = new Button
  85. {
  86. DataContext = new object(),
  87. [!Button.CommandProperty] = new Binding("Command"),
  88. };
  89. var root = new TestRoot { Child = target };
  90. Dispatcher.UIThread.RunJobs(DispatcherPriority.Loaded);
  91. Assert.True(target.IsEnabled);
  92. Assert.False(target.IsEffectivelyEnabled);
  93. target.DataContext = viewModel;
  94. Assert.True(target.IsEnabled);
  95. Assert.True(target.IsEffectivelyEnabled);
  96. }
  97. [Fact]
  98. public void Button_Is_Disabled_When_Disabled_Bound_Command_Is_Added()
  99. {
  100. var viewModel = new
  101. {
  102. Command = new TestCommand(false),
  103. };
  104. var target = new Button
  105. {
  106. DataContext = new object(),
  107. [!Button.CommandProperty] = new Binding("Command"),
  108. };
  109. Assert.True(target.IsEnabled);
  110. Assert.False(target.IsEffectivelyEnabled);
  111. target.DataContext = viewModel;
  112. Assert.True(target.IsEnabled);
  113. Assert.False(target.IsEffectivelyEnabled);
  114. }
  115. [Fact]
  116. public void Button_Raises_Click()
  117. {
  118. var renderer = new Mock<IHitTester>();
  119. var pt = new Point(50, 50);
  120. renderer.Setup(r => r.HitTest(It.IsAny<Point>(), It.IsAny<Visual>(), It.IsAny<Func<Visual, bool>>()))
  121. .Returns<Point, Visual, Func<Visual, bool>>((p, r, f) =>
  122. r.Bounds.Contains(p) ? new Visual[] { r } : new Visual[0]);
  123. using var _ = UnitTestApplication.Start(TestServices.StyledWindow);
  124. var root = new Window() { HitTesterOverride = renderer.Object };
  125. var target = new Button()
  126. {
  127. Width = 100,
  128. Height = 100,
  129. VerticalAlignment = VerticalAlignment.Top,
  130. HorizontalAlignment = HorizontalAlignment.Left
  131. };
  132. root.Content = target;
  133. root.Show();
  134. bool clicked = false;
  135. target.Click += (s, e) => clicked = true;
  136. RaisePointerEntered(target);
  137. RaisePointerMove(target, pt);
  138. RaisePointerPressed(target, 1, MouseButton.Left, pt);
  139. Assert.Equal(_helper.Captured, target);
  140. RaisePointerReleased(target, MouseButton.Left, pt);
  141. Assert.Equal(_helper.Captured, null);
  142. Assert.True(clicked);
  143. }
  144. [Fact]
  145. public void Button_Does_Not_Raise_Click_When_PointerReleased_Outside()
  146. {
  147. var root = new TestRoot();
  148. var target = new Button()
  149. {
  150. Width = 100,
  151. Height = 100
  152. };
  153. root.Child = target;
  154. bool clicked = false;
  155. target.Click += (s, e) => clicked = true;
  156. RaisePointerEntered(target);
  157. RaisePointerMove(target, new Point(50, 50));
  158. RaisePointerPressed(target, 1, MouseButton.Left, new Point(50, 50));
  159. RaisePointerExited(target);
  160. Assert.Equal(_helper.Captured, target);
  161. RaisePointerReleased(target, MouseButton.Left, new Point(200, 50));
  162. Assert.Equal(_helper.Captured, null);
  163. Assert.False(clicked);
  164. }
  165. [Fact]
  166. public void Button_With_RenderTransform_Raises_Click()
  167. {
  168. var renderer = new Mock<IHitTester>();
  169. var pt = new Point(150, 50);
  170. renderer.Setup(r => r.HitTest(It.IsAny<Point>(), It.IsAny<Visual>(), It.IsAny<Func<Visual, bool>>()))
  171. .Returns<Point, Visual, Func<Visual, bool>>((p, r, f) =>
  172. r.Bounds.Contains(p.Transform(r.RenderTransform.Value.Invert())) ?
  173. new Visual[] { r } : new Visual[0]);
  174. using var _ = UnitTestApplication.Start(TestServices.StyledWindow);
  175. var root = new Window() { HitTesterOverride = renderer.Object };
  176. var target = new Button()
  177. {
  178. Width = 100,
  179. Height = 100,
  180. VerticalAlignment = VerticalAlignment.Top,
  181. HorizontalAlignment = HorizontalAlignment.Left,
  182. RenderTransform = new TranslateTransform { X = 100, Y = 0 }
  183. };
  184. root.Content = target;
  185. root.Show();
  186. //actual bounds of button should be 100,0,100,100 x -> translated 100 pixels
  187. //so mouse with x=150 coordinates should trigger click
  188. //button shouldn't count on bounds to calculate pointer is in the over or not, but
  189. //on avalonia event system, as renderer hit test will properly calculate whether to send
  190. //mouse over events to button based on rendered bounds
  191. //note: button also may have not rectangular shape and only renderer hit testing is reliable
  192. bool clicked = false;
  193. target.Click += (s, e) => clicked = true;
  194. RaisePointerEntered(target);
  195. RaisePointerMove(target, pt);
  196. RaisePointerPressed(target, 1, MouseButton.Left, pt);
  197. Assert.Equal(_helper.Captured, target);
  198. RaisePointerReleased(target, MouseButton.Left, pt);
  199. Assert.Equal(_helper.Captured, null);
  200. Assert.True(clicked);
  201. }
  202. [Fact]
  203. public void Button_Does_Not_Subscribe_To_Command_CanExecuteChanged_Until_Added_To_Logical_Tree()
  204. {
  205. var command = new TestCommand(true);
  206. var target = new Button
  207. {
  208. Command = command,
  209. };
  210. Assert.Equal(0, command.SubscriptionCount);
  211. }
  212. [Fact]
  213. public void Button_Subscribes_To_Command_CanExecuteChanged_When_Added_To_Logical_Tree()
  214. {
  215. var command = new TestCommand(true);
  216. var target = new Button { Command = command };
  217. var root = new TestRoot { Child = target };
  218. Assert.Equal(1, command.SubscriptionCount);
  219. }
  220. [Fact]
  221. public void Button_Unsubscribes_From_Command_CanExecuteChanged_When_Removed_From_Logical_Tree()
  222. {
  223. var command = new TestCommand(true);
  224. var target = new Button { Command = command };
  225. var root = new TestRoot { Child = target };
  226. root.Child = null;
  227. Assert.Equal(0, command.SubscriptionCount);
  228. }
  229. [Fact]
  230. public void Button_Invokes_CanExecute_When_CommandParameter_Changed()
  231. {
  232. var target = new Button();
  233. var raised = 0;
  234. target.Click += (s, e) => ++raised;
  235. target.RaiseEvent(new AccessKeyEventArgs("b", false));
  236. Assert.Equal(1, raised);
  237. }
  238. [Fact]
  239. public void Raises_Click_When_AccessKey_Raised()
  240. {
  241. var raised = 0;
  242. var ah = new AccessKeyHandler();
  243. var kd = new KeyboardDevice();
  244. using var app = UnitTestApplication.Start(TestServices.StyledWindow
  245. .With(
  246. accessKeyHandler: ah,
  247. keyboardDevice: () => kd)
  248. );
  249. var impl = CreateMockTopLevelImpl();
  250. var command = new TestCommand(p => p is bool value && value, _ => raised++);
  251. Button target;
  252. var root = new TestTopLevel(impl.Object)
  253. {
  254. Template = CreateTemplate(),
  255. Content = target = new Button
  256. {
  257. Content = "_A",
  258. Command = command,
  259. Template = new FuncControlTemplate<Button>((parent, scope) =>
  260. {
  261. return new ContentPresenter
  262. {
  263. Name = "PART_ContentPresenter",
  264. [~ContentPresenter.ContentProperty] = new TemplateBinding(Button.ContentProperty),
  265. [~ContentPresenter.ContentTemplateProperty] = new TemplateBinding(Button.ContentProperty),
  266. RecognizesAccessKey = true,
  267. }.RegisterInNameScope(scope);
  268. })
  269. },
  270. };
  271. root.ApplyTemplate();
  272. root.Presenter.UpdateChild();
  273. target.ApplyTemplate();
  274. target.Presenter.UpdateChild();
  275. kd.SetFocusedElement(target, NavigationMethod.Unspecified, KeyModifiers.None);
  276. Dispatcher.UIThread.RunJobs(DispatcherPriority.Loaded);
  277. var accessKey = Key.A;
  278. target.CommandParameter = true;
  279. RaiseAccessKey(root, accessKey);
  280. Assert.Equal(1, raised);
  281. target.CommandParameter = false;
  282. RaiseAccessKey(root, accessKey);
  283. Assert.Equal(1, raised);
  284. static FuncControlTemplate<TestTopLevel> CreateTemplate()
  285. {
  286. return new FuncControlTemplate<TestTopLevel>((x, scope) =>
  287. new ContentPresenter
  288. {
  289. Name = "PART_ContentPresenter",
  290. [~ContentPresenter.ContentProperty] = new TemplateBinding(ContentControl.ContentProperty),
  291. [~ContentPresenter.ContentTemplateProperty] = new TemplateBinding(ContentControl.ContentTemplateProperty)
  292. }.RegisterInNameScope(scope));
  293. }
  294. static Mock<ITopLevelImpl> CreateMockTopLevelImpl(bool setupProperties = false)
  295. {
  296. var topLevel = new Mock<ITopLevelImpl>();
  297. if (setupProperties)
  298. topLevel.SetupAllProperties();
  299. topLevel.Setup(x => x.RenderScaling).Returns(1);
  300. topLevel.Setup(x => x.Compositor).Returns(RendererMocks.CreateDummyCompositor());
  301. return topLevel;
  302. }
  303. static void RaiseAccessKey(IInputElement target, Key accessKey)
  304. {
  305. KeyDown(target, Key.LeftAlt);
  306. KeyDown(target, accessKey, KeyModifiers.Alt);
  307. KeyUp(target, accessKey, KeyModifiers.Alt);
  308. KeyUp(target, Key.LeftAlt);
  309. }
  310. static void KeyDown(IInputElement target, Key key, KeyModifiers modifiers = KeyModifiers.None)
  311. {
  312. target.RaiseEvent(new KeyEventArgs
  313. {
  314. RoutedEvent = InputElement.KeyDownEvent,
  315. Key = key,
  316. KeyModifiers = modifiers,
  317. });
  318. }
  319. static void KeyUp(IInputElement target, Key key, KeyModifiers modifiers = KeyModifiers.None)
  320. {
  321. target.RaiseEvent(new KeyEventArgs
  322. {
  323. RoutedEvent = InputElement.KeyUpEvent,
  324. Key = key,
  325. KeyModifiers = modifiers,
  326. });
  327. }
  328. }
  329. [Fact]
  330. public void Button_Invokes_Doesnt_Execute_When_Button_Disabled()
  331. {
  332. var target = new Button();
  333. var raised = 0;
  334. target.IsEnabled = false;
  335. target.Click += (s, e) => ++raised;
  336. target.RaiseEvent(new AccessKeyEventArgs("b", false));
  337. Assert.Equal(0, raised);
  338. }
  339. [Fact]
  340. public void Button_IsDefault_Works()
  341. {
  342. using (UnitTestApplication.Start(TestServices.StyledWindow))
  343. {
  344. var raised = 0;
  345. var target = new Button();
  346. var window = new Window { Content = target };
  347. window.Show();
  348. target.Click += (s, e) => ++raised;
  349. target.IsDefault = false;
  350. window.RaiseEvent(CreateKeyDownEvent(Key.Enter));
  351. Assert.Equal(0, raised);
  352. target.IsDefault = true;
  353. window.RaiseEvent(CreateKeyDownEvent(Key.Enter));
  354. Assert.Equal(1, raised);
  355. target.IsDefault = false;
  356. window.RaiseEvent(CreateKeyDownEvent(Key.Enter));
  357. Assert.Equal(1, raised);
  358. target.IsDefault = true;
  359. window.RaiseEvent(CreateKeyDownEvent(Key.Enter));
  360. Assert.Equal(2, raised);
  361. window.Content = null;
  362. // To check if handler was raised on the button, when it's detached, we need to pass it as a source manually.
  363. window.RaiseEvent(CreateKeyDownEvent(Key.Enter, target));
  364. Assert.Equal(2, raised);
  365. }
  366. }
  367. [Fact]
  368. public void Button_IsDefault_Should_Not_Work_When_Button_Is_Not_Effectively_Visible()
  369. {
  370. using (UnitTestApplication.Start(TestServices.StyledWindow))
  371. {
  372. var raised = 0;
  373. var panel = new Panel();
  374. var target = new Button();
  375. panel.Children.Add(target);
  376. var window = new Window { Content = panel };
  377. window.Show();
  378. target.Click += (s, e) => ++raised;
  379. target.IsDefault = true;
  380. panel.IsVisible = false;
  381. window.RaiseEvent(CreateKeyDownEvent(Key.Enter));
  382. Assert.Equal(0, raised);
  383. }
  384. }
  385. [Fact]
  386. public void Button_IsCancel_Works()
  387. {
  388. using (UnitTestApplication.Start(TestServices.StyledWindow))
  389. {
  390. var raised = 0;
  391. var target = new Button();
  392. var window = new Window { Content = target };
  393. window.Show();
  394. target.Click += (s, e) => ++raised;
  395. target.IsCancel = false;
  396. window.RaiseEvent(CreateKeyDownEvent(Key.Escape));
  397. Assert.Equal(0, raised);
  398. target.IsCancel = true;
  399. window.RaiseEvent(CreateKeyDownEvent(Key.Escape));
  400. Assert.Equal(1, raised);
  401. target.IsCancel = false;
  402. window.RaiseEvent(CreateKeyDownEvent(Key.Escape));
  403. Assert.Equal(1, raised);
  404. target.IsCancel = true;
  405. window.RaiseEvent(CreateKeyDownEvent(Key.Escape));
  406. Assert.Equal(2, raised);
  407. window.Content = null;
  408. window.RaiseEvent(CreateKeyDownEvent(Key.Escape, target));
  409. Assert.Equal(2, raised);
  410. }
  411. }
  412. [Fact]
  413. public void Button_IsCancel_Should_Not_Work_When_Button_Is_Not_Effectively_Visible()
  414. {
  415. using (UnitTestApplication.Start(TestServices.StyledWindow))
  416. {
  417. var raised = 0;
  418. var panel = new Panel();
  419. var target = new Button();
  420. panel.Children.Add(target);
  421. var window = new Window { Content = panel };
  422. window.Show();
  423. target.Click += (s, e) => ++raised;
  424. target.IsCancel = true;
  425. panel.IsVisible = false;
  426. window.RaiseEvent(CreateKeyDownEvent(Key.Escape));
  427. Assert.Equal(0, raised);
  428. }
  429. }
  430. [Fact]
  431. public void Button_CommandParameter_Does_Not_Change_While_Execution()
  432. {
  433. var target = new Button();
  434. object lastParamenter = "A";
  435. var generator = new Random();
  436. var onlyOnce = false;
  437. var command = new TestCommand(parameter =>
  438. {
  439. if (!onlyOnce)
  440. {
  441. onlyOnce = true;
  442. target.CommandParameter = generator.Next();
  443. }
  444. lastParamenter = parameter;
  445. return true;
  446. },
  447. parameter =>
  448. {
  449. Assert.Equal(lastParamenter, parameter);
  450. });
  451. target.CommandParameter = lastParamenter;
  452. target.Command = command;
  453. var root = new TestRoot { Child = target };
  454. (target as IClickableControl).RaiseClick();
  455. }
  456. [Fact]
  457. void Should_Not_Fire_Click_Event_On_Space_Key_When_It_Is_Not_Focus()
  458. {
  459. using (UnitTestApplication.Start(TestServices.StyledWindow))
  460. {
  461. var raised = 0;
  462. var target = new TextBox();
  463. var button = new Button()
  464. {
  465. Content = target,
  466. };
  467. var window = new Window { Content = button };
  468. window.Show();
  469. button.Click += (s, e) => ++raised;
  470. target.Focus();
  471. target.RaiseEvent(CreateKeyDownEvent(Key.Space));
  472. target.RaiseEvent(CreateKeyUpEvent(Key.Space));
  473. Assert.Equal(0, raised);
  474. }
  475. }
  476. private KeyEventArgs CreateKeyDownEvent(Key key, Interactive source = null)
  477. {
  478. return new KeyEventArgs { RoutedEvent = InputElement.KeyDownEvent, Key = key, Source = source };
  479. }
  480. private KeyEventArgs CreateKeyUpEvent(Key key, Interactive source = null)
  481. {
  482. return new KeyEventArgs { RoutedEvent = InputElement.KeyUpEvent, Key = key, Source = source };
  483. }
  484. private void RaisePointerPressed(Button button, int clickCount, MouseButton mouseButton, Point position)
  485. {
  486. _helper.Down(button, mouseButton, position, clickCount: clickCount);
  487. }
  488. private void RaisePointerReleased(Button button, MouseButton mouseButton, Point pt)
  489. {
  490. _helper.Up(button, mouseButton, pt);
  491. }
  492. private void RaisePointerEntered(Button button)
  493. {
  494. _helper.Enter(button);
  495. }
  496. private void RaisePointerExited(Button button)
  497. {
  498. _helper.Leave(button);
  499. }
  500. private void RaisePointerMove(Button button, Point pos)
  501. {
  502. _helper.Move(button, pos);
  503. }
  504. [Fact]
  505. public void Button_LetterSpacing_Default_Value_Is_Zero()
  506. {
  507. var button = new Button();
  508. Assert.Equal(0, button.LetterSpacing);
  509. }
  510. [Fact]
  511. public void Button_LetterSpacing_Can_Be_Set_And_Retrieved()
  512. {
  513. var button = new Button { LetterSpacing = 2.5 };
  514. Assert.Equal(2.5, button.LetterSpacing);
  515. }
  516. [Fact]
  517. public void Button_LetterSpacing_Can_Be_Set_To_Negative_Value()
  518. {
  519. var button = new Button { LetterSpacing = -1.5 };
  520. Assert.Equal(-1.5, button.LetterSpacing);
  521. }
  522. [Fact]
  523. public void Button_LetterSpacing_Can_Be_Set_To_Zero()
  524. {
  525. var button = new Button { LetterSpacing = 5.0 };
  526. button.LetterSpacing = 0;
  527. Assert.Equal(0, button.LetterSpacing);
  528. }
  529. [Fact]
  530. public void Button_LetterSpacing_Propagates_To_ContentPresenter()
  531. {
  532. using (UnitTestApplication.Start(TestServices.StyledWindow))
  533. {
  534. var button = new Button
  535. {
  536. Content = "Test",
  537. LetterSpacing = 3.0
  538. };
  539. var root = new TestRoot { Child = button };
  540. button.ApplyTemplate();
  541. var presenter = button.Presenter;
  542. Assert.NotNull(presenter);
  543. Assert.Equal(3.0, presenter.LetterSpacing);
  544. }
  545. }
  546. [Fact]
  547. public void Button_LetterSpacing_Updates_ContentPresenter_When_Changed()
  548. {
  549. using (UnitTestApplication.Start(TestServices.StyledWindow))
  550. {
  551. var button = new Button
  552. {
  553. Content = "Test",
  554. LetterSpacing = 1.0
  555. };
  556. var root = new TestRoot { Child = button };
  557. button.ApplyTemplate();
  558. var presenter = button.Presenter;
  559. button.LetterSpacing = 5.0;
  560. Assert.Equal(5.0, presenter.LetterSpacing);
  561. }
  562. }
  563. [Fact]
  564. public void Button_LetterSpacing_Works_With_Large_Values()
  565. {
  566. var button = new Button { LetterSpacing = 100.0 };
  567. Assert.Equal(100.0, button.LetterSpacing);
  568. }
  569. [Fact]
  570. public void Button_LetterSpacing_Property_Inherits_Through_Visual_Tree()
  571. {
  572. using (UnitTestApplication.Start(TestServices.StyledWindow))
  573. {
  574. var button = new Button
  575. {
  576. Content = "Test",
  577. LetterSpacing = 2.0
  578. };
  579. var root = new TestRoot { Child = button };
  580. button.ApplyTemplate();
  581. button.Presenter?.UpdateChild();
  582. // Verify the property value is accessible on the presenter
  583. var presenter = button.Presenter;
  584. Assert.NotNull(presenter);
  585. Assert.Equal(2.0, presenter.LetterSpacing);
  586. }
  587. }
  588. [Fact]
  589. public void Button_LetterSpacing_Affects_TextBlock_Child_In_ContentPresenter()
  590. {
  591. using (UnitTestApplication.Start(TestServices.MockPlatformRenderInterface))
  592. {
  593. var button = new Button
  594. {
  595. Content = "Test Text",
  596. LetterSpacing = 3.5
  597. };
  598. var root = new TestRoot { Child = button };
  599. button.ApplyTemplate();
  600. button.Presenter?.UpdateChild();
  601. // Find the TextBlock that was created by ContentPresenter
  602. var presenter = button.Presenter;
  603. Assert.NotNull(presenter);
  604. var textBlock = presenter.Child as TextBlock;
  605. Assert.NotNull(textBlock);
  606. // Verify LetterSpacing inherited to the TextBlock
  607. Assert.Equal(3.5, textBlock.LetterSpacing);
  608. // Force a measure to create TextLayout
  609. textBlock.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
  610. // Verify the TextLayout actually has the LetterSpacing value
  611. var textLayout = textBlock.TextLayout;
  612. Assert.NotNull(textLayout);
  613. Assert.Equal(3.5, textLayout.LetterSpacing);
  614. }
  615. }
  616. private class TestTopLevel : TopLevel
  617. {
  618. private readonly ILayoutManager _layoutManager;
  619. public bool IsClosed { get; private set; }
  620. public TestTopLevel(ITopLevelImpl impl, ILayoutManager layoutManager = null)
  621. : base(impl)
  622. {
  623. _layoutManager = layoutManager ?? new LayoutManager(this);
  624. }
  625. private protected override ILayoutManager CreateLayoutManager() => _layoutManager;
  626. }
  627. }
  628. }