forked from gui-cs/Terminal.Gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatusBarTests.cs
More file actions
160 lines (124 loc) · 4.18 KB
/
StatusBarTests.cs
File metadata and controls
160 lines (124 loc) · 4.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
using System;
using Xunit;
using Xunit.Abstractions;
namespace Terminal.Gui.Views {
public class StatusBarTests {
readonly ITestOutputHelper output;
public StatusBarTests (ITestOutputHelper output)
{
this.output = output;
}
[Fact]
public void StatusItem_Constructor ()
{
var si = new StatusItem (Key.CtrlMask | Key.Q, "~^Q~ Quit", null);
Assert.Equal (Key.CtrlMask | Key.Q, si.Shortcut);
Assert.Equal ("~^Q~ Quit", si.Title);
Assert.Null (si.Action);
si = new StatusItem (Key.CtrlMask | Key.Q, "~^Q~ Quit", () => { });
Assert.NotNull (si.Action);
}
[Fact]
public void StatusBar_Contructor_Default ()
{
var sb = new StatusBar ();
Assert.Empty (sb.Items);
Assert.False (sb.CanFocus);
Assert.Equal (Colors.Menu, sb.ColorScheme);
Assert.Equal (0, sb.X);
Assert.Equal (Dim.Fill (), sb.Width);
Assert.Equal (1, sb.Height);
Assert.Null (sb.Y);
var driver = new FakeDriver ();
Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
sb = new StatusBar ();
driver.SetCursorVisibility (CursorVisibility.Default);
driver.GetCursorVisibility (out CursorVisibility cv);
Assert.Equal (CursorVisibility.Default, cv);
Assert.True (FakeConsole.CursorVisible);
Application.Iteration += () => {
Assert.Equal (24, sb.Y);
driver.SetWindowSize (driver.Cols, 15);
Assert.Equal (14, sb.Y);
sb.OnEnter (null);
driver.GetCursorVisibility (out cv);
Assert.Equal (CursorVisibility.Invisible, cv);
Assert.False (FakeConsole.CursorVisible);
Application.RequestStop ();
};
Application.Top.Add (sb);
Application.Run ();
Application.Shutdown ();
}
[Fact]
[AutoInitShutdown]
public void Run_Action_With_Key_And_Mouse ()
{
var msg = "";
var sb = new StatusBar (new StatusItem [] { new StatusItem (Key.CtrlMask | Key.Q, "~^Q~ Quit", () => msg = "Quiting...") });
Application.Top.Add (sb);
var iteration = 0;
Application.Iteration += () => {
if (iteration == 0) {
Assert.Equal ("", msg);
sb.ProcessHotKey (new KeyEvent (Key.CtrlMask | Key.Q, null));
} else if (iteration == 1) {
Assert.Equal ("Quiting...", msg);
msg = "";
sb.MouseEvent (new MouseEvent () { X = 1, Y = 24, Flags = MouseFlags.Button1Clicked });
} else {
Assert.Equal ("Quiting...", msg);
Application.RequestStop ();
}
iteration++;
};
Application.Run ();
}
[Fact]
[AutoInitShutdown]
public void Redraw_Output ()
{
var sb = new StatusBar (new StatusItem [] {
new StatusItem (Key.CtrlMask | Key.Q, "~^O~ Open", null),
new StatusItem (Key.CtrlMask | Key.Q, "~^Q~ Quit", null)
});
Application.Top.Add (sb);
sb.Redraw (sb.Bounds);
string expected = @$"
^O Open {Application.Driver.VLine} ^Q Quit
";
TestHelpers.AssertDriverContentsAre (expected, output);
sb = new StatusBar (new StatusItem [] {
new StatusItem (Key.CtrlMask | Key.Q, "~CTRL-O~ Open", null),
new StatusItem (Key.CtrlMask | Key.Q, "~CTRL-Q~ Quit", null)
});
sb.Redraw (sb.Bounds);
expected = @$"
CTRL-O Open {Application.Driver.VLine} CTRL-Q Quit
";
TestHelpers.AssertDriverContentsAre (expected, output);
}
[Fact]
public void AddItemAt_RemoveItem_Replacing ()
{
var sb = new StatusBar (new StatusItem [] {
new StatusItem (Key.CtrlMask | Key.Q, "~^O~ Open", null),
new StatusItem (Key.CtrlMask | Key.Q, "~^S~ Save", null),
new StatusItem (Key.CtrlMask | Key.Q, "~^Q~ Quit", null)
});
sb.AddItemAt (2, new StatusItem (Key.CtrlMask | Key.Q, "~^C~ Close", null));
Assert.Equal ("~^O~ Open", sb.Items [0].Title);
Assert.Equal ("~^S~ Save", sb.Items [1].Title);
Assert.Equal ("~^C~ Close", sb.Items [2].Title);
Assert.Equal ("~^Q~ Quit", sb.Items [^1].Title);
Assert.Equal ("~^S~ Save", sb.RemoveItem (1).Title);
Assert.Equal ("~^O~ Open", sb.Items [0].Title);
Assert.Equal ("~^C~ Close", sb.Items [1].Title);
Assert.Equal ("~^Q~ Quit", sb.Items [^1].Title);
sb.Items [1] = new StatusItem (Key.CtrlMask | Key.A, "~^A~ Save As", null);
Assert.Equal ("~^O~ Open", sb.Items [0].Title);
Assert.Equal ("~^A~ Save As", sb.Items [1].Title);
Assert.Equal ("~^Q~ Quit", sb.Items [^1].Title);
}
}
}