| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448 |
- #nullable disable
- using System.Text;
- namespace ViewsTests;
- public class TextViewTests
- {
- [Fact]
- public void CloseFile_Throws_If_FilePath_Is_Null ()
- {
- var tv = new TextView ();
- Assert.Throws<ArgumentNullException> (() => tv.CloseFile ());
- }
- [Fact]
- public void ContentsChanged_Event_Fires_ClearHistoryChanges ()
- {
- var eventcount = 0;
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Width = 50, Height = 10, Text = text };
- tv.ContentsChanged += (s, e) => { eventcount++; };
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal (
- $"{Environment.NewLine}This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- var expectedEventCount = 1; // for ENTER key
- Assert.Equal (expectedEventCount, eventcount);
- tv.ClearHistoryChanges ();
- expectedEventCount = 2;
- Assert.Equal (expectedEventCount, eventcount);
- }
- [Fact]
- public void ContentsChanged_Event_Fires_LoadStream_By_Calling_HistoryText_Clear ()
- {
- var eventcount = 0;
- var tv = new TextView { Width = 50, Height = 10 };
- tv.ContentsChanged += (s, e) => { eventcount++; };
- var text = "This is the first line.\r\nThis is the second line.\r\n";
- tv.Load (new MemoryStream (Encoding.ASCII.GetBytes (text)));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}",
- tv.Text
- );
- Assert.Equal (1, eventcount);
- }
- [Fact]
- public void ContentsChanged_Event_Fires_On_LoadFile_By_Calling_HistoryText_Clear ()
- {
- var eventcount = 0;
- var tv = new TextView { Width = 50, Height = 10 };
- tv.BeginInit ();
- tv.EndInit ();
- tv.ContentsChanged += (s, e) => { eventcount++; };
- var fileName = "textview.txt";
- File.WriteAllText (fileName, "This is the first line.\r\nThis is the second line.\r\n");
- tv.Load (fileName);
- Assert.Equal (1, eventcount);
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}",
- tv.Text
- );
- }
- [Fact]
- public void GetRegion_StringFromRunes_Environment_NewLine ()
- {
- var tv = new TextView { Text = $"1{Environment.NewLine}2" };
- Assert.Equal ($"1{Environment.NewLine}2", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- tv.SelectAll ();
- Assert.Equal ($"1{Environment.NewLine}2", tv.Text);
- Assert.Equal ($"1{Environment.NewLine}2", tv.SelectedText);
- }
- [Fact]
- public void HistoryText_ClearHistoryChanges ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal (
- $"{Environment.NewLine}This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- tv.ClearHistoryChanges ();
- Assert.Equal (
- $"{Environment.NewLine}This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- Assert.False (tv.HasHistoryChanges);
- }
- [Fact]
- public void HistoryText_Exceptions ()
- {
- var ht = new HistoryText ();
- foreach (object ls in Enum.GetValues (typeof (TextEditingLineStatus)))
- {
- if ((TextEditingLineStatus)ls != TextEditingLineStatus.Original)
- {
- Assert.Throws<ArgumentException> (
- () => ht.Add (
- new List<List<Cell>> (),
- Point.Empty,
- (TextEditingLineStatus)ls
- )
- );
- }
- }
- Assert.Null (Record.Exception (() => ht.Add (new () { new () }, Point.Empty)));
- }
- [Fact]
- public void HistoryText_IsDirty_HasHistoryChanges ()
- {
- var tv = new TextView ();
- Assert.Equal ("", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.False (tv.IsDirty);
- Assert.False (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.D1));
- Assert.Equal ("1", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (1, 0), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal ($"1{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.D2));
- Assert.Equal ($"1{Environment.NewLine}2", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace));
- Assert.Equal ($"1{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace));
- Assert.Equal ("1", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (1, 0), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace));
- Assert.Equal ("", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- // IsDirty cannot be based on HasHistoryChanges because HasHistoryChanges is greater than 0
- // The only way is comparing from the original text
- Assert.False (tv.IsDirty);
- // Still true because HasHistoryChanges is greater than 0
- Assert.True (tv.HasHistoryChanges);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Changing_On_Middle_Clear_History_Forwards ()
- {
- var tv = new TextView ();
- Assert.True (tv.NewKeyDownEvent (Key.D1));
- Assert.Equal ("1", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (1, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.D2));
- Assert.Equal ("12", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (2, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.D3));
- Assert.Equal ("123", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (3, 0), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ("12", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (2, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.D4));
- Assert.Equal ("124", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (3, 0), tv.CursorPosition);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("124", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (3, 0), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Disabled_On_WordWrap ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.\n";
- var tv = new TextView { Width = 80, Height = 5, Text = text };
- Assert.False (tv.WordWrap);
- tv.WordWrap = true;
- tv.SelectionStartColumn = 12;
- tv.CursorPosition = new (12, 2);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal ($"This is the {Environment.NewLine}third line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.A));
- Assert.Equal ($"This is the {Environment.NewLine}athird line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine}third line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine}athird line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Ending_With_Newline_Multi_Line_Selected_Almost_All_Return_And_InsertText ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.\n";
- var tv = new TextView { Text = text };
- tv.SelectionStartColumn = 12;
- tv.CursorPosition = new (12, 2);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal ($"This is the {Environment.NewLine}third line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.A));
- Assert.Equal ($"This is the {Environment.NewLine}athird line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine}third line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.{Environment.NewLine}",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (12, 2), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine}third line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine}athird line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine}third line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.{Environment.NewLine}",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (12, 2), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine}third line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine}athird line.{Environment.NewLine}", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_First_Line_Selected_Return_And_InsertText ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- tv.SelectionStartColumn = 12;
- tv.CursorPosition = new (17, 0);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.A));
- Assert.Equal (
- $"This is the {Environment.NewLine}a line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (17, 0), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine}a line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (17, 0), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine}a line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_KillWordBackward ()
- {
- var text = "First line.\nSecond line.";
- var tv = new TextView { Text = text };
- Assert.True (tv.NewKeyDownEvent (Key.End.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (12, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (11, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second ", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (7, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace.WithCtrl));
- Assert.Equal ("First line.", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (11, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace.WithCtrl));
- Assert.Equal ("First line", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (10, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace.WithCtrl));
- Assert.Equal ("First ", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (6, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace.WithCtrl));
- Assert.Equal ("", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ("First ", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (6, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ("First line", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (10, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ("First line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (11, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second ", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (7, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (11, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (12, 1), tv.CursorPosition);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (11, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second ", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (7, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("First line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (11, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("First line", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (10, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("First ", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (6, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_KillWordForward ()
- {
- var text = "First line.\nSecond line.";
- var tv = new TextView { Text = text };
- Assert.True (tv.NewKeyDownEvent (Key.Delete.WithCtrl));
- Assert.Equal ($"line.{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Delete.WithCtrl));
- Assert.Equal ($".{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Delete.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Delete.WithCtrl));
- Assert.Equal ("Second line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Delete.WithCtrl));
- Assert.Equal ("line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Delete.WithCtrl));
- Assert.Equal (".", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Delete.WithCtrl));
- Assert.Equal ("", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (".", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ("line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ("Second line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($".{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"line.{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"line.{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($".{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}Second line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("Second line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (".", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Multi_Line_Selected_All_Return_And_InsertText ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- Assert.True (tv.NewKeyDownEvent (Key.End.WithCtrl.WithShift));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (23, 2), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal ($"{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.A));
- Assert.Equal ($"{Environment.NewLine}a", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (23, 2), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}a", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (23, 2), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"{Environment.NewLine}a", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (1, 1), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Multi_Line_Selected_DeleteCharLeft_All ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.False (tv.IsDirty);
- Assert.False (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.End.WithCtrl.WithShift));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.SelectedText
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (23, 2), tv.CursorPosition);
- Assert.Equal (70 + Environment.NewLine.Length * 2, tv.SelectedLength);
- Assert.False (tv.IsDirty);
- Assert.False (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.Backspace));
- Assert.Equal ("", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.Equal (0, tv.SelectedLength);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (23, 2), tv.CursorPosition);
- Assert.Equal (0, tv.SelectedLength);
- Assert.False (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.Equal (0, tv.SelectedLength);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Multi_Line_Selected_DeleteCharRight_All ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.False (tv.IsDirty);
- Assert.False (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.End.WithCtrl.WithShift));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.SelectedText
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (23, 2), tv.CursorPosition);
- Assert.Equal (70 + Environment.NewLine.Length * 2, tv.SelectedLength);
- Assert.False (tv.IsDirty);
- Assert.False (tv.HasHistoryChanges);
- Assert.True (tv.NewKeyDownEvent (Key.Delete));
- Assert.Equal ("", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.Equal (0, tv.SelectedLength);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (23, 2), tv.CursorPosition);
- Assert.Equal (0, tv.SelectedLength);
- Assert.False (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("", tv.Text);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.Equal (0, tv.SelectedLength);
- Assert.True (tv.IsDirty);
- Assert.True (tv.HasHistoryChanges);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Multiline_Selected_Tab_BackTab ()
- {
- var text = "First line.\nSecond line.\nThird line.";
- var tv = new TextView { Width = 80, Height = 5, Text = text };
- tv.SelectionStartColumn = 6;
- tv.CursorPosition = new (6, 2);
- Assert.True (tv.NewKeyDownEvent (Key.Tab));
- Assert.Equal ("First \tline.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (7, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Tab.WithShift));
- Assert.Equal ("First line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (6, 0), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ("First \tline.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (7, 0), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line.{Environment.NewLine}Third line.", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (6, 2), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("First \tline.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (7, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ("First line.", tv.Text);
- Assert.Equal (1, tv.Lines);
- Assert.Equal (new (6, 0), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Multiline_Simples_Tab_BackTab ()
- {
- var text = "First line.\nSecond line.\nThird line.";
- var tv = new TextView { Width = 80, Height = 5, Text = text };
- Assert.True (tv.NewKeyDownEvent (Key.Tab));
- Assert.Equal (
- $"\tFirst line.{Environment.NewLine}Second line.{Environment.NewLine}Third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (1, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.Tab.WithShift));
- Assert.Equal ($"First line.{Environment.NewLine}Second line.{Environment.NewLine}Third line.", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"\tFirst line.{Environment.NewLine}Second line.{Environment.NewLine}Third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (1, 0), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line.{Environment.NewLine}Third line.", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"\tFirst line.{Environment.NewLine}Second line.{Environment.NewLine}Third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (1, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"First line.{Environment.NewLine}Second line.{Environment.NewLine}Third line.", tv.Text);
- Assert.Equal (3, tv.Lines);
- Assert.Equal (Point.Empty, tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Single_Line_Selected_Return ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- tv.SelectionStartColumn = 12;
- tv.CursorPosition = new (17, 0);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (17, 0), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (17, 0), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Single_Second_Line_Selected_Return ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- tv.SelectionStartColumn = 12;
- tv.SelectionStartRow = 1;
- tv.CursorPosition = new (18, 1);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 2), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (18, 1), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 2), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (18, 1), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 2), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Single_Second_Line_Selected_Return_And_InsertText ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- tv.SelectionStartColumn = 12;
- tv.SelectionStartRow = 1;
- tv.CursorPosition = new (18, 1);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 2), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.A));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine}a line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (1, 2), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 2), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (18, 1), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 2), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine}a line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (1, 2), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 2), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (18, 1), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (0, 2), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the {Environment.NewLine}a line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (4, tv.Lines);
- Assert.Equal (new (1, 2), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Three_Line_Selected_Return ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- tv.SelectionStartColumn = 12;
- tv.CursorPosition = new (17, 2);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal ($"This is the {Environment.NewLine} line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (17, 2), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine} line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (17, 2), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal ($"This is the {Environment.NewLine} line.", tv.Text);
- Assert.Equal (2, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_Two_Line_Selected_Return ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- tv.SelectionStartColumn = 12;
- tv.CursorPosition = new (18, 1);
- Assert.True (tv.NewKeyDownEvent (Key.Enter));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (18, 1), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (18, 1), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- Assert.Equal (
- $"This is the {Environment.NewLine} line.{Environment.NewLine}This is the third line.",
- tv.Text
- );
- Assert.Equal (3, tv.Lines);
- Assert.Equal (new (0, 1), tv.CursorPosition);
- }
- [Fact]
- public void HistoryText_Undo_Redo_ApplyCellsAttribute ()
- {
- var text = "This is the first line.\nThis is the second line.\nThis is the third line.";
- var tv = new TextView { Text = text };
- tv.SelectionStartColumn = 12;
- tv.CursorPosition = new (18, 1);
- if (Environment.NewLine.Length == 2)
- {
- Assert.Equal (31, tv.SelectedLength);
- }
- else
- {
- Assert.Equal (30, tv.SelectedLength);
- }
- Assert.Equal ($"first line.{Environment.NewLine}This is the second", tv.SelectedText);
- Assert.Equal ($"first line.{Environment.NewLine}This is the second", Cell.ToString (tv.SelectedCellsList));
- Assert.Equal (new (18, 1), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- AssertNullAttribute ();
- tv.ApplyCellsAttribute (new (Color.Red, Color.Green));
- AssertRedGreenAttribute ();
- Assert.Equal (0, tv.SelectedLength);
- Assert.Equal ("", tv.SelectedText);
- Assert.Equal ($"first line.{Environment.NewLine}This is the second", Cell.ToString (tv.SelectedCellsList));
- Assert.Equal (new (18, 1), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- // Undo
- Assert.True (tv.NewKeyDownEvent (Key.Z.WithCtrl));
- AssertNullAttribute ();
- Assert.Equal (12, tv.SelectionStartColumn);
- Assert.Equal (0, tv.SelectionStartRow);
- Assert.Equal (0, tv.SelectedLength);
- Assert.Equal ("", tv.SelectedText);
- Assert.Empty (tv.SelectedCellsList);
- Assert.Equal (new (12, 0), tv.CursorPosition);
- Assert.False (tv.IsDirty);
- // Redo
- Assert.True (tv.NewKeyDownEvent (Key.R.WithCtrl));
- AssertRedGreenAttribute ();
- Assert.Equal (12, tv.SelectionStartColumn);
- Assert.Equal (0, tv.SelectionStartRow);
- Assert.Equal (0, tv.SelectedLength);
- Assert.Equal ("", tv.SelectedText);
- Assert.Empty (tv.SelectedCellsList);
- Assert.Equal (new (12, 0), tv.CursorPosition);
- Assert.True (tv.IsDirty);
- void AssertNullAttribute ()
- {
- tv.GetRegion (out List<List<Cell>> region, 0, 12, 1, 18);
- foreach (List<Cell> cells in region)
- {
- foreach (Cell cell in cells)
- {
- Assert.Null (cell.Attribute);
- }
- }
- }
- void AssertRedGreenAttribute ()
- {
- tv.GetRegion (out List<List<Cell>> region, 0, 12, 1, 18);
- foreach (List<Cell> cells in region)
- {
- foreach (Cell cell in cells)
- {
- Assert.Equal ("[Red,Green,None]", cell.Attribute.ToString ());
- }
- }
- }
- }
- [Fact]
- public void Internal_Tests ()
- {
- var txt = "This is a text.";
- List<Cell> txtStrings = Cell.StringToCells (txt);
- Assert.Equal (txt.Length, txtStrings.Count);
- Assert.Equal ("T", txtStrings [0].Grapheme);
- Assert.Equal ("h", txtStrings [1].Grapheme);
- Assert.Equal ("i", txtStrings [2].Grapheme);
- Assert.Equal ("s", txtStrings [3].Grapheme);
- Assert.Equal (" ", txtStrings [4].Grapheme);
- Assert.Equal ("i", txtStrings [5].Grapheme);
- Assert.Equal ("s", txtStrings [6].Grapheme);
- Assert.Equal (" ", txtStrings [7].Grapheme);
- Assert.Equal ("a", txtStrings [8].Grapheme);
- Assert.Equal (" ", txtStrings [9].Grapheme);
- Assert.Equal ("t", txtStrings [10].Grapheme);
- Assert.Equal ("e", txtStrings [11].Grapheme);
- Assert.Equal ("x", txtStrings [12].Grapheme);
- Assert.Equal ("t", txtStrings [13].Grapheme);
- Assert.Equal (".", txtStrings [^1].Grapheme);
- var col = 0;
- Assert.True (TextModel.SetCol (ref col, 80, 79));
- Assert.False (TextModel.SetCol (ref col, 80, 80));
- Assert.Equal (79, col);
- var start = 0;
- var x = 8;
- Assert.Equal (8, TextModel.GetColFromX (txtStrings, start, x));
- Assert.Equal ("a", txtStrings [start + x].Grapheme);
- start = 1;
- x = 7;
- Assert.Equal (7, TextModel.GetColFromX (txtStrings, start, x));
- Assert.Equal ("a", txtStrings [start + x].Grapheme);
- Assert.Equal ((15, 15), TextModel.DisplaySize (txtStrings));
- Assert.Equal ((6, 6), TextModel.DisplaySize (txtStrings, 1, 7));
- Assert.Equal (0, TextModel.CalculateLeftColumn (txtStrings, 0, 7, 8));
- Assert.Equal (1, TextModel.CalculateLeftColumn (txtStrings, 0, 8, 8));
- Assert.Equal (2, TextModel.CalculateLeftColumn (txtStrings, 0, 9, 8));
- var tm = new TextModel ();
- tm.AddLine (0, Cell.StringToCells ("This is first line."));
- tm.AddLine (1, Cell.StringToCells ("This is last line."));
- Assert.Equal ((new Point (2, 0), true), tm.FindNextText ("is", out bool gaveFullTurn));
- Assert.False (gaveFullTurn);
- Assert.Equal ((new Point (5, 0), true), tm.FindNextText ("is", out gaveFullTurn));
- Assert.False (gaveFullTurn);
- Assert.Equal ((new Point (2, 1), true), tm.FindNextText ("is", out gaveFullTurn));
- Assert.False (gaveFullTurn);
- Assert.Equal ((new Point (5, 1), true), tm.FindNextText ("is", out gaveFullTurn));
- Assert.False (gaveFullTurn);
- Assert.Equal ((new Point (2, 0), true), tm.FindNextText ("is", out gaveFullTurn));
- Assert.True (gaveFullTurn);
- tm.ResetContinuousFind (Point.Empty);
- Assert.Equal ((new Point (5, 1), true), tm.FindPreviousText ("is", out gaveFullTurn));
- Assert.False (gaveFullTurn);
- Assert.Equal ((new Point (2, 1), true), tm.FindPreviousText ("is", out gaveFullTurn));
- Assert.False (gaveFullTurn);
- Assert.Equal ((new Point (5, 0), true), tm.FindPreviousText ("is", out gaveFullTurn));
- Assert.False (gaveFullTurn);
- Assert.Equal ((new Point (2, 0), true), tm.FindPreviousText ("is", out gaveFullTurn));
- Assert.False (gaveFullTurn);
- Assert.Equal ((new Point (5, 1), true), tm.FindPreviousText ("is", out gaveFullTurn));
- Assert.True (gaveFullTurn);
- Assert.Equal ((new Point (9, 1), true), tm.ReplaceAllText ("is", false, false, "really"));
- Assert.Equal (Cell.StringToCells ("Threally really first line."), tm.GetLine (0));
- Assert.Equal (Cell.StringToCells ("Threally really last line."), tm.GetLine (1));
- tm = new ();
- tm.AddLine (0, Cell.StringToCells ("This is first line."));
- tm.AddLine (1, Cell.StringToCells ("This is last line."));
- Assert.Equal ((new Point (5, 1), true), tm.ReplaceAllText ("is", false, true, "really"));
- Assert.Equal (Cell.StringToCells ("This really first line."), tm.GetLine (0));
- Assert.Equal (Cell.StringToCells ("This really last line."), tm.GetLine (1));
- }
- [Fact]
- public void LeftColumn_Add_One_If_Text_Length_Is_Equal_To_Width ()
- {
- var tv = new TextView { Width = 10, Text = "1234567890" };
- Assert.Equal (Point.Empty, tv.CursorPosition);
- Assert.Equal (0, tv.LeftColumn);
- tv.CursorPosition = new (9, 0);
- Assert.Equal (new (9, 0), tv.CursorPosition);
- Assert.Equal (0, tv.LeftColumn);
- Assert.True (tv.NewKeyDownEvent (Key.CursorRight));
- tv.CursorPosition = new (10, 0);
- Assert.Equal (new (10, 0), tv.CursorPosition);
- Assert.Equal (1, tv.LeftColumn);
- }
- [Fact]
- public void LoadFile_Throws_If_File_Is_Empty ()
- {
- var result = false;
- var tv = new TextView ();
- Assert.Throws<ArgumentException> (() => result = tv.Load (""));
- Assert.False (result);
- }
- [Fact]
- public void LoadFile_Throws_If_File_Is_Null ()
- {
- var result = false;
- var tv = new TextView ();
- Assert.Throws<ArgumentNullException> (() => result = tv.Load ((string)null));
- Assert.False (result);
- }
- [Fact]
- public void LoadFile_Throws_If_File_Not_Exist ()
- {
- var result = false;
- var tv = new TextView ();
- Assert.Throws<FileNotFoundException> (() => result = tv.Load ("blabla"));
- Assert.False (result);
- }
- [Fact]
- public void LoadStream_CRLF ()
- {
- var text = "This is the first line.\r\nThis is the second line.\r\n";
- var tv = new TextView ();
- tv.Load (new MemoryStream (Encoding.ASCII.GetBytes (text)));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}",
- tv.Text
- );
- }
- [Fact]
- public void LoadStream_IsDirty ()
- {
- var text = "Testing";
- using (var stream = new MemoryStream ())
- {
- var writer = new StreamWriter (stream);
- writer.Write (text);
- writer.Flush ();
- stream.Position = 0;
- var tv = new TextView ();
- tv.Load (stream);
- Assert.Equal (7, text.Length);
- Assert.Equal (text.Length, tv.Text.Length);
- Assert.Equal (text, tv.Text);
- Assert.False (tv.IsDirty);
- }
- }
- [Fact]
- public void LoadStream_IsDirty_With_Null_On_The_Text ()
- {
- var text = "Test\0ing";
- using (var stream = new MemoryStream ())
- {
- var writer = new StreamWriter (stream);
- writer.Write (text);
- writer.Flush ();
- stream.Position = 0;
- var tv = new TextView ();
- tv.Load (stream);
- Assert.Equal (8, text.Length);
- Assert.Equal (text.Length, tv.Text.Length);
- Assert.Equal (8, text.Length);
- Assert.Equal (8, tv.Text.Length);
- Assert.Equal (text, tv.Text);
- Assert.False (tv.IsDirty);
- Assert.Equal ((Rune)'\u2400', ((Rune)tv.Text [4]).MakePrintable ());
- }
- }
- [Fact]
- public void LoadStream_LF ()
- {
- var text = "This is the first line.\nThis is the second line.\n";
- var tv = new TextView ();
- tv.Load (new MemoryStream (Encoding.ASCII.GetBytes (text)));
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}",
- tv.Text
- );
- }
- [Fact]
- public void LoadStream_Stream_Is_Empty ()
- {
- var tv = new TextView ();
- tv.Load (new MemoryStream ());
- Assert.Equal ("", tv.Text);
- }
- [Fact]
- public void LoadStream_Throws_If_Stream_Is_Null ()
- {
- var tv = new TextView ();
- Assert.Throws<ArgumentNullException> (() => tv.Load ((Stream)null));
- }
- [Fact]
- public void ReplaceAllText_Does_Not_Throw_Exception ()
- {
- var textToFind = "hello! hello!";
- var textToReplace = "hello!";
- var tv = new TextView { Width = 20, Height = 3, Text = textToFind };
- Exception exception = Record.Exception (() => tv.ReplaceAllText (textToFind, false, false, textToReplace));
- Assert.Null (exception);
- Assert.Equal (textToReplace, tv.Text);
- }
- [Fact]
- public void StringToRunes_Slipts_CRLF ()
- {
- var text = "This is the first line.\r\nThis is the second line.\r\n";
- var tv = new TextView ();
- tv.Text = text;
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}",
- tv.Text
- );
- }
- [Fact]
- public void StringToRunes_Slipts_LF ()
- {
- var text = "This is the first line.\nThis is the second line.\n";
- var tv = new TextView ();
- tv.Text = text;
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}",
- tv.Text
- );
- }
- [Fact]
- public void TextView_MultiLine_But_Without_Tabs ()
- {
- var view = new TextView ();
- // the default for TextView
- Assert.True (view.Multiline);
- view.AllowsTab = false;
- Assert.False (view.AllowsTab);
- Assert.True (view.Multiline);
- }
- [Fact]
- public void WordBackward_WordForward_Limits_Return_Null ()
- {
- var model = new TextModel ();
- model.LoadString ("Test");
- (int col, int row)? newPos = model.WordBackward (0, 0, false);
- Assert.Null (newPos);
- newPos = model.WordForward (4, 0, false);
- Assert.Null (newPos);
- }
- [Fact]
- public void WordWrap_Gets_Sets ()
- {
- var tv = new TextView { WordWrap = true };
- Assert.True (tv.WordWrap);
- tv.WordWrap = false;
- Assert.False (tv.WordWrap);
- }
- [Fact]
- public void WordWrap_True_Text_Always_Returns_Unwrapped ()
- {
- var text = "This is the first line.\nThis is the second line.\n";
- var tv = new TextView { Width = 10 };
- tv.Text = text;
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}",
- tv.Text
- );
- tv.WordWrap = true;
- Assert.Equal (
- $"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}",
- tv.Text
- );
- }
- [Fact]
- public void HotKey_Command_SetsFocus ()
- {
- var view = new TextView ();
- view.CanFocus = true;
- Assert.False (view.HasFocus);
- view.InvokeCommand (Command.HotKey);
- Assert.True (view.HasFocus);
- }
- [Fact]
- public void HotKey_Command_Does_Not_Accept ()
- {
- var view = new TextView ();
- var accepted = false;
- view.Accepting += OnAccept;
- view.InvokeCommand (Command.HotKey);
- Assert.False (accepted);
- return;
- void OnAccept (object sender, CommandEventArgs e) { accepted = true; }
- }
- [Theory]
- [InlineData (false, 1)]
- [InlineData (true, 1)]
- public void Accepted_Command_Raises_Accepted_Regardles_Of_AllowsReturn (bool allowsReturn, int expectedAcceptEvents)
- {
- var view = new TextView
- {
- AllowsReturn = allowsReturn
- };
- var acceptedEvents = 0;
- view.Accepting += Accept;
- view.InvokeCommand (Command.Accept);
- Assert.Equal (expectedAcceptEvents, acceptedEvents);
- return;
- void Accept (object sender, CommandEventArgs e) { acceptedEvents++; }
- }
- [Theory]
- [InlineData (false, 1)]
- [InlineData (true, 0)]
- public void Enter_Key_Fires_Accepted_BasedOn_AllowsReturn (bool allowsReturn, int expectedAccepts)
- {
- var view = new TextView
- {
- Multiline = allowsReturn
- };
- var accepted = 0;
- view.Accepting += Accept;
- view.NewKeyDownEvent (Key.Enter);
- Assert.Equal (expectedAccepts, accepted);
- return;
- void Accept (object sender, CommandEventArgs e) { accepted++; }
- }
- [Theory]
- [InlineData (false, 1)]
- [InlineData (true, 0)]
- public void Enter_Key_Fires_Accepted_BasedOn_Multiline (bool multiline, int expectedAccepts)
- {
- var view = new TextView
- {
- Multiline = multiline
- };
- var accepted = 0;
- view.Accepting += Accept;
- view.NewKeyDownEvent (Key.Enter);
- Assert.Equal (expectedAccepts, accepted);
- return;
- void Accept (object sender, CommandEventArgs e) { accepted++; }
- }
- [Fact]
- public void Space_Key_Types_Space ()
- {
- var view = new TextView ();
- view.NewKeyDownEvent (Key.Space);
- Assert.Equal (" ", view.Text);
- }
- [Theory]
- [InlineData (false, false, 1, 1)]
- [InlineData (false, true, 1, 0)]
- [InlineData (true, false, 0, 0)]
- [InlineData (true, true, 0, 0)]
- public void Accepted_Event_Handled_Prevents_Default_Button_Accept (bool multiline, bool handleAccept, int expectedAccepts, int expectedButtonAccepts)
- {
- var superView = new Window ();
- var tv = new TextView
- {
- Multiline = multiline
- };
- var button = new Button
- {
- IsDefault = true
- };
- superView.Add (tv, button);
- var buttonAccept = 0;
- button.Accepting += ButtonAccept;
- var textViewAccept = 0;
- tv.Accepting += TextViewAccept;
- tv.SetFocus ();
- Assert.True (tv.HasFocus);
- superView.NewKeyDownEvent (Key.Enter);
- Assert.Equal (expectedAccepts, textViewAccept);
- Assert.Equal (expectedButtonAccepts, buttonAccept);
- button.SetFocus ();
- superView.NewKeyDownEvent (Key.Enter);
- Assert.Equal (expectedAccepts, textViewAccept);
- Assert.Equal (expectedButtonAccepts + 1, buttonAccept);
- return;
- void TextViewAccept (object sender, CommandEventArgs e)
- {
- textViewAccept++;
- e.Handled = handleAccept;
- }
- void ButtonAccept (object sender, CommandEventArgs e) { buttonAccept++; }
- }
- [Theory]
- [InlineData (true, 0)]
- [InlineData (false, 1)]
- public void Accepted_No_Handler_Enables_Default_Button_Accept (bool multiline, int expectedButtonAccept)
- {
- var superView = new Window ();
- var tv = new TextView
- {
- Multiline = multiline
- };
- var button = new Button
- {
- IsDefault = true
- };
- superView.Add (tv, button);
- var buttonAccept = 0;
- button.Accepting += ButtonAccept;
- tv.SetFocus ();
- Assert.True (tv.HasFocus);
- superView.NewKeyDownEvent (Key.Enter);
- Assert.Equal (expectedButtonAccept, buttonAccept);
- button.SetFocus ();
- superView.NewKeyDownEvent (Key.Enter);
- Assert.Equal (expectedButtonAccept + 1, buttonAccept);
- return;
- void ButtonAccept (object sender, CommandEventArgs e) { buttonAccept++; }
- }
- [Fact]
- public void Autocomplete_Popup_Added_To_SuperView_On_Init ()
- {
- View superView = new ()
- {
- CanFocus = true
- };
- TextView t = new ();
- superView.Add (t);
- Assert.Single (superView.SubViews);
- superView.BeginInit ();
- superView.EndInit ();
- Assert.Equal (2, superView.SubViews.Count);
- }
- [Fact]
- public void Autocomplete__Added_To_SuperView_On_Add ()
- {
- View superView = new ()
- {
- CanFocus = true,
- Id = "superView"
- };
- superView.BeginInit ();
- superView.EndInit ();
- Assert.Empty (superView.SubViews);
- TextView t = new ()
- {
- Id = "t"
- };
- superView.Add (t);
- Assert.Equal (2, superView.SubViews.Count);
- }
- [Fact]
- public void Autocomplete_Visible_False_By_Default ()
- {
- View superView = new ()
- {
- CanFocus = true
- };
- TextView t = new ();
- superView.Add (t);
- superView.BeginInit ();
- superView.EndInit ();
- Assert.Equal (2, superView.SubViews.Count);
- Assert.True (t.Visible);
- Assert.False (t.Autocomplete.Visible);
- }
- [Fact]
- public void Right_CursorAtEnd_WithSelection_ShouldClearSelection ()
- {
- var tv = new TextView
- {
- Text = "Hello"
- };
- tv.SetFocus ();
- tv.NewKeyDownEvent (Key.End.WithShift);
- Assert.Equal (5, tv.CursorPosition.X);
- // When there is selected text and the cursor is at the end of the text field
- Assert.Equal ("Hello", tv.SelectedText);
- // Pressing right should not move focus, instead it should clear selection
- Assert.True (tv.NewKeyDownEvent (Key.CursorRight));
- Assert.Empty (tv.SelectedText);
- // Now that the selection is cleared another right keypress should move focus
- Assert.False (tv.NewKeyDownEvent (Key.CursorRight));
- }
- [Fact]
- public void Left_CursorAtStart_WithSelection_ShouldClearSelection ()
- {
- var tv = new TextView
- {
- Text = "Hello"
- };
- tv.SetFocus ();
- tv.NewKeyDownEvent (Key.CursorRight);
- tv.NewKeyDownEvent (Key.CursorRight);
- Assert.Equal (2, tv.CursorPosition.X);
- Assert.True (tv.NewKeyDownEvent (Key.CursorLeft.WithShift));
- Assert.True (tv.NewKeyDownEvent (Key.CursorLeft.WithShift));
- // When there is selected text and the cursor is at the start of the text field
- Assert.Equal ("He", tv.SelectedText);
- // Pressing left should not move focus, instead it should clear selection
- Assert.True (tv.NewKeyDownEvent (Key.CursorLeft));
- Assert.Empty (tv.SelectedText);
- // When clearing selected text with left the cursor should be at the start of the selection
- Assert.Equal (0, tv.CursorPosition.X);
- // Now that the selection is cleared another left keypress should move focus
- Assert.False (tv.NewKeyDownEvent (Key.CursorLeft));
- }
- [Fact]
- public void Equals_True ()
- {
- var c1 = new Cell ();
- var c2 = new Cell ();
- Assert.True (c1.Equals (c2));
- Assert.True (c2.Equals (c1));
- c1.Grapheme = new ("a");
- c1.Attribute = new ();
- c2.Grapheme = new ("a");
- c2.Attribute = new ();
- Assert.True (c1.Equals (c2));
- Assert.True (c2.Equals (c1));
- }
- [Fact]
- public void Cell_LoadCells_Without_Scheme_Is_Never_Null ()
- {
- List<Cell> cells = new ()
- {
- new () { Grapheme = new ("T") },
- new () { Grapheme = new ("e") },
- new () { Grapheme = new ("s") },
- new () { Grapheme = new ("t") }
- };
- TextView tv = CreateTextView ();
- var top = new Runnable ();
- top.Add (tv);
- tv.Load (cells);
- for (var i = 0; i < tv.Lines; i++)
- {
- List<Cell> line = tv.GetLine (i);
- foreach (Cell c in line)
- {
- Assert.NotNull (c.Attribute);
- }
- }
- }
- [Theory]
- [InlineData ("", false, "")]
- [InlineData ("", true, "")]
- [InlineData (" ", false, "")]
- [InlineData (" ", true, "")]
- [InlineData (" ", false, "")]
- [InlineData (" ", true, "")]
- [InlineData ("a", false, "")]
- [InlineData ("a", true, "")]
- [InlineData ("a ", false, "")]
- [InlineData ("a ", true, "")]
- [InlineData (" a ", false, "a ", "")]
- [InlineData (" a ", true, "a ", "")]
- [InlineData (" H1 ", false, "H1 ", "")]
- [InlineData (" H1 ", true, "H1 ", "")]
- [InlineData ("a$", false, "$", "")]
- [InlineData ("a$", true, "$", "")]
- [InlineData ("a$#", false, "$#", "")]
- [InlineData ("a$#", true, "$#", "#", "")]
- [InlineData (" a$# ", false, "a$# ", "$# ", "")]
- [InlineData (" a$# ", true, "a$# ", "$# ", "# ", "")]
- [InlineData ("\"$schema\"", false, "schema\"", "\"", "")]
- [InlineData ("\"$schema\"", true, "$schema\"", "schema\"", "\"", "")]
- [InlineData ("\": \"", false, "\"", "")]
- [InlineData ("\": \"", true, "\"", "")]
- [InlineData ("\"$schema\": \"", false, "schema\": \"", "\": \"", "\"", "")]
- [InlineData ("\"$schema\": \"", true, "$schema\": \"", "schema\": \"", "\": \"", "\"", "")]
- [InlineData ("1ºªA", false, "")]
- [InlineData ("1ºªA", true, "")]
- [InlineData (
- "ºª\\!\"#%&/()?'«»*;,:._-@{[]}]|$=+´`~^<>£€¨",
- false,
- "\\!\"#%&/()?'«»*;,:._-@{[]}]|$=+´`~^<>£€¨",
- "")]
- [InlineData (
- "ºª\\!\"#%&/()?'«»*;,:._-@{[]}]|$=+´`~^<>£€¨",
- true,
- "\\!\"#%&/()?'«»*;,:._-@{[]}]|$=+´`~^<>£€¨",
- "|$=+´`~^<>£€¨",
- "")]
- [InlineData (
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- false,
- "\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- " \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "\"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "\"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- ".github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- ".io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- ".Gui/schemas/tui-config-schema.json\"\r\n}",
- "Gui/schemas/tui-config-schema.json\"\r\n}",
- "/schemas/tui-config-schema.json\"\r\n}",
- "schemas/tui-config-schema.json\"\r\n}",
- "/tui-config-schema.json\"\r\n}",
- "tui-config-schema.json\"\r\n}",
- "-config-schema.json\"\r\n}",
- "config-schema.json\"\r\n}",
- "-schema.json\"\r\n}",
- "schema.json\"\r\n}",
- ".json\"\r\n}",
- "json\"\r\n}",
- "\"\r\n}",
- "\r\n}",
- "}",
- "")]
- [InlineData (
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- true,
- "\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- " \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "\"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "\"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- ".github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- ".io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- "Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- ".Gui/schemas/tui-config-schema.json\"\r\n}",
- "Gui/schemas/tui-config-schema.json\"\r\n}",
- "/schemas/tui-config-schema.json\"\r\n}",
- "schemas/tui-config-schema.json\"\r\n}",
- "/tui-config-schema.json\"\r\n}",
- "tui-config-schema.json\"\r\n}",
- "-config-schema.json\"\r\n}",
- "config-schema.json\"\r\n}",
- "-schema.json\"\r\n}",
- "schema.json\"\r\n}",
- ".json\"\r\n}",
- "json\"\r\n}",
- "\"\r\n}",
- "\r\n}",
- "}",
- "")]
- public void WordForward_WordWrap_False_True (string text, bool useSameRuneType, params string [] expectedText)
- {
- TextView tv = CreateTextView ();
- tv.UseSameRuneTypeForWords = useSameRuneType;
- ProcessDeleteWithCtrl ();
- tv.WordWrap = true;
- ProcessDeleteWithCtrl ();
- void ProcessDeleteWithCtrl ()
- {
- tv.Text = text;
- var idx = 0;
- while (!string.IsNullOrEmpty (tv.Text))
- {
- tv.NewKeyDownEvent (Key.Delete.WithCtrl);
- Assert.Equal (expectedText [idx].Replace ("\r\n", Environment.NewLine), tv.Text);
- idx++;
- }
- }
- }
- [Theory]
- [InlineData ("", false, "")]
- [InlineData ("", true, "")]
- [InlineData (" ", false, "")]
- [InlineData (" ", true, "")]
- [InlineData (" ", false, "")]
- [InlineData (" ", true, "")]
- [InlineData ("a", false, "")]
- [InlineData ("a", true, "")]
- [InlineData ("a ", false, "")]
- [InlineData ("a ", true, "")]
- [InlineData (" a ", false, " ", "")]
- [InlineData (" a ", true, " ", "")]
- [InlineData (" H1 ", false, " ", "")]
- [InlineData (" H1 ", true, " ", "")]
- [InlineData ("a$", false, "a", "")]
- [InlineData ("a$", true, "a", "")]
- [InlineData ("a$#", false, "a", "")]
- [InlineData ("a$#", true, "a$", "a", "")]
- [InlineData (" a$# ", false, " a", " ", "")]
- [InlineData (" a$# ", true, " a$", " a", " ", "")]
- [InlineData ("\"$schema\"", false, "\"$schema", "\"$", "")]
- [InlineData ("\"$schema\"", true, "\"$schema", "\"$", "\"", "")]
- [InlineData ("\"$schema\": \"", false, "\"$schema\": ", "\"$schema", "\"$", "")]
- [InlineData ("\"$schema\": \"", true, "\"$schema\": ", "\"$schema", "\"$", "\"", "")]
- [InlineData ("1ºªA", false, "")]
- [InlineData ("1ºªA", true, "")]
- [InlineData (
- "ºª\\!\"#%&/()?'«»*;,:._-@{[]}]|$=+´`~^<>£€¨",
- false,
- "ºª",
- "")]
- [InlineData (
- "ºª\\!\"#%&/()?'«»*;,:._-@{[]}]|$=+´`~^<>£€¨",
- true,
- "ºª\\!\"#%&/()?'«»*;,:._-@{[]}]",
- "ºª",
- "")]
- [InlineData (
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- false,
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/",
- "{\r\n \"$schema\": \"https://gui-cs.github.io",
- "{\r\n \"$schema\": \"https://gui-cs.github.",
- "{\r\n \"$schema\": \"https://gui-cs.github",
- "{\r\n \"$schema\": \"https://gui-cs.",
- "{\r\n \"$schema\": \"https://gui-cs",
- "{\r\n \"$schema\": \"https://gui-",
- "{\r\n \"$schema\": \"https://gui",
- "{\r\n \"$schema\": \"https://",
- "{\r\n \"$schema\": \"https",
- "{\r\n \"$schema\": \"",
- "{\r\n \"$schema\": ",
- "{\r\n \"$schema",
- "{\r\n \"$",
- "{\r\n ",
- "{\r\n",
- "{",
- "")]
- [InlineData (
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n}",
- true,
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"\r\n",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json\"",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.json",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema.",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-schema",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config-",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-config",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui-",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/tui",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas/",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/schemas",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui/",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.Gui",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal.",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/Terminal",
- "{\r\n \"$schema\": \"https://gui-cs.github.io/",
- "{\r\n \"$schema\": \"https://gui-cs.github.io",
- "{\r\n \"$schema\": \"https://gui-cs.github.",
- "{\r\n \"$schema\": \"https://gui-cs.github",
- "{\r\n \"$schema\": \"https://gui-cs.",
- "{\r\n \"$schema\": \"https://gui-cs",
- "{\r\n \"$schema\": \"https://gui-",
- "{\r\n \"$schema\": \"https://gui",
- "{\r\n \"$schema\": \"https://",
- "{\r\n \"$schema\": \"https",
- "{\r\n \"$schema\": \"",
- "{\r\n \"$schema\": ",
- "{\r\n \"$schema",
- "{\r\n \"$",
- "{\r\n \"",
- "{\r\n ",
- "{\r\n",
- "{",
- "")]
- public void WordBackward_WordWrap_False_True (string text, bool useSameRuneType, params string [] expectedText)
- {
- TextView tv = CreateTextView ();
- tv.UseSameRuneTypeForWords = useSameRuneType;
- ProcessBackspaceWithCtrl ();
- tv.WordWrap = true;
- ProcessBackspaceWithCtrl ();
- void ProcessBackspaceWithCtrl ()
- {
- tv.Text = text;
- tv.MoveEnd ();
- var idx = 0;
- while (!string.IsNullOrEmpty (tv.Text))
- {
- tv.NewKeyDownEvent (Key.Backspace.WithCtrl);
- Assert.Equal (expectedText [idx].Replace ("\r\n", Environment.NewLine), tv.Text);
- idx++;
- }
- }
- }
- [Theory]
- [InlineData ("", 0, false, "")]
- [InlineData ("", 0, true, "")]
- [InlineData ("a", 0, false, "a")]
- [InlineData ("a", 0, true, "a")]
- [InlineData ("a:", 0, false, "a")]
- [InlineData ("a:", 0, true, "a")]
- [InlineData ("a:", 1, false, ":")]
- [InlineData ("a:", 1, true, ":")]
- [InlineData ("a ", 0, false, "a ")]
- [InlineData ("a ", 0, true, "a")]
- [InlineData ("a ", 1, false, "a ")]
- [InlineData ("a ", 1, true, "a")]
- [InlineData ("a b", 0, false, "a ")]
- [InlineData ("a b", 0, true, "a")]
- [InlineData ("a b", 1, false, "a ")]
- [InlineData ("a b", 1, true, "a")]
- [InlineData ("a b ", 2, false, "b ")]
- [InlineData ("a b ", 2, true, "b")]
- [InlineData ("a b ", 3, false, "b ")]
- [InlineData ("a b ", 3, true, "b")]
- [InlineData (" a b ", 0, false, " ")]
- [InlineData (" a b ", 0, true, " ")]
- [InlineData (" a b ", 2, false, " ")]
- [InlineData (" a b ", 2, true, " ")]
- [InlineData (" a b ", 3, false, " ")]
- [InlineData (" a b ", 3, true, " ")]
- [InlineData (" H1$you ", 2, false, "H1")]
- [InlineData (" H1$you ", 2, true, "H1")]
- [InlineData (" H1$you ", 3, false, "$&#")]
- [InlineData (" H1$you ", 3, true, "$&#")]
- [InlineData (" H1$you ", 4, false, "$&#")]
- [InlineData (" H1$you ", 4, true, "$&#")]
- [InlineData (" H1$you ", 5, false, "$&#")]
- [InlineData (" H1$you ", 5, true, "$&#")]
- [InlineData (" H1$you ", 6, false, "2you ")]
- [InlineData (" H1$you ", 6, true, "2you")]
- public void ProcessDoubleClickSelection_False_True (string text, int col, bool selectWordOnly, string expectedText)
- {
- TextView tv = CreateTextView ();
- tv.Text = text;
- tv.SelectWordOnlyOnDoubleClick = selectWordOnly;
- Assert.True (tv.NewMouseEvent (new () { Position = new (col, 0), Flags = MouseFlags.Button1DoubleClicked }));
- Assert.Equal (expectedText, tv.SelectedText);
- }
- [Fact]
- public void ReadOnly_True_Move_Right_Moves_Until_The_End_Of_Text_More_One_Column ()
- {
- TextView tv = CreateTextView ();
- tv.Text = "Hi";
- tv.ReadOnly = true;
- Assert.Equal (0, tv.CurrentColumn);
- Assert.True (tv.NewKeyDownEvent (Key.CursorRight.WithShift));
- Assert.Equal (1, tv.CurrentColumn);
- Assert.Equal ("H", tv.SelectedText);
- Assert.True (tv.NewKeyDownEvent (Key.CursorRight.WithShift));
- Assert.Equal (2, tv.CurrentColumn);
- Assert.Equal ("Hi", tv.SelectedText);
- }
- [Fact]
- public void LeftColumn_Treat_Negative_Width_As_One_Column ()
- {
- TextView tv = new () { Width = 2, Height = 1, Text = "\u001B[" };
- Assert.Equal (0, tv.LeftColumn);
- Assert.Equal (new (0, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.CursorRight));
- Assert.Equal (0, tv.LeftColumn);
- Assert.Equal (new (1, 0), tv.CursorPosition);
- Assert.True (tv.NewKeyDownEvent (Key.CursorRight));
- Assert.Equal (1, tv.LeftColumn);
- Assert.Equal (new (2, 0), tv.CursorPosition);
- Assert.False (tv.NewKeyDownEvent (Key.CursorRight));
- Assert.Equal (1, tv.LeftColumn);
- Assert.Equal (new (2, 0), tv.CursorPosition);
- }
- private TextView CreateTextView () { return new () { Width = 30, Height = 10 }; }
- }
|