123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755 |
- using System;
- using System.Linq;
- using System.Reflection;
- using Xunit;
- namespace Terminal.Gui.Views {
- public class TextViewTests {
- private static TextView _textView;
- // This class enables test functions annoated with the [InitShutdown] attribute
- // to have a function called before the test function is called and after.
- //
- // This is necessary because a) Application is a singleton and Init/Shutdown must be called
- // as a pair, and b) all unit test functions should be atomic.
- [AttributeUsage (AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
- public class InitShutdown : Xunit.Sdk.BeforeAfterTestAttribute {
- public override void Before (MethodInfo methodUnderTest)
- {
- if (_textView != null) {
- throw new InvalidOperationException ("After did not run.");
- }
- Application.Init (new FakeDriver (), new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- // 1 2 3
- // 01234567890123456789012345678901=32 (Length)
- var txt = "TAB to jump between text fields.";
- var buff = new byte [txt.Length];
- for (int i = 0; i < txt.Length; i++) {
- buff [i] = (byte)txt [i];
- }
- var ms = new System.IO.MemoryStream (buff).ToArray ();
- _textView = new TextView () { Width = 30, Height = 10 };
- _textView.Text = ms;
- }
- public override void After (MethodInfo methodUnderTest)
- {
- _textView = null;
- Application.Shutdown ();
- }
- }
- [Fact][InitShutdown]
- public void Changing_Selection_Or_CursorPosition_Update_SelectedLength_And_SelectedText ()
- {
- _textView.SelectionStartColumn = 2;
- _textView.SelectionStartRow = 0;
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (2, _textView.SelectedLength);
- Assert.Equal ("TA", _textView.SelectedText);
- _textView.CursorPosition = new Point (20, 0);
- Assert.Equal (2, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (18, _textView.SelectedLength);
- Assert.Equal ("B to jump between ", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void Selection_With_Value_Less_Than_Zero_Changes_To_Zero ()
- {
- _textView.SelectionStartColumn = -2;
- _textView.SelectionStartRow = -2;
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void Selection_With_Value_Greater_Than_Text_Length_Changes_To_Text_Length ()
- {
- _textView.CursorPosition = new Point (2, 0);
- _textView.SelectionStartColumn = 33;
- _textView.SelectionStartRow = 1;
- Assert.Equal (32, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (30, _textView.SelectedLength);
- Assert.Equal ("B to jump between text fields.", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void Selection_With_Empty_Text ()
- {
- _textView = new TextView ();
- _textView.CursorPosition = new Point (2, 0);
- _textView.SelectionStartColumn = 33;
- _textView.SelectionStartRow = 1;
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void Selection_And_CursorPosition_With_Value_Greater_Than_Text_Length_Changes_Both_To_Text_Length ()
- {
- _textView.CursorPosition = new Point (33, 2);
- _textView.SelectionStartColumn = 33;
- _textView.SelectionStartRow = 33;
- Assert.Equal (32, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (32, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void CursorPosition_With_Value_Less_Than_Zero_Changes_To_Zero ()
- {
- _textView.CursorPosition = new Point (-1, -1);
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void CursorPosition_With_Value_Greater_Than_Text_Length_Changes_To_Text_Length ()
- {
- _textView.CursorPosition = new Point (33, 1);
- Assert.Equal (32, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void WordForward_With_No_Selection ()
- {
- _textView.CursorPosition = new Point (0, 0);
- var iteration = 0;
- while (_textView.CursorPosition.X < _textView.Text.Length) {
- _textView.ProcessKey (new KeyEvent (Key.CursorRight | Key.CtrlMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (4, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (7, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (20, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 4:
- Assert.Equal (25, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 5:
- Assert.Equal (32, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordBackward_With_No_Selection ()
- {
- _textView.CursorPosition = new Point (_textView.Text.Length, 0);
- var iteration = 0;
- while (_textView.CursorPosition.X > 0) {
- _textView.ProcessKey (new KeyEvent (Key.CursorLeft | Key.CtrlMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (25, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (20, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (7, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 4:
- Assert.Equal (4, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 5:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordForward_With_Selection ()
- {
- _textView.CursorPosition = new Point (0, 0);
- _textView.SelectionStartColumn = 0;
- _textView.SelectionStartRow = 0;
- var iteration = 0;
- while (_textView.CursorPosition.X < _textView.Text.Length) {
- _textView.ProcessKey (new KeyEvent (Key.CursorRight | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (4, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (4, _textView.SelectedLength);
- Assert.Equal ("TAB ", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (7, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (7, _textView.SelectedLength);
- Assert.Equal ("TAB to ", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (12, _textView.SelectedLength);
- Assert.Equal ("TAB to jump ", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (20, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (20, _textView.SelectedLength);
- Assert.Equal ("TAB to jump between ", _textView.SelectedText);
- break;
- case 4:
- Assert.Equal (25, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (25, _textView.SelectedLength);
- Assert.Equal ("TAB to jump between text ", _textView.SelectedText);
- break;
- case 5:
- Assert.Equal (32, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (32, _textView.SelectedLength);
- Assert.Equal ("TAB to jump between text fields.", _textView.SelectedText);
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordBackward_With_Selection ()
- {
- _textView.CursorPosition = new Point (_textView.Text.Length, 0);
- _textView.SelectionStartColumn = _textView.Text.Length;
- _textView.SelectionStartRow = 0;
- var iteration = 0;
- while (_textView.CursorPosition.X > 0) {
- _textView.ProcessKey (new KeyEvent (Key.CursorLeft | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (25, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (32, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (7, _textView.SelectedLength);
- Assert.Equal ("fields.", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (20, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (32, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (12, _textView.SelectedLength);
- Assert.Equal ("text fields.", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (32, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (20, _textView.SelectedLength);
- Assert.Equal ("between text fields.", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (7, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (32, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (25, _textView.SelectedLength);
- Assert.Equal ("jump between text fields.", _textView.SelectedText);
- break;
- case 4:
- Assert.Equal (4, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (32, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (28, _textView.SelectedLength);
- Assert.Equal ("to jump between text fields.", _textView.SelectedText);
- break;
- case 5:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (32, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (32, _textView.SelectedLength);
- Assert.Equal ("TAB to jump between text fields.", _textView.SelectedText);
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordForward_With_The_Same_Values_For_SelectedStart_And_CursorPosition_And_Not_Starting_At_Beginning_Of_The_Text ()
- {
- _textView.CursorPosition = new Point (10, 0);
- _textView.SelectionStartColumn = 10;
- _textView.SelectionStartRow = 0;
- var iteration = 0;
- while (_textView.CursorPosition.X < _textView.Text.Length) {
- _textView.ProcessKey (new KeyEvent (Key.CursorRight | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (10, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (2, _textView.SelectedLength);
- Assert.Equal ("p ", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (20, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (10, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (10, _textView.SelectedLength);
- Assert.Equal ("p between ", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (25, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (10, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (15, _textView.SelectedLength);
- Assert.Equal ("p between text ", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (32, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (10, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (22, _textView.SelectedLength);
- Assert.Equal ("p between text fields.", _textView.SelectedText);
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordBackward_With_The_Same_Values_For_SelectedStart_And_CursorPosition_And_Not_Starting_At_Beginning_Of_The_Text ()
- {
- _textView.CursorPosition = new Point (10, 0);
- _textView.SelectionStartColumn = 10;
- _textView.SelectionStartRow = 0;
- var iteration = 0;
- while (_textView.CursorPosition.X > 0) {
- _textView.ProcessKey (new KeyEvent (Key.CursorLeft | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (7, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (10, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (3, _textView.SelectedLength);
- Assert.Equal ("jum", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (4, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (10, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (6, _textView.SelectedLength);
- Assert.Equal ("to jum", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (10, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (10, _textView.SelectedLength);
- Assert.Equal ("TAB to jum", _textView.SelectedText);
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordForward_With_No_Selection_And_With_More_Than_Only_One_Whitespace_And_With_Only_One_Letter ()
- {
- // 1 2 3 4 5
- // 0123456789012345678901234567890123456789012345678901234=55 (Length)
- _textView.Text = "TAB t o jump b etween t ext f ields .";
- _textView.CursorPosition = new Point (0, 0);
- var iteration = 0;
- while (_textView.CursorPosition.X < _textView.Text.Length) {
- _textView.ProcessKey (new KeyEvent (Key.CursorRight | Key.CtrlMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (6, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (9, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (25, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 4:
- Assert.Equal (28, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 5:
- Assert.Equal (38, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 6:
- Assert.Equal (40, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 7:
- Assert.Equal (46, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 8:
- Assert.Equal (48, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 9:
- Assert.Equal (55, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordBackward_With_No_Selection_And_With_More_Than_Only_One_Whitespace_And_With_Only_One_Letter ()
- {
- // 1 2 3 4 5
- // 0123456789012345678901234567890123456789012345678901234=55 (Length)
- _textView.Text = "TAB t o jump b etween t ext f ields .";
- _textView.CursorPosition = new Point (_textView.Text.Length, 0);
- var iteration = 0;
- while (_textView.CursorPosition.X > 0) {
- _textView.ProcessKey (new KeyEvent (Key.CursorLeft | Key.CtrlMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (54, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (48, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (46, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (40, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 4:
- Assert.Equal (38, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 5:
- Assert.Equal (28, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 6:
- Assert.Equal (25, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 7:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 8:
- Assert.Equal (9, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 9:
- Assert.Equal (6, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- case 10:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (0, _textView.SelectedLength);
- Assert.Equal ("", _textView.SelectedText);
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordBackward_Multiline_With_Selection ()
- {
- // 4 3 2 1
- // 87654321098765432109876 54321098765432109876543210-Length
- // 1 2 1 2
- // 01234567890123456789012 0123456789012345678901234
- _textView.Text = "This is the first line.\nThis is the second line.";
- _textView.MoveEnd ();
- _textView.SelectionStartColumn = _textView.CurrentColumn;
- _textView.SelectionStartRow = _textView.CurrentRow;
- var iteration = 0;
- bool iterationsFinished = false;
- while (!iterationsFinished) {
- _textView.ProcessKey (new KeyEvent (Key.CursorLeft | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (19, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (5, _textView.SelectedLength);
- Assert.Equal ("line.", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (12, _textView.SelectedLength);
- Assert.Equal ("second line.", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (8, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (16, _textView.SelectedLength);
- Assert.Equal ("the second line.", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (5, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (19, _textView.SelectedLength);
- Assert.Equal ("is the second line.", _textView.SelectedText);
- break;
- case 4:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (24, _textView.SelectedLength);
- Assert.Equal ("This is the second line.", _textView.SelectedText);
- break;
- case 5:
- Assert.Equal (23, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (25, _textView.SelectedLength);
- Assert.Equal ("\nThis is the second line.", _textView.SelectedText);
- break;
- case 6:
- Assert.Equal (18, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (30, _textView.SelectedLength);
- Assert.Equal ("line.\nThis is the second line.", _textView.SelectedText);
- break;
- case 7:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (36, _textView.SelectedLength);
- Assert.Equal ("first line.\nThis is the second line.", _textView.SelectedText);
- break;
- case 8:
- Assert.Equal (8, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (40, _textView.SelectedLength);
- Assert.Equal ("the first line.\nThis is the second line.", _textView.SelectedText);
- break;
- case 9:
- Assert.Equal (5, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (43, _textView.SelectedLength);
- Assert.Equal ("is the first line.\nThis is the second line.", _textView.SelectedText);
- break;
- case 10:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (24, _textView.SelectionStartColumn);
- Assert.Equal (1, _textView.SelectionStartRow);
- Assert.Equal (48, _textView.SelectedLength);
- Assert.Equal ("This is the first line.\nThis is the second line.", _textView.SelectedText);
- break;
- default:
- iterationsFinished = true;
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void WordForward_Multiline_With_Selection ()
- {
- // 1 2 3 4
- // 01234567890123456789012 34567890123456789012345678-Length
- // 1 2 1 2
- // 01234567890123456789012 0123456789012345678901234
- _textView.Text = "This is the first line.\nThis is the second line.";
- _textView.SelectionStartColumn = _textView.CurrentColumn;
- _textView.SelectionStartRow = _textView.CurrentRow;
- var iteration = 0;
- bool iterationsFinished = false;
- while (!iterationsFinished) {
- _textView.ProcessKey (new KeyEvent (Key.CursorRight | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (5, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (5, _textView.SelectedLength);
- Assert.Equal ("This ", _textView.SelectedText);
- break;
- case 1:
- Assert.Equal (8, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (8, _textView.SelectedLength);
- Assert.Equal ("This is ", _textView.SelectedText);
- break;
- case 2:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (12, _textView.SelectedLength);
- Assert.Equal ("This is the ", _textView.SelectedText);
- break;
- case 3:
- Assert.Equal (18, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (18, _textView.SelectedLength);
- Assert.Equal ("This is the first ", _textView.SelectedText);
- break;
- case 4:
- Assert.Equal (23, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (23, _textView.SelectedLength);
- Assert.Equal ("This is the first line.", _textView.SelectedText);
- break;
- case 5:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (24, _textView.SelectedLength);
- Assert.Equal ("This is the first line.\n", _textView.SelectedText);
- break;
- case 6:
- Assert.Equal (5, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (29, _textView.SelectedLength);
- Assert.Equal ("This is the first line.\nThis ", _textView.SelectedText);
- break;
- case 7:
- Assert.Equal (8, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (32, _textView.SelectedLength);
- Assert.Equal ("This is the first line.\nThis is ", _textView.SelectedText);
- break;
- case 8:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (36, _textView.SelectedLength);
- Assert.Equal ("This is the first line.\nThis is the ", _textView.SelectedText);
- break;
- case 9:
- Assert.Equal (19, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (43, _textView.SelectedLength);
- Assert.Equal ("This is the first line.\nThis is the second ", _textView.SelectedText);
- break;
- case 10:
- Assert.Equal (24, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal (0, _textView.SelectionStartColumn);
- Assert.Equal (0, _textView.SelectionStartRow);
- Assert.Equal (48, _textView.SelectedLength);
- Assert.Equal ("This is the first line.\nThis is the second line.", _textView.SelectedText);
- break;
- default:
- iterationsFinished = true;
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void Kill_To_End_Delete_Forwards_And_Copy_To_The_Clipboard ()
- {
- _textView.Text = "This is the first line.\nThis is the second line.";
- var iteration = 0;
- bool iterationsFinished = false;
- while (!iterationsFinished) {
- _textView.ProcessKey (new KeyEvent (Key.DeleteChar | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ($"{System.Environment.NewLine}This is the second line.", _textView.Text);
- break;
- case 1:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is the second line.", _textView.Text);
- break;
- case 2:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("", _textView.Text);
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ("This is the second line.", _textView.Text);
- break;
- default:
- iterationsFinished = true;
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void Kill_To_Start_Delete_Backwards_And_Copy_To_The_Clipboard ()
- {
- _textView.Text = "This is the first line.\nThis is the second line.";
- _textView.MoveEnd ();
- var iteration = 0;
- bool iterationsFinished = false;
- while (!iterationsFinished) {
- _textView.ProcessKey (new KeyEvent (Key.Backspace | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal ($"This is the first line.{System.Environment.NewLine}", _textView.Text);
- break;
- case 1:
- Assert.Equal (23, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first line.", _textView.Text);
- break;
- case 2:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("", _textView.Text);
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ("This is the first line.", _textView.Text);
- break;
- default:
- iterationsFinished = true;
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void Kill_Delete_WordForward ()
- {
- _textView.Text = "This is the first line.";
- var iteration = 0;
- bool iterationsFinished = false;
- while (!iterationsFinished) {
- _textView.ProcessKey (new KeyEvent (Key.DeleteChar | Key.CtrlMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("is the first line.", _textView.Text);
- break;
- case 1:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("the first line.", _textView.Text);
- break;
- case 2:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("first line.", _textView.Text);
- break;
- case 3:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("line.", _textView.Text);
- break;
- case 4:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("", _textView.Text);
- break;
- default:
- iterationsFinished = true;
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void Kill_Delete_WordBackward ()
- {
- _textView.Text = "This is the first line.";
- _textView.MoveEnd ();
- var iteration = 0;
- bool iterationsFinished = false;
- while (!iterationsFinished) {
- _textView.ProcessKey (new KeyEvent (Key.Backspace | Key.CtrlMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (18, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first ", _textView.Text);
- break;
- case 1:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is the ", _textView.Text);
- break;
- case 2:
- Assert.Equal (8, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is ", _textView.Text);
- break;
- case 3:
- Assert.Equal (5, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This ", _textView.Text);
- break;
- case 4:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("", _textView.Text);
- break;
- default:
- iterationsFinished = true;
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void Kill_Delete_WordForward_Multiline ()
- {
- _textView.Text = "This is the first line.\nThis is the second line.";
- _textView.Width = 4;
- var iteration = 0;
- bool iterationsFinished = false;
- while (!iterationsFinished) {
- _textView.ProcessKey (new KeyEvent (Key.DeleteChar | Key.CtrlMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("is the first line." + Environment.NewLine
- + "This is the second line.", _textView.Text);
- break;
- case 1:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("the first line." + Environment.NewLine
- + "This is the second line.", _textView.Text);
- break;
- case 2:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("first line." + Environment.NewLine
- + "This is the second line.", _textView.Text);
- break;
- case 3:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("line." + Environment.NewLine
- + "This is the second line.", _textView.Text);
- break;
- case 4:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("" + Environment.NewLine
- + "This is the second line.", _textView.Text);
- break;
- case 5:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is the second line.", _textView.Text);
- break;
- case 6:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("is the second line.", _textView.Text);
- break;
- case 7:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("the second line.", _textView.Text);
- break;
- case 8:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("second line.", _textView.Text);
- break;
- case 9:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("line.", _textView.Text);
- break;
- case 10:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("", _textView.Text);
- break;
- default:
- iterationsFinished = true;
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void Kill_Delete_WordBackward_Multiline ()
- {
- _textView.Text = "This is the first line.\nThis is the second line.";
- _textView.Width = 4;
- _textView.MoveEnd ();
- var iteration = 0;
- bool iterationsFinished = false;
- while (!iterationsFinished) {
- _textView.ProcessKey (new KeyEvent (Key.Backspace | Key.CtrlMask, new KeyModifiers ()));
- switch (iteration) {
- case 0:
- Assert.Equal (19, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first line." + Environment.NewLine
- + "This is the second ", _textView.Text);
- break;
- case 1:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first line." + Environment.NewLine
- + "This is the ", _textView.Text);
- break;
- case 2:
- Assert.Equal (8, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first line." + Environment.NewLine
- + "This is ", _textView.Text);
- break;
- case 3:
- Assert.Equal (5, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first line." + Environment.NewLine
- + "This ", _textView.Text);
- break;
- case 4:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (1, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first line." + Environment.NewLine, _textView.Text);
- break;
- case 5:
- Assert.Equal (23, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first line.", _textView.Text);
- break;
- case 6:
- Assert.Equal (18, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is the first ", _textView.Text);
- break;
- case 7:
- Assert.Equal (12, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is the ", _textView.Text);
- break;
- case 8:
- Assert.Equal (8, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This is ", _textView.Text);
- break;
- case 9:
- Assert.Equal (5, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("This ", _textView.Text);
- break;
- case 10:
- Assert.Equal (0, _textView.CursorPosition.X);
- Assert.Equal (0, _textView.CursorPosition.Y);
- Assert.Equal ("", _textView.Text);
- break;
- default:
- iterationsFinished = true;
- break;
- }
- iteration++;
- }
- }
- [Fact][InitShutdown]
- public void Copy_Or_Cut_Null_If_No_Selection ()
- {
- _textView.SelectionStartColumn = 0;
- _textView.SelectionStartRow = 0;
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- Assert.Equal ("", _textView.SelectedText);
- _textView.ProcessKey (new KeyEvent (Key.W | Key.CtrlMask, new KeyModifiers ())); // Cut
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void Copy_Or_Cut_Not_Null_If_Has_Selection ()
- {
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- Assert.Equal ("text", _textView.SelectedText);
- _textView.ProcessKey (new KeyEvent (Key.W | Key.CtrlMask, new KeyModifiers ())); // Cut
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void Copy_Or_Cut_And_Paste_With_Selection ()
- {
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- Assert.Equal ("text", _textView.SelectedText);
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.ProcessKey (new KeyEvent (Key.W | Key.CtrlMask, new KeyModifiers ())); // Cut
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- }
- [Fact][InitShutdown]
- public void Copy_Or_Cut_And_Paste_With_No_Selection ()
- {
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- Assert.Equal ("text", _textView.SelectedText);
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.SelectionStartColumn = 0;
- _textView.SelectionStartRow = 0;
- Assert.True (_textView.Selecting);
- _textView.Selecting = false;
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ("TAB to jump between texttext fields.", _textView.Text);
- _textView.SelectionStartColumn = 24;
- _textView.SelectionStartRow = 0;
- _textView.ProcessKey (new KeyEvent (Key.W | Key.CtrlMask, new KeyModifiers ())); // Cut
- Assert.Equal ("", _textView.SelectedText);
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.SelectionStartColumn = 0;
- _textView.SelectionStartRow = 0;
- Assert.True (_textView.Selecting);
- _textView.Selecting = false;
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ("TAB to jump between texttext fields.", _textView.Text);
- }
- [Fact][InitShutdown]
- public void Cut_Not_Allowed_If_ReadOnly_Is_True ()
- {
- _textView.ReadOnly = true;
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- Assert.Equal ("text", _textView.SelectedText);
- _textView.ProcessKey (new KeyEvent (Key.W | Key.CtrlMask, new KeyModifiers ())); // Selecting is set to false after Cut.
- Assert.Equal ("", _textView.SelectedText);
- _textView.ReadOnly = false;
- Assert.False (_textView.Selecting);
- _textView.Selecting = true; // Needed to set Selecting to true.
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- Assert.Equal ("text", _textView.SelectedText);
- _textView.ProcessKey (new KeyEvent (Key.W | Key.CtrlMask, new KeyModifiers ())); // Cut
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void Paste_Always_Clear_The_SelectedText ()
- {
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- Assert.Equal ("text", _textView.SelectedText);
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact][InitShutdown]
- public void TextChanged_Event ()
- {
- _textView.TextChanged += () => {
- if (_textView.Text == "changing") {
- Assert.Equal ("changing", _textView.Text);
- _textView.Text = "changed";
- }
- };
- _textView.Text = "changing";
- Assert.Equal ("changed", _textView.Text);
- }
- [Fact][InitShutdown]
- public void Used_Is_True_By_Default ()
- {
- _textView.CursorPosition = new Point (10, 0);
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent ((Key)0x75, new KeyModifiers ())); // u
- Assert.Equal ("TAB to jumup between text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent ((Key)0x73, new KeyModifiers ())); // s
- Assert.Equal ("TAB to jumusp between text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent ((Key)0x65, new KeyModifiers ())); // e
- Assert.Equal ("TAB to jumusep between text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent ((Key)0x64, new KeyModifiers ())); // d
- Assert.Equal ("TAB to jumusedp between text fields.", _textView.Text);
- }
- [Fact][InitShutdown]
- public void Used_Is_False ()
- {
- _textView.Used = false;
- _textView.CursorPosition = new Point (10, 0);
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent ((Key)0x75, new KeyModifiers ())); // u
- Assert.Equal ("TAB to jumu between text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent ((Key)0x73, new KeyModifiers ())); // s
- Assert.Equal ("TAB to jumusbetween text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent ((Key)0x65, new KeyModifiers ())); // e
- Assert.Equal ("TAB to jumuseetween text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent ((Key)0x64, new KeyModifiers ())); // d
- Assert.Equal ("TAB to jumusedtween text fields.", _textView.Text);
- }
- [Fact][InitShutdown]
- public void Copy_Without_Selection ()
- {
- _textView.Text = "This is the first line.\nThis is the second line.\n";
- _textView.CursorPosition = new Point (0, _textView.Lines - 1);
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ($"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}{Environment.NewLine}", _textView.Text);
- _textView.CursorPosition = new Point (3, 1);
- _textView.ProcessKey (new KeyEvent (Key.C | Key.CtrlMask, new KeyModifiers ())); // Copy
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ($"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the second line.{Environment.NewLine}{Environment.NewLine}", _textView.Text);
- Assert.Equal (new Point (3, 2), _textView.CursorPosition);
- _textView.ProcessKey (new KeyEvent (Key.Y | Key.CtrlMask, new KeyModifiers ())); // Paste
- Assert.Equal ($"This is the first line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the second line.{Environment.NewLine}This is the second line.{Environment.NewLine}{Environment.NewLine}", _textView.Text);
- Assert.Equal (new Point (3, 3), _textView.CursorPosition);
- }
- [Fact][InitShutdown]
- public void TabWidth_Setting_To_Zero_Changes_AllowsTab_To_False_If_True ()
- {
- Assert.Equal (4, _textView.TabWidth);
- Assert.True (_textView.AllowsTab);
- Assert.True (_textView.AllowsReturn);
- Assert.True (_textView.Multiline);
- _textView.TabWidth = -1;
- Assert.Equal (0, _textView.TabWidth);
- Assert.False (_textView.AllowsTab);
- Assert.False (_textView.AllowsReturn);
- Assert.False (_textView.Multiline);
- _textView.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ()));
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.ProcessKey (new KeyEvent (Key.BackTab, new KeyModifiers ()));
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- }
- [Fact][InitShutdown]
- public void AllowsTab_Setting_To_True_Changes_TabWidth_To_Default_If_It_Is_Zero ()
- {
- _textView.TabWidth = 0;
- Assert.Equal (0, _textView.TabWidth);
- Assert.False (_textView.AllowsTab);
- Assert.False (_textView.AllowsReturn);
- Assert.False (_textView.Multiline);
- _textView.AllowsTab = true;
- Assert.True (_textView.AllowsTab);
- Assert.Equal (4, _textView.TabWidth);
- Assert.True (_textView.AllowsReturn);
- Assert.True (_textView.Multiline);
- }
- [Fact][InitShutdown]
- public void AllowsReturn_Setting_To_True_Changes_Multiline_To_True_If_It_Is_False ()
- {
- Assert.True (_textView.AllowsReturn);
- Assert.True (_textView.Multiline);
- Assert.Equal (4, _textView.TabWidth);
- Assert.True (_textView.AllowsTab);
- _textView.ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()));
- Assert.Equal (Environment.NewLine +
- "TAB to jump between text fields.", _textView.Text);
- _textView.AllowsReturn = false;
- Assert.False (_textView.AllowsReturn);
- Assert.False (_textView.Multiline);
- Assert.Equal (0, _textView.TabWidth);
- Assert.False (_textView.AllowsTab);
- _textView.ProcessKey (new KeyEvent (Key.Enter, new KeyModifiers ()));
- Assert.Equal (Environment.NewLine +
- "TAB to jump between text fields.", _textView.Text);
- }
- [Fact][InitShutdown]
- public void Multiline_Setting_Changes_AllowsReturn_And_AllowsTab_And_Height ()
- {
- Assert.True (_textView.Multiline);
- Assert.True (_textView.AllowsReturn);
- Assert.Equal (4, _textView.TabWidth);
- Assert.True (_textView.AllowsTab);
- Assert.Equal ("Dim.Absolute(30)", _textView.Width.ToString ());
- Assert.Equal ("Dim.Absolute(10)", _textView.Height.ToString ());
- _textView.Multiline = false;
- Assert.False (_textView.Multiline);
- Assert.False (_textView.AllowsReturn);
- Assert.Equal (0, _textView.TabWidth);
- Assert.False (_textView.AllowsTab);
- Assert.Equal ("Dim.Absolute(30)", _textView.Width.ToString ());
- Assert.Equal ("Dim.Absolute(1)", _textView.Height.ToString ());
- _textView.Multiline = true;
- Assert.True (_textView.Multiline);
- Assert.True (_textView.AllowsReturn);
- Assert.Equal (4, _textView.TabWidth);
- Assert.True (_textView.AllowsTab);
- Assert.Equal ("Dim.Absolute(30)", _textView.Width.ToString ());
- Assert.Equal ("Dim.Absolute(10)", _textView.Height.ToString ());
- }
- [Fact][InitShutdown]
- public void Tab_Test_Follow_By_BackTab ()
- {
- Application.Top.Add (_textView);
- Application.Iteration += () => {
- var width = _textView.Bounds.Width - 1;
- Assert.Equal (30, width + 1);
- Assert.Equal (10, _textView.Height);
- _textView.Text = "";
- var col = 0;
- var leftCol = 0;
- var tabWidth = _textView.TabWidth;
- while (col < 100) {
- col++;
- _textView.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- while (col > 0) {
- col--;
- _textView.ProcessKey (new KeyEvent (Key.BackTab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- Application.Top.Remove (_textView);
- Application.RequestStop ();
- };
- Application.Run ();
- }
- [Fact][InitShutdown]
- public void BackTab_Test_Follow_By_Tab ()
- {
- Application.Top.Add (_textView);
- Application.Iteration += () => {
- var width = _textView.Bounds.Width - 1;
- Assert.Equal (30, width + 1);
- Assert.Equal (10, _textView.Height);
- _textView.Text = "";
- for (int i = 0; i < 100; i++) {
- _textView.Text += "\t";
- }
- var col = 100;
- var tabWidth = _textView.TabWidth;
- var leftCol = _textView.LeftColumn;
- _textView.MoveEnd ();
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- while (col > 0) {
- col--;
- _textView.ProcessKey (new KeyEvent (Key.BackTab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- while (col < 100) {
- col++;
- _textView.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- Application.Top.Remove (_textView);
- Application.RequestStop ();
- };
- Application.Run ();
- }
- [Fact][InitShutdown]
- public void Tab_Test_Follow_By_CursorLeft_And_Then_Follow_By_CursorRight ()
- {
- Application.Top.Add (_textView);
- Application.Iteration += () => {
- var width = _textView.Bounds.Width - 1;
- Assert.Equal (30, width + 1);
- Assert.Equal (10, _textView.Height);
- _textView.Text = "";
- var col = 0;
- var leftCol = 0;
- var tabWidth = _textView.TabWidth;
- while (col < 100) {
- col++;
- _textView.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- while (col > 0) {
- col--;
- _textView.ProcessKey (new KeyEvent (Key.CursorLeft, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- while (col < 100) {
- col++;
- _textView.ProcessKey (new KeyEvent (Key.CursorRight, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- Application.Top.Remove (_textView);
- Application.RequestStop ();
- };
- Application.Run ();
- }
- [Fact][InitShutdown]
- public void Tab_Test_Follow_By_BackTab_With_Text ()
- {
- Application.Top.Add (_textView);
- Application.Iteration += () => {
- var width = _textView.Bounds.Width - 1;
- Assert.Equal (30, width + 1);
- Assert.Equal (10, _textView.Height);
- var col = 0;
- var leftCol = 0;
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- Assert.Equal (leftCol, _textView.LeftColumn);
- while (col < 100) {
- col++;
- _textView.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- while (col > 0) {
- col--;
- _textView.ProcessKey (new KeyEvent (Key.BackTab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- Application.Top.Remove (_textView);
- Application.RequestStop ();
- };
- Application.Run ();
- }
- [Fact][InitShutdown]
- public void Tab_Test_Follow_By_Home_And_Then_Follow_By_End_And_Then_Follow_By_BackTab_With_Text ()
- {
- Application.Top.Add (_textView);
- Application.Iteration += () => {
- var width = _textView.Bounds.Width - 1;
- Assert.Equal (30, width + 1);
- Assert.Equal (10, _textView.Height);
- var col = 0;
- var leftCol = 0;
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- Assert.Equal (leftCol, _textView.LeftColumn);
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- Assert.Equal (32, _textView.Text.Length);
- while (col < 100) {
- col++;
- _textView.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- _textView.ProcessKey (new KeyEvent (Key.Home, new KeyModifiers ()));
- col = 0;
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = 0;
- Assert.Equal (leftCol, _textView.LeftColumn);
- _textView.ProcessKey (new KeyEvent (Key.End, new KeyModifiers ()));
- col = _textView.Text.Length;
- Assert.Equal (132, _textView.Text.Length);
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- var txt = _textView.Text;
- while (col - 1 > 0 && txt [col - 1] != '\t') {
- col--;
- }
- _textView.CursorPosition = new Point (col, 0);
- leftCol = GetLeftCol (leftCol);
- while (col > 0) {
- col--;
- _textView.ProcessKey (new KeyEvent (Key.BackTab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- Assert.Equal (32, _textView.Text.Length);
- Application.Top.Remove (_textView);
- Application.RequestStop ();
- };
- Application.Run ();
- }
- [Fact][InitShutdown]
- public void Tab_Test_Follow_By_CursorLeft_And_Then_Follow_By_CursorRight_With_Text ()
- {
- Application.Top.Add (_textView);
- Application.Iteration += () => {
- var width = _textView.Bounds.Width - 1;
- Assert.Equal (30, width + 1);
- Assert.Equal (10, _textView.Height);
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- var col = 0;
- var leftCol = 0;
- var tabWidth = _textView.TabWidth;
- while (col < 100) {
- col++;
- _textView.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- Assert.Equal (132, _textView.Text.Length);
- while (col > 0) {
- col--;
- _textView.ProcessKey (new KeyEvent (Key.CursorLeft, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- while (col < 100) {
- col++;
- _textView.ProcessKey (new KeyEvent (Key.CursorRight, new KeyModifiers ()));
- Assert.Equal (new Point (col, 0), _textView.CursorPosition);
- leftCol = GetLeftCol (leftCol);
- Assert.Equal (leftCol, _textView.LeftColumn);
- }
- Application.Top.Remove (_textView);
- Application.RequestStop ();
- };
- Application.Run ();
- }
- private int GetLeftCol (int start)
- {
- var lines = _textView.Text.Split (Environment.NewLine);
- if (lines == null || lines.Length == 0) {
- return 0;
- }
- if (start == _textView.LeftColumn) {
- return start;
- }
- if (_textView.LeftColumn == _textView.CurrentColumn) {
- return _textView.CurrentColumn;
- }
- var cCol = _textView.CurrentColumn;
- var line = lines [_textView.CurrentRow];
- var lCount = cCol > line.Length - 1 ? line.Length - 1 : cCol;
- var width = _textView.Frame.Width;
- var tabWidth = _textView.TabWidth;
- var sumLength = 0;
- var col = 0;
- for (int i = lCount; i >= 0; i--) {
- var r = line [i];
- sumLength += Rune.ColumnWidth (r);
- if (r == '\t') {
- sumLength += tabWidth + 1;
- }
- if (sumLength > width) {
- if (cCol == line.Length) {
- col++;
- }
- break;
- } else if (cCol < line.Length && col > 0 && start < cCol && col == start) {
- break;
- }
- col = i;
- }
- return col;
- }
- }
- }
|