|
21 | 21 | using Color = Windows.UI.Color;
|
22 | 22 | using Point = Windows.Foundation.Point;
|
23 | 23 | using System.Runtime.InteropServices;
|
| 24 | +using Windows.Foundation; |
24 | 25 | using SamplesApp.UITests;
|
25 | 26 |
|
26 | 27 | namespace Uno.UI.RuntimeTests.Tests.Windows_UI_Xaml_Controls
|
@@ -935,6 +936,41 @@ public async Task When_Pointer_Tap()
|
935 | 936 | Assert.AreEqual(0, SUT.SelectionLength);
|
936 | 937 | }
|
937 | 938 |
|
| 939 | + [TestMethod] |
| 940 | + public async Task When_Pointer_Tap_After_Ending_Spaces() |
| 941 | + { |
| 942 | + using var _ = new TextBoxFeatureConfigDisposable(); |
| 943 | + |
| 944 | + var SUT = new TextBox |
| 945 | + { |
| 946 | + Width = 350, |
| 947 | + Text = "Hello world ", |
| 948 | + FontFamily = "Arial" // no Segoe UI on Linux, so we set something common |
| 949 | + }; |
| 950 | + |
| 951 | + WindowHelper.WindowContent = SUT; |
| 952 | + |
| 953 | + await WindowHelper.WaitForIdle(); |
| 954 | + await WindowHelper.WaitForLoaded(SUT); |
| 955 | + |
| 956 | + SUT.Focus(FocusState.Programmatic); |
| 957 | + await WindowHelper.WaitForIdle(); |
| 958 | + |
| 959 | + var injector = InputInjector.TryCreate() ?? throw new InvalidOperationException("Failed to init the InputInjector"); |
| 960 | + using var mouse = injector.GetMouse(); |
| 961 | + |
| 962 | + var bounds = SUT.GetAbsoluteBounds(); |
| 963 | + mouse.MoveTo(new Point(bounds.Right - 30, bounds.GetMidY())); |
| 964 | + await WindowHelper.WaitForIdle(); |
| 965 | + |
| 966 | + mouse.Press(); |
| 967 | + mouse.Release(); |
| 968 | + await WindowHelper.WaitForIdle(); |
| 969 | + |
| 970 | + Assert.AreEqual(SUT.Text.Length, SUT.SelectionStart); |
| 971 | + Assert.AreEqual(0, SUT.SelectionLength); |
| 972 | + } |
| 973 | + |
938 | 974 | [TestMethod]
|
939 | 975 | public async Task When_Pointer_Shift_Tap()
|
940 | 976 | {
|
|
0 commit comments