Files
Terminal.Gui/Tests/UnitTests/Text/AutocompleteTests.cs
Tig 3e2eebfd2c Fixes #4057 - MASSIVE! Fully implements ColorScheme->Scheme + VisualRole + Colors.->SchemeManager. (#4062)
* touching publish.yml

* ColorScheme->Scheme

* ColorScheme->Scheme 2

* Prototype of GetAttributeForRole

* Badly broke CM

* Further Badly broke CM

* Refactored CM big-time. View still broken

* All unit test pass again. Tons added. CM is still WIP, but Schemes is not mostly refactored and working.

* Actually:
All unit test pass again.
Tons added.
CM is still WIP, but Schemes is not mostly refactored and working.

* Bug fixes.
DeepMemberWiseClone cleanup

* Further cleanup of Scope<T>, ConfigProperty, etc.

* Made ConfigManager thread safe.

* WIP: Broken

* WIP: new deep clone impl

* WIP: new deep clone impl is done. Now fixing CM

* WIP:
- config.md
- Working on AOT clean up
- Core CM is broken; but known.

* WIP

* Merged.
Removed CM from Application.Init

* WIP

* More WIP; Less broke

* All CM unit tests pass... Not sure if it actually works though

* All unit tests pass... Themes are broken though in UI Cat

* CM Ready for review?

* Fixed failures due to TextStyles PR

* Working on Scheme/Attribute

* Working on Scheme/Attribute 2

* Working on Scheme/Attribute 3

* Working on Scheme/Attribute 4

* Working on Scheme/Attribute 5

* Working on Scheme/Attribute 6

* Added test to show how awful memory usage is

* Improved schema. Updated config.json

* Nade Scope<T> concurrentdictionary and added test to prove

* Made Themes ConcrurrentDictionary. Added bunches of tests

* Code cleanup

* Code cleanup 2

* Code cleanup 3

* Tweaking Scheme

* ClearJsonErrors

* ClearJsonErrors2

* Updated Attribute API

* It all (mostly) works!

* Skip odd unit test

* Messed with Themes

* Theme tweaks

* Code reorg. New .md stuff

* Fixed Enabled. Added mock driver

* Fixed a bunch of View.Enabled related issues

* Scheme -> Get/SetScheme()

* Cleanup

* Cleanup2

* Broke something

* Fixed everything

* Made CM.Enable better

* Text Style Scenario

* Added comments

* Fixed UI Catalog Theme Changing

* Fixed more dynamic CM update stuff

* Warning cleanup

* New Default Theme

* fixed unit test

* Refactoring Scheme and Attribute to fix inheritance

* more unit tests

* ConfigProperty is not updating schemes correctly

* All unit tests pass.
Code cleanup

* All unit tests pass.
Code cleanup2

* Fixed unit tests

* Upgraded TextField and TextView

* Fixed TextView !Enabled bug

* More updates to TextView. More unit tests for SchemeManager

* Upgraded CharMap

* API docs

* Fixe HexView API

* upgrade HexView

* Fixed shortcut KeyView

* Fixed more bugs. Added new themes

* updated themes

* upgraded Border

* Fixed themes memory usage...mostly

* Fixed themes memory usage...mostly2

* Fixed themes memory usage...2

* Fixed themes memory usage...3

* Added new colors

* Fixed GetHardCodedConfig bug

* Added Themes Scenario - WIP

* Added Themes Scenario

* Tweaked Themes Scenario

* Code cleanup

* Fixed json schmea

* updated deepdives

* updated deepdives

* Tweaked Themes Scenario

* Made Schemes a concurrent dict

* Test cleanup

* Thread safe ConfigProperty tests

* trying to make things more thread safe

* more trying to make things more thread safe

* Fixing bugs in shadowview

* Fixing bugs in shadowview 2

* Refactored GetViewsUnderMouse to GetViewsUnderLocation etc...

* Fixed dupe unit tests?

* Added better description of layout and coordiantes to deep dive

* Added better description of layout and coordiantes to deep dive

* Modified tests that call v2.AddTimeout; they were returning true which means restart the timer!
This was causing mac/linux unit test failures.
I think

* Fixed auto scheme.
Broke TextView/TextField selection

* Realized Attribute.IsExplicitlySet is stupid; just use nullable

* Fixed Attribute. Simplified. MOre theme testing

* Updated themes again

* GetViewsUnderMouse to GetViewsUnderLocation broke TransparentMouse.

* Fixing mouseunder bugs

* rewriting...

* All working again.
Shadows are now slick as snot.
GetViewsUnderLocation is rewritten to actually work and be readable.
Tons more low-level unit tests.
Margin is now actually ViewportSettings.Transparent.

* Code cleanup

* Code cleanup

* Code cleanup of color apis

* Fixed Hover/Highlight

* Update Examples/UICatalog/Scenarios/AllViewsTester.cs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update Examples/UICatalog/Scenarios/CharacterMap/CharacterMap.cs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update Examples/UICatalog/Scenarios/Clipping.cs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Fixed race condition?

* reverted

* Simplified Attribute API by removing events from SetAttributeForRole

* Removed recursion from GetViewsAtLocation

* Removed unneeded code

* Code clean up.
Fixed Scheme bug.

* reverted temporary disable

* Adjusted scheme algo

* Upgraded TextValidateField

* Fixed TextValidate bugs

* Tweaks

* Frameview rounded border by default

* API doc cleanup

* Readme fix

* Addressed tznind feeback

* Fixed more unit test issues by protecting Application statics from being set if Application.Initialized is not true

* Fixed more unit test issues by protecting Application statics from being set if Application.Initialized is not true 2

* cleanup

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-05-29 14:08:48 -06:00

303 lines
13 KiB
C#

using System.Text.RegularExpressions;
using UnitTests;
using Xunit.Abstractions;
namespace Terminal.Gui.TextTests;
public class AutocompleteTests (ITestOutputHelper output)
{
[Fact]
[AutoInitShutdown]
public void CursorLeft_CursorRight_Mouse_Button_Pressed_Does_Not_Show_Popup ()
{
var tv = new TextView { Width = 50, Height = 5, Text = "This a long line and against TextView." };
var g = (SingleWordSuggestionGenerator)tv.Autocomplete.SuggestionGenerator;
g.AllSuggestions = Regex.Matches (tv.Text, "\\w+")
.Select (s => s.Value)
.Distinct ()
.ToList ();
Toplevel top = new ();
top.Add (tv);
RunState rs = Application.Begin (top);
for (var i = 0; i < 7; i++)
{
Assert.True (tv.NewKeyDownEvent (Key.CursorRight));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
if (i < 4 || i > 5)
{
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This a long line and against TextView.",
output
);
}
else
{
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This a long line and against TextView.
and
against ",
output
);
}
}
Assert.True (
tv.NewMouseEvent (
new () { Position = new (6, 0), Flags = MouseFlags.Button1Pressed }
)
);
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This a long line and against TextView.
and
against ",
output
);
Assert.True (tv.NewKeyDownEvent (Key.G));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This ag long line and against TextView.
against ",
output
);
Assert.True (tv.NewKeyDownEvent (Key.CursorLeft));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This ag long line and against TextView.
against ",
output
);
Assert.True (tv.NewKeyDownEvent (Key.CursorLeft));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This ag long line and against TextView.
against ",
output
);
Assert.True (tv.NewKeyDownEvent (Key.CursorLeft));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This ag long line and against TextView.",
output
);
for (var i = 0; i < 3; i++)
{
Assert.True (tv.NewKeyDownEvent (Key.CursorRight));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This ag long line and against TextView.
against ",
output
);
}
Assert.True (tv.NewKeyDownEvent (Key.Backspace));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This a long line and against TextView.
and
against ",
output
);
Assert.True (tv.NewKeyDownEvent (Key.N));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This an long line and against TextView.
and ",
output
);
Assert.True (tv.NewKeyDownEvent (Key.CursorRight));
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
DriverAssert.AssertDriverContentsWithFrameAre (
@"
This an long line and against TextView.",
output
);
top.Dispose ();
}
[Fact]
[AutoInitShutdown]
public void KeyBindings_Command ()
{
var tv = new TextView { Width = 10, Height = 2, Text = " Fortunately super feature." };
Toplevel top = new ();
top.Add (tv);
Application.Begin (top);
Assert.Equal (Point.Empty, tv.CursorPosition);
Assert.NotNull (tv.Autocomplete);
var g = (SingleWordSuggestionGenerator)tv.Autocomplete.SuggestionGenerator;
Assert.Empty (g.AllSuggestions);
g.AllSuggestions = Regex.Matches (tv.Text, "\\w+")
.Select (s => s.Value)
.Distinct ()
.ToList ();
Assert.Equal (3, g.AllSuggestions.Count);
Assert.Equal ("Fortunately", g.AllSuggestions [0]);
Assert.Equal ("super", g.AllSuggestions [1]);
Assert.Equal ("feature", g.AllSuggestions [^1]);
Assert.Equal (0, tv.Autocomplete.SelectedIdx);
Assert.Empty (tv.Autocomplete.Suggestions);
Assert.True (tv.NewKeyDownEvent (Key.F.WithShift));
top.Draw ();
Assert.Equal ("F Fortunately super feature.", tv.Text);
Assert.Equal (new (1, 0), tv.CursorPosition);
Assert.Equal (2, tv.Autocomplete.Suggestions.Count);
Assert.Equal ("Fortunately", tv.Autocomplete.Suggestions [0].Replacement);
Assert.Equal ("feature", tv.Autocomplete.Suggestions [^1].Replacement);
Assert.Equal (0, tv.Autocomplete.SelectedIdx);
Assert.Equal ("Fortunately", tv.Autocomplete.Suggestions [tv.Autocomplete.SelectedIdx].Replacement);
Assert.True (tv.NewKeyDownEvent (Key.CursorDown));
top.Draw ();
Assert.Equal ("F Fortunately super feature.", tv.Text);
Assert.Equal (new (1, 0), tv.CursorPosition);
Assert.Equal (2, tv.Autocomplete.Suggestions.Count);
Assert.Equal ("Fortunately", tv.Autocomplete.Suggestions [0].Replacement);
Assert.Equal ("feature", tv.Autocomplete.Suggestions [^1].Replacement);
Assert.Equal (1, tv.Autocomplete.SelectedIdx);
Assert.Equal ("feature", tv.Autocomplete.Suggestions [tv.Autocomplete.SelectedIdx].Replacement);
Assert.True (tv.NewKeyDownEvent (Key.CursorDown));
top.Draw ();
Assert.Equal ("F Fortunately super feature.", tv.Text);
Assert.Equal (new (1, 0), tv.CursorPosition);
Assert.Equal (2, tv.Autocomplete.Suggestions.Count);
Assert.Equal ("Fortunately", tv.Autocomplete.Suggestions [0].Replacement);
Assert.Equal ("feature", tv.Autocomplete.Suggestions [^1].Replacement);
Assert.Equal (0, tv.Autocomplete.SelectedIdx);
Assert.Equal ("Fortunately", tv.Autocomplete.Suggestions [tv.Autocomplete.SelectedIdx].Replacement);
Assert.True (tv.NewKeyDownEvent (Key.CursorUp));
top.Draw ();
Assert.Equal ("F Fortunately super feature.", tv.Text);
Assert.Equal (new (1, 0), tv.CursorPosition);
Assert.Equal (2, tv.Autocomplete.Suggestions.Count);
Assert.Equal ("Fortunately", tv.Autocomplete.Suggestions [0].Replacement);
Assert.Equal ("feature", tv.Autocomplete.Suggestions [^1].Replacement);
Assert.Equal (1, tv.Autocomplete.SelectedIdx);
Assert.Equal ("feature", tv.Autocomplete.Suggestions [tv.Autocomplete.SelectedIdx].Replacement);
Assert.True (tv.NewKeyDownEvent (Key.CursorUp));
top.Draw ();
Assert.Equal ("F Fortunately super feature.", tv.Text);
Assert.Equal (new (1, 0), tv.CursorPosition);
Assert.Equal (2, tv.Autocomplete.Suggestions.Count);
Assert.Equal ("Fortunately", tv.Autocomplete.Suggestions [0].Replacement);
Assert.Equal ("feature", tv.Autocomplete.Suggestions [^1].Replacement);
Assert.Equal (0, tv.Autocomplete.SelectedIdx);
Assert.Equal ("Fortunately", tv.Autocomplete.Suggestions [tv.Autocomplete.SelectedIdx].Replacement);
Assert.True (tv.Autocomplete.Visible);
top.Draw ();
Assert.True (tv.NewKeyDownEvent (new (tv.Autocomplete.CloseKey)));
Assert.Equal ("F Fortunately super feature.", tv.Text);
Assert.Equal (new (1, 0), tv.CursorPosition);
Assert.Empty (tv.Autocomplete.Suggestions);
Assert.Equal (3, g.AllSuggestions.Count);
Assert.False (tv.Autocomplete.Visible);
tv.PositionCursor ();
Assert.True (tv.NewKeyDownEvent (new (tv.Autocomplete.Reopen)));
Assert.Equal ("F Fortunately super feature.", tv.Text);
Assert.Equal (new (1, 0), tv.CursorPosition);
Assert.Equal (2, tv.Autocomplete.Suggestions.Count);
Assert.Equal (3, g.AllSuggestions.Count);
Assert.True (tv.NewKeyDownEvent (new (tv.Autocomplete.SelectionKey)));
tv.PositionCursor ();
Assert.Equal ("Fortunately Fortunately super feature.", tv.Text);
Assert.Equal (new (11, 0), tv.CursorPosition);
Assert.Empty (tv.Autocomplete.Suggestions);
Assert.Equal (3, g.AllSuggestions.Count);
Assert.False (tv.Autocomplete.Visible);
top.Dispose ();
}
[Fact]
public void Test_GenerateSuggestions_Simple ()
{
var ac = new TextViewAutocomplete ();
((SingleWordSuggestionGenerator)ac.SuggestionGenerator).AllSuggestions =
new () { "fish", "const", "Cobble" };
var tv = new TextView ();
tv.InsertText ("co");
ac.HostControl = tv;
ac.GenerateSuggestions (
new (
Cell.ToCellList (tv.Text),
2
)
);
Assert.Equal (2, ac.Suggestions.Count);
Assert.Equal ("const", ac.Suggestions [0].Title);
Assert.Equal ("Cobble", ac.Suggestions [1].Title);
}
[Fact]
public void TestSettingSchemeOnAutocomplete ()
{
var tv = new TextView ();
// to begin with we should be using the default menu scheme
Assert.Same (SchemeManager.GetSchemes () ["Menu"], tv.Autocomplete.Scheme);
// allocate a new custom scheme
tv.Autocomplete.Scheme = new ()
{
Normal = new (Color.Black, Color.Blue), Focus = new (Color.Black, Color.Cyan)
};
// should be separate instance
Assert.NotSame (SchemeManager.GetSchemes () ["Menu"], tv.Autocomplete.Scheme);
// with the values we set on it
Assert.Equal (new (Color.Black), tv.Autocomplete.Scheme.Normal.Foreground);
Assert.Equal (new (Color.Blue), tv.Autocomplete.Scheme.Normal.Background);
Assert.Equal (new (Color.Black), tv.Autocomplete.Scheme.Focus.Foreground);
Assert.Equal (new (Color.Cyan), tv.Autocomplete.Scheme.Focus.Background);
}
}