mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
* Fixes #2680. Make the TextView API more extensible. * Remove unnecessary using. * Add GetLine method. * Change RuneCell Attribute property to ColorScheme property. * Add LoadRuneCells method and unit test. * Add helper method to set all the Colors.ColorSchemes with the same attribute. * Change RuneCell to class. * Add IEquatable<RuneCell> interface. * Fix unit test. * Still fixing unit test. * Fixes #2688. ReadOnly TextView's broken scrolling after version update. * keyModifiers must be reset after key up was been processed. * Trying fix server unit test error. * Prevents throw an exception if RuneCell is null. * Still trying fix this unit test. * Cleaning code. * Fix when the RuneCell is null. * Fix throwing an exception if current column position is greater than the line length. * Fixes #2689. Autocomplete doesn't popup after typing the first character. * Fix Used on TextField. * Always use the original ColorScheme if RuneCell.ColorScheme is null. * Fix Used on TextView. * Add RuneCellEventArgs and draw colors events. * Add two more samples to the scenario. * Fix a bug which was causing unit tests with ColorScheme fail. * Fix a issue when WordWrap is true by always loading the old text. * Improves debugging in RuneCell. * WordWrap is now preserving the ColorScheme of the unwrapped lines. * Simplifying unit test. * Ensures the foreground and background colors are never the same if Used is false. * Remove nullable from the parameter. * Merge syntax highlighting of quotes and keywords together * Add IdxRow property into the RuneCellEventArgs. * Fix pos calculation on windows (where newline in Text is \r\n not \n) * Fix events not being cleared when toggling samples. * Change Undo and Redo to a public method. * Changes some methods names to be more explicit. * Call OnContentsChanged on needed methods and fix some more bugs. * Adds InheritsPreviousColorScheme to allow LoadRuneCells uses personalized color schemes. * Serializes and deserializes RuneCell to a .rce extension file. * Prevents throwing if column is bigger than the line. * Avoids create a color attribute without one of the foreground or background values. In Linux using -1 throws an exception. * Replace SetAllAttributesBasedOn method with a ColorScheme constructor. * Move RuneCell string extensions to TextView.cs * Reverted parameter name from cell to rune. * Change Row to UnwrappedPosition which provide the real unwrapped text position within the Col. * Add brackets to Undo and Redo methods. * Replace all the LoadXXX with Load and rely on the param type to differentiate. * Open a file inside a using. * Proves that the events run twice for WordWrap disabled and the enabled. * Remove GetColumns extension for RuneCell. * Add braces to Undo an Redo. * Change comment. * Add braces. * Delete remarks tag. * Explaining used color and ProcessInheritsPreviousColorScheme. * Fix comment. * Created a RuneCellTests.cs file. * Rename to StringToLinesOfRuneCells. * Make ToRuneCells private. --------- Co-authored-by: Thomas <tznind@dundee.ac.uk> Co-authored-by: Thomas Nind <31306100+tznind@users.noreply.github.com>
261 lines
7.9 KiB
C#
261 lines
7.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Terminal.Gui.TextTests {
|
|
public class AppendAutocompleteTests {
|
|
readonly ITestOutputHelper output;
|
|
|
|
public AppendAutocompleteTests (ITestOutputHelper output)
|
|
{
|
|
this.output = output;
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void TestAutoAppend_ShowThenAccept_MatchCase ()
|
|
{
|
|
var tf = GetTextFieldsInView ();
|
|
|
|
tf.Autocomplete = new AppendAutocomplete (tf);
|
|
var generator = (SingleWordSuggestionGenerator)tf.Autocomplete.SuggestionGenerator;
|
|
generator.AllSuggestions = new List<string> { "fish" };
|
|
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("", output);
|
|
|
|
tf.ProcessKey (new KeyEvent (Key.f, new KeyModifiers ()));
|
|
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
Application.Driver.SendKeys ('\t', ConsoleKey.Tab, false, false, false);
|
|
|
|
tf.Draw ();
|
|
TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("fish", tf.Text);
|
|
|
|
// Tab should autcomplete but not move focus
|
|
Assert.Same (tf, Application.Top.Focused);
|
|
|
|
// Second tab should move focus (nothing to autocomplete)
|
|
Application.Driver.SendKeys ('\t', ConsoleKey.Tab, false, false, false);
|
|
Assert.NotSame (tf, Application.Top.Focused);
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void TestAutoAppend_ShowThenAccept_CasesDiffer ()
|
|
{
|
|
var tf = GetTextFieldsInView ();
|
|
|
|
tf.Autocomplete = new AppendAutocomplete (tf);
|
|
var generator = (SingleWordSuggestionGenerator)tf.Autocomplete.SuggestionGenerator;
|
|
generator.AllSuggestions = new List<string> { "FISH" };
|
|
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("", output);
|
|
tf.ProcessKey (new KeyEvent (Key.m, new KeyModifiers ()));
|
|
tf.ProcessKey (new KeyEvent (Key.y, new KeyModifiers ()));
|
|
tf.ProcessKey (new KeyEvent (Key.Space, new KeyModifiers ()));
|
|
tf.ProcessKey (new KeyEvent (Key.f, new KeyModifiers ()));
|
|
|
|
// Even though there is no match on case we should still get the suggestion
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("my fISH", output);
|
|
Assert.Equal ("my f", tf.Text);
|
|
|
|
// When tab completing the case of the whole suggestion should be applied
|
|
Application.Driver.SendKeys ('\t', ConsoleKey.Tab, false, false, false);
|
|
tf.Draw ();
|
|
TestHelpers.AssertDriverContentsAre ("my FISH", output);
|
|
Assert.Equal ("my FISH", tf.Text);
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void TestAutoAppend_AfterCloseKey_NoAutocomplete ()
|
|
{
|
|
var tf = GetTextFieldsInViewSuggesting ("fish");
|
|
|
|
// f is typed and suggestion is "fish"
|
|
Application.Driver.SendKeys ('f', ConsoleKey.F, false, false, false);
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
// When cancelling autocomplete
|
|
Application.Driver.SendKeys ('e', ConsoleKey.Escape, false, false, false);
|
|
|
|
// Suggestion should disapear
|
|
tf.Draw ();
|
|
TestHelpers.AssertDriverContentsAre ("f", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
// Still has focus though
|
|
Assert.Same (tf, Application.Top.Focused);
|
|
|
|
// But can tab away
|
|
Application.Driver.SendKeys ('\t', ConsoleKey.Tab, false, false, false);
|
|
Assert.NotSame (tf, Application.Top.Focused);
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void TestAutoAppend_AfterCloseKey_ReapearsOnLetter ()
|
|
{
|
|
var tf = GetTextFieldsInViewSuggesting ("fish");
|
|
|
|
// f is typed and suggestion is "fish"
|
|
Application.Driver.SendKeys ('f', ConsoleKey.F, false, false, false);
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
// When cancelling autocomplete
|
|
Application.Driver.SendKeys ('e', ConsoleKey.Escape, false, false, false);
|
|
|
|
// Suggestion should disapear
|
|
tf.Draw ();
|
|
TestHelpers.AssertDriverContentsAre ("f", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
// Should reapear when you press next letter
|
|
Application.Driver.SendKeys ('i', ConsoleKey.I, false, false, false);
|
|
tf.Draw ();
|
|
// BUGBUG: v2 - I broke this test and don't have time to figure out why. @tznind - help!
|
|
//TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("fi", tf.Text);
|
|
}
|
|
|
|
[Theory, AutoInitShutdown]
|
|
[InlineData ("ffffffffffffffffffffffffff", "ffffffffff")]
|
|
[InlineData ("f234567890", "f234567890")]
|
|
[InlineData ("fisérables", "fisérables")]
|
|
public void TestAutoAppendRendering_ShouldNotOverspill (string overspillUsing, string expectRender)
|
|
{
|
|
var tf = GetTextFieldsInViewSuggesting (overspillUsing);
|
|
|
|
// f is typed we should only see 'f' up to size of View (10)
|
|
Application.Driver.SendKeys ('f', ConsoleKey.F, false, false, false);
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre (expectRender, output);
|
|
Assert.Equal ("f", tf.Text);
|
|
}
|
|
|
|
[Theory, AutoInitShutdown]
|
|
[InlineData (ConsoleKey.UpArrow)]
|
|
[InlineData (ConsoleKey.DownArrow)]
|
|
public void TestAutoAppend_CycleSelections (ConsoleKey cycleKey)
|
|
{
|
|
var tf = GetTextFieldsInViewSuggesting ("fish", "friend");
|
|
|
|
// f is typed and suggestion is "fish"
|
|
Application.Driver.SendKeys ('f', ConsoleKey.F, false, false, false);
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
// When cycling autocomplete
|
|
Application.Driver.SendKeys (' ', cycleKey, false, false, false);
|
|
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("friend", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
// Should be able to cycle in circles endlessly
|
|
Application.Driver.SendKeys (' ', cycleKey, false, false, false);
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void TestAutoAppend_NoRender_WhenNoMatch ()
|
|
{
|
|
var tf = GetTextFieldsInViewSuggesting ("fish");
|
|
|
|
// f is typed and suggestion is "fish"
|
|
Application.Driver.SendKeys ('f', ConsoleKey.F, false, false, false);
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
// x is typed and suggestion should disapear
|
|
Application.Driver.SendKeys ('x', ConsoleKey.F, false, false, false);
|
|
tf.Draw ();
|
|
TestHelpers.AssertDriverContentsAre ("fx", output);
|
|
Assert.Equal ("fx", tf.Text);
|
|
}
|
|
|
|
[Fact, AutoInitShutdown]
|
|
public void TestAutoAppend_NoRender_WhenCursorNotAtEnd ()
|
|
{
|
|
var tf = GetTextFieldsInViewSuggesting ("fish");
|
|
|
|
// f is typed and suggestion is "fish"
|
|
Application.Driver.SendKeys ('f', ConsoleKey.F, false, false, false);
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("fish", output);
|
|
Assert.Equal ("f", tf.Text);
|
|
|
|
// add a space then go back 1
|
|
Application.Driver.SendKeys (' ', ConsoleKey.Spacebar, false, false, false);
|
|
Application.Driver.SendKeys ('<', ConsoleKey.LeftArrow, false, false, false);
|
|
|
|
tf.Draw ();
|
|
TestHelpers.AssertDriverContentsAre ("f", output);
|
|
Assert.Equal ("f ", tf.Text);
|
|
}
|
|
|
|
|
|
private TextField GetTextFieldsInViewSuggesting (params string [] suggestions)
|
|
{
|
|
var tf = GetTextFieldsInView ();
|
|
|
|
tf.Autocomplete = new AppendAutocomplete (tf);
|
|
var generator = (SingleWordSuggestionGenerator)tf.Autocomplete.SuggestionGenerator;
|
|
generator.AllSuggestions = suggestions.ToList ();
|
|
|
|
tf.Draw ();
|
|
tf.PositionCursor ();
|
|
TestHelpers.AssertDriverContentsAre ("", output);
|
|
|
|
return tf;
|
|
}
|
|
|
|
private TextField GetTextFieldsInView ()
|
|
{
|
|
var tf = new TextField {
|
|
Width = 10
|
|
};
|
|
var tf2 = new TextField {
|
|
Y = 1,
|
|
Width = 10
|
|
};
|
|
|
|
var top = Application.Top;
|
|
top.Add (tf);
|
|
top.Add (tf2);
|
|
|
|
Application.Begin (top);
|
|
|
|
Assert.Same (tf, top.Focused);
|
|
|
|
return tf;
|
|
}
|
|
}
|
|
} |