| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- using System.ComponentModel;
- using UnitTests;
- using Xunit.Abstractions;
- // ReSharper disable AccessToModifiedClosure
- namespace UnitTests.ViewsTests;
- public class CheckBoxTests (ITestOutputHelper output)
- {
- private static readonly Size _size25x1 = new (25, 1);
- #region Mouse Tests
- #endregion Mouse Tests
- [Fact]
- [AutoInitShutdown]
- public void TextAlignment_Centered ()
- {
- var checkBox = new CheckBox
- {
- X = 1,
- Y = Pos.Center (),
- Text = "Check this out 你",
- TextAlignment = Alignment.Center,
- Width = 25
- };
- var win = new Window { Width = Dim.Fill (), Height = Dim.Fill (), Title = "Test Demo 你" };
- win.Add (checkBox);
- var top = new Runnable ();
- top.Add (win);
- Application.Begin (top);
- Application.Driver?.SetScreenSize (30, 5);
- Application.LayoutAndDraw ();
- Assert.Equal (Alignment.Center, checkBox.TextAlignment);
- Assert.Equal (new (1, 1, 25, 1), checkBox.Frame);
- Assert.Equal (_size25x1, checkBox.TextFormatter.ConstrainToSize);
- var expected = @$"
- ┌┤Test Demo 你├──────────────┐
- │ │
- │ {Glyphs.CheckStateUnChecked} Check this out 你 │
- │ │
- └────────────────────────────┘
- ";
- Rectangle pos = DriverAssert.AssertDriverContentsWithFrameAre (expected, output);
- Assert.Equal (new (0, 0, 30, 5), pos);
- checkBox.CheckedState = CheckState.Checked;
- Application.LayoutAndDraw ();
- expected = @$"
- ┌┤Test Demo 你├──────────────┐
- │ │
- │ {Glyphs.CheckStateChecked} Check this out 你 │
- │ │
- └────────────────────────────┘
- ";
- pos = DriverAssert.AssertDriverContentsWithFrameAre (expected, output);
- Assert.Equal (new (0, 0, 30, 5), pos);
- top.Dispose ();
- }
- [Fact]
- [AutoInitShutdown]
- public void TextAlignment_Justified ()
- {
- var checkBox1 = new CheckBox
- {
- X = 1,
- Y = Pos.Center (),
- Text = "Check first out 你",
- TextAlignment = Alignment.Fill,
- Width = 25
- };
- var checkBox2 = new CheckBox
- {
- X = 1,
- Y = Pos.Bottom (checkBox1),
- Text = "Check second out 你",
- TextAlignment = Alignment.Fill,
- Width = 25
- };
- var win = new Window { Width = Dim.Fill (), Height = Dim.Fill (), Title = "Test Demo 你" };
- win.Add (checkBox1, checkBox2);
- var top = new Runnable ();
- top.Add (win);
- SessionToken rs = Application.Begin (top);
- Application.Driver!.SetScreenSize (30, 6);
- Application.LayoutAndDraw ();
- Assert.Equal (Alignment.Fill, checkBox1.TextAlignment);
- Assert.Equal (new (1, 1, 25, 1), checkBox1.Frame);
- Assert.Equal (Alignment.Fill, checkBox2.TextAlignment);
- Assert.Equal (new (1, 2, 25, 1), checkBox2.Frame);
- var expected = @$"
- ┌┤Test Demo 你├──────────────┐
- │ │
- │ {Glyphs.CheckStateUnChecked} Check first out 你 │
- │ {Glyphs.CheckStateUnChecked} Check second out 你 │
- │ │
- └────────────────────────────┘
- ";
- Rectangle pos = DriverAssert.AssertDriverContentsWithFrameAre (expected, output);
- Assert.Equal (new (0, 0, 30, 6), pos);
- checkBox1.CheckedState = CheckState.Checked;
- AutoInitShutdownAttribute.RunIteration ();
- Assert.Equal (new (1, 1, 25, 1), checkBox1.Frame);
- Assert.Equal (_size25x1, checkBox1.TextFormatter.ConstrainToSize);
- checkBox2.CheckedState = CheckState.Checked;
- AutoInitShutdownAttribute.RunIteration ();
- Assert.Equal (new (1, 2, 25, 1), checkBox2.Frame);
- Assert.Equal (_size25x1, checkBox2.TextFormatter.ConstrainToSize);
- AutoInitShutdownAttribute.RunIteration ();
- expected = @$"
- ┌┤Test Demo 你├──────────────┐
- │ │
- │ {Glyphs.CheckStateChecked} Check first out 你 │
- │ {Glyphs.CheckStateChecked} Check second out 你 │
- │ │
- └────────────────────────────┘
- ";
- pos = DriverAssert.AssertDriverContentsWithFrameAre (expected, output);
- Assert.Equal (new (0, 0, 30, 6), pos);
- top.Dispose ();
- }
- [Fact]
- [AutoInitShutdown]
- public void TextAlignment_Left ()
- {
- var checkBox = new CheckBox
- {
- X = 1,
- Y = Pos.Center (),
- Text = "Check this out 你",
- Width = 25
- };
- var win = new Window { Width = Dim.Fill (), Height = Dim.Fill (), Title = "Test Demo 你" };
- win.Add (checkBox);
- var top = new Runnable ();
- top.Add (win);
- Application.Begin (top);
- Application.Driver!.SetScreenSize (30, 5);
- Application.LayoutAndDraw ();
- Assert.Equal (Alignment.Start, checkBox.TextAlignment);
- Assert.Equal (new (1, 1, 25, 1), checkBox.Frame);
- Assert.Equal (_size25x1, checkBox.TextFormatter.ConstrainToSize);
- var expected = @$"
- ┌┤Test Demo 你├──────────────┐
- │ │
- │ {Glyphs.CheckStateUnChecked} Check this out 你 │
- │ │
- └────────────────────────────┘
- ";
- Rectangle pos = DriverAssert.AssertDriverContentsWithFrameAre (expected, output);
- Assert.Equal (new (0, 0, 30, 5), pos);
- checkBox.CheckedState = CheckState.Checked;
- AutoInitShutdownAttribute.RunIteration ();
- expected = @$"
- ┌┤Test Demo 你├──────────────┐
- │ │
- │ {Glyphs.CheckStateChecked} Check this out 你 │
- │ │
- └────────────────────────────┘
- ";
- pos = DriverAssert.AssertDriverContentsWithFrameAre (expected, output);
- Assert.Equal (new (0, 0, 30, 5), pos);
- top.Dispose ();
- }
- [Fact]
- [AutoInitShutdown]
- public void TextAlignment_Right ()
- {
- var checkBox = new CheckBox
- {
- X = 1,
- Y = Pos.Center (),
- Text = "Check this out 你",
- TextAlignment = Alignment.End,
- Width = 25
- };
- var win = new Window { Width = Dim.Fill (), Height = Dim.Fill (), Title = "Test Demo 你" };
- win.Add (checkBox);
- var top = new Runnable ();
- top.Add (win);
- Application.Begin (top);
- Application.Driver!.SetScreenSize (30, 5);
- Application.LayoutAndDraw ();
- Assert.Equal (Alignment.End, checkBox.TextAlignment);
- Assert.Equal (new (1, 1, 25, 1), checkBox.Frame);
- Assert.Equal (_size25x1, checkBox.TextFormatter.ConstrainToSize);
- var expected = @$"
- ┌┤Test Demo 你├──────────────┐
- │ │
- │ Check this out 你 {Glyphs.CheckStateUnChecked} │
- │ │
- └────────────────────────────┘
- ";
- Rectangle pos = DriverAssert.AssertDriverContentsWithFrameAre (expected, output);
- Assert.Equal (new (0, 0, 30, 5), pos);
- checkBox.CheckedState = CheckState.Checked;
- AutoInitShutdownAttribute.RunIteration ();
- expected = @$"
- ┌┤Test Demo 你├──────────────┐
- │ │
- │ Check this out 你 {Glyphs.CheckStateChecked} │
- │ │
- └────────────────────────────┘
- ";
- pos = DriverAssert.AssertDriverContentsWithFrameAre (expected, output);
- Assert.Equal (new (0, 0, 30, 5), pos);
- top.Dispose ();
- }
- [Fact]
- public void HotKey_Command_Does_Not_Fire_Accept ()
- {
- var cb = new CheckBox ();
- var accepted = false;
- cb.Accepting += CheckBoxOnAccept;
- cb.InvokeCommand (Command.HotKey);
- Assert.False (accepted);
- return;
- void CheckBoxOnAccept (object sender, CommandEventArgs e) { accepted = true; }
- }
- [Theory]
- [InlineData (CheckState.Checked)]
- [InlineData (CheckState.UnChecked)]
- [InlineData (CheckState.None)]
- public void Activated_Handle_Event_Prevents_Change (CheckState initialState)
- {
- var ckb = new CheckBox { AllowCheckStateNone = true };
- var checkedInvoked = false;
- ckb.CheckedState = initialState;
- ckb.Activating += OnActivating;
- Assert.Equal (initialState, ckb.CheckedState);
- bool? ret = ckb.InvokeCommand (Command.Activate);
- Assert.True (ret);
- Assert.True (checkedInvoked);
- Assert.Equal (initialState, ckb.CheckedState);
- return;
- void OnActivating (object sender, CommandEventArgs e)
- {
- checkedInvoked = true;
- e.Handled = true;
- }
- }
- [Theory]
- [InlineData (CheckState.Checked)]
- [InlineData (CheckState.UnChecked)]
- [InlineData (CheckState.None)]
- public void CheckedStateChanging_Cancel_Event_Prevents_Change (CheckState initialState)
- {
- var ckb = new CheckBox { AllowCheckStateNone = true };
- var checkedInvoked = false;
- ckb.CheckedState = initialState;
- ckb.CheckedStateChanging += OnCheckedStateChanging;
- Assert.Equal (initialState, ckb.CheckedState);
- // AdvanceCheckState returns false if the state was changed, true if it was cancelled, null if it was not changed
- bool? ret = ckb.AdvanceCheckState ();
- Assert.True (ret);
- Assert.True (checkedInvoked);
- Assert.Equal (initialState, ckb.CheckedState);
- return;
- void OnCheckedStateChanging (object sender, ResultEventArgs<CheckState> e)
- {
- checkedInvoked = true;
- e.Handled = true;
- }
- }
- }
|