123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797 |
- using Xunit;
- namespace Terminal.Gui {
- public class TextViewTests {
- private TextView _textView;
- public TextViewTests ()
- {
- 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;
- }
- [Fact]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- public void Copy_Or_Cut_Null_If_No_Selection ()
- {
- _textView.SelectionStartColumn = 0;
- _textView.SelectionStartRow = 0;
- _textView.Copy ();
- Assert.Equal ("", _textView.SelectedText);
- _textView.Cut ();
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact]
- public void Copy_Or_Cut_Not_Null_If_Has_Selection ()
- {
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.Copy ();
- Assert.Equal ("text", _textView.SelectedText);
- _textView.Cut ();
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact]
- public void Copy_Or_Cut_And_Paste_With_Selection ()
- {
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.Copy ();
- Assert.Equal ("text", _textView.SelectedText);
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.Paste ();
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.Cut ();
- _textView.Paste ();
- Assert.Equal ("TAB to jump between text fields.", _textView.Text);
- }
- [Fact]
- public void Copy_Or_Cut_And_Paste_With_No_Selection ()
- {
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.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.Paste ();
- Assert.Equal ("TAB to jump between texttext fields.", _textView.Text);
- _textView.SelectionStartColumn = 24;
- _textView.SelectionStartRow = 0;
- _textView.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.Paste ();
- Assert.Equal ("TAB to jump between texttext fields.", _textView.Text);
- }
- [Fact]
- 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.Copy ();
- Assert.Equal ("text", _textView.SelectedText);
- _textView.Cut (); // 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.Copy ();
- Assert.Equal ("text", _textView.SelectedText);
- _textView.Cut ();
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact]
- public void Paste_Always_Clear_The_SelectedText ()
- {
- _textView.SelectionStartColumn = 20;
- _textView.SelectionStartRow = 0;
- _textView.CursorPosition = new Point (24, 0);
- _textView.Copy ();
- Assert.Equal ("text", _textView.SelectedText);
- _textView.Paste ();
- Assert.Equal ("", _textView.SelectedText);
- }
- [Fact]
- 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]
- 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]
- 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);
- }
- }
- }
|