mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
* Initial commit for Wizard
* Fixes #1777 - Dialog button justification. Adds unit tests
* Added missing API doc
* Work in progress
* Added tests for wide chars
* Tests
* more tests
* wip
* fixed test that broke by adjusting dialog button alignment
* fixed test that broke by adjusting dialog button alignment
* Fixed Dialogs scenario crash re: Parse v TryParse
* broke tests. can't figure out how.
* Revert "broke tests. can't figure out how."
This reverts commit f3c53928ac.
* Fixed unit tests
* Reverted workaround that doesn't work
* Refactor and cleanup
517 lines
22 KiB
C#
517 lines
22 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Terminal.Gui;
|
|
using Xunit;
|
|
using System.Globalization;
|
|
using Xunit.Abstractions;
|
|
using NStack;
|
|
|
|
namespace Terminal.Gui.Views {
|
|
|
|
public class DialogTests {
|
|
readonly ITestOutputHelper output;
|
|
|
|
public DialogTests (ITestOutputHelper output)
|
|
{
|
|
this.output = output;
|
|
}
|
|
|
|
private (Application.RunState, Dialog) RunButtonTestDialog (string title, int width, Dialog.ButtonAlignments align, params Button [] btns)
|
|
{
|
|
var dlg = new Dialog (title, width, 3, btns) { ButtonAlignment = align };
|
|
return (Application.Begin (dlg), dlg);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void ButtonAlignment_One ()
|
|
{
|
|
var d = ((FakeDriver)Application.Driver);
|
|
Application.RunState runstate = null;
|
|
|
|
var title = "1234";
|
|
// E.g "|[ ok ]|"
|
|
var btnText = "ok";
|
|
var buttonRow = $"{d.VLine} {d.LeftBracket} {btnText} {d.RightBracket} {d.VLine}";
|
|
var width = buttonRow.Length;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
|
|
d.SetBufferSize (width, 3);
|
|
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, new Button (btnText));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Justify
|
|
buttonRow = $"{d.VLine} {d.LeftBracket} {btnText} {d.RightBracket}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Justify, new Button (btnText));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Right
|
|
buttonRow = $"{d.VLine} {d.LeftBracket} {btnText} {d.RightBracket}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Right, new Button (btnText));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Left
|
|
buttonRow = $"{d.VLine}{d.LeftBracket} {btnText} {d.RightBracket} {d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Left, new Button (btnText));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void ButtonAlignment_Two ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
// E.g "|[ yes ][ no ]|"
|
|
var btn1Text = "yes";
|
|
var btn1 = $"{d.LeftBracket} {btn1Text} {d.RightBracket}";
|
|
var btn2Text = "no";
|
|
var btn2 = $"{d.LeftBracket} {btn2Text} {d.RightBracket}";
|
|
|
|
var buttonRow = $@"{d.VLine} {btn1} {btn2} {d.VLine}";
|
|
var width = buttonRow.Length;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
|
|
d.SetBufferSize (buttonRow.Length, 3);
|
|
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, new Button (btn1Text), new Button (btn2Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Justify
|
|
buttonRow = $@"{d.VLine}{btn1} {btn2}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Justify, new Button (btn1Text), new Button (btn2Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Right
|
|
buttonRow = $@"{d.VLine} {btn1} {btn2}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Right, new Button (btn1Text), new Button (btn2Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Left
|
|
buttonRow = $@"{d.VLine}{btn1} {btn2} {d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Left, new Button (btn1Text), new Button (btn2Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void ButtonAlignment_Two_Hidden ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
bool firstIteration = false;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
// E.g "|[ yes ][ no ]|"
|
|
var btn1Text = "yes";
|
|
var btn1 = $"{d.LeftBracket} {btn1Text} {d.RightBracket}";
|
|
var btn2Text = "no";
|
|
var btn2 = $"{d.LeftBracket} {btn2Text} {d.RightBracket}";
|
|
|
|
var buttonRow = $@"{d.VLine} {btn1} {btn2} {d.VLine}";
|
|
var width = buttonRow.Length;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
|
|
d.SetBufferSize (buttonRow.Length, 3);
|
|
|
|
Dialog dlg = null;
|
|
Button button1, button2;
|
|
|
|
//// Default (Center)
|
|
//button1 = new Button (btn1Text);
|
|
//button2 = new Button (btn2Text);
|
|
//(runstate, dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, button1, button2);
|
|
//button1.Visible = false;
|
|
//Application.RunMainLoopIteration (ref runstate, true, ref firstIteration);
|
|
//buttonRow = $@"{d.VLine} {btn2} {d.VLine}";
|
|
//GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
//Application.End (runstate);
|
|
|
|
// Justify
|
|
Assert.Equal (width, buttonRow.Length);
|
|
button1 = new Button (btn1Text);
|
|
button2 = new Button (btn2Text);
|
|
(runstate, dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Justify, button1, button2);
|
|
button1.Visible = false;
|
|
Application.RunMainLoopIteration (ref runstate, true, ref firstIteration);
|
|
buttonRow = $@"{d.VLine} {btn2}{d.VLine}";
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
//// Right
|
|
//buttonRow = $@"{d.VLine} {btn1} {btn2}{d.VLine}";
|
|
//Assert.Equal (width, buttonRow.Length);
|
|
//(runstate, dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Right, new Button (btn1Text), new Button (btn2Text));
|
|
//GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
//Application.End (runstate);
|
|
|
|
//// Left
|
|
//buttonRow = $@"{d.VLine}{btn1} {btn2} {d.VLine}";
|
|
//Assert.Equal (width, buttonRow.Length);
|
|
//(runstate, dlg) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Left, new Button (btn1Text), new Button (btn2Text));
|
|
//GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
//Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void ButtonAlignment_Three ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
// E.g "|[ yes ][ no ][ maybe ]|"
|
|
var btn1Text = "yes";
|
|
var btn1 = $"{d.LeftBracket} {btn1Text} {d.RightBracket}";
|
|
var btn2Text = "no";
|
|
var btn2 = $"{d.LeftBracket} {btn2Text} {d.RightBracket}";
|
|
var btn3Text = "maybe";
|
|
var btn3 = $"{d.LeftBracket} {btn3Text} {d.RightBracket}";
|
|
|
|
var buttonRow = $@"{d.VLine} {btn1} {btn2} {btn3} {d.VLine}";
|
|
var width = buttonRow.Length;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
|
|
d.SetBufferSize (buttonRow.Length, 3);
|
|
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Justify
|
|
buttonRow = $@"{d.VLine}{btn1} {btn2} {btn3}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Justify, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Right
|
|
buttonRow = $@"{d.VLine} {btn1} {btn2} {btn3}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Right, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Left
|
|
buttonRow = $@"{d.VLine}{btn1} {btn2} {btn3} {d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Left, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void ButtonAlignment_Four ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
|
|
// E.g "|[ yes ][ no ][ maybe ]|"
|
|
var btn1Text = "yes";
|
|
var btn1 = $"{d.LeftBracket} {btn1Text} {d.RightBracket}";
|
|
var btn2Text = "no";
|
|
var btn2 = $"{d.LeftBracket} {btn2Text} {d.RightBracket}";
|
|
var btn3Text = "maybe";
|
|
var btn3 = $"{d.LeftBracket} {btn3Text} {d.RightBracket}";
|
|
var btn4Text = "never";
|
|
var btn4 = $"{d.LeftBracket} {btn4Text} {d.RightBracket}";
|
|
|
|
var buttonRow = $"{d.VLine} {btn1} {btn2} {btn3} {btn4} {d.VLine}";
|
|
var width = buttonRow.Length;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
d.SetBufferSize (buttonRow.Length, 3);
|
|
|
|
// Default - Center
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Justify
|
|
buttonRow = $"{d.VLine}{btn1} {btn2} {btn3} {btn4}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Justify, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Right
|
|
buttonRow = $"{d.VLine} {btn1} {btn2} {btn3} {btn4}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Right, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Left
|
|
buttonRow = $"{d.VLine}{btn1} {btn2} {btn3} {btn4} {d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Left, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void ButtonAlignment_Four_Wider ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
|
|
// E.g "|[ yes ][ no ][ maybe ]|"
|
|
var btn1Text = "yes";
|
|
var btn1 = $"{d.LeftBracket} {btn1Text} {d.RightBracket}";
|
|
var btn2Text = "no";
|
|
var btn2 = $"{d.LeftBracket} {btn2Text} {d.RightBracket}";
|
|
var btn3Text = "你你你你你"; // This is a wide char
|
|
var btn3 = $"{d.LeftBracket} {btn3Text} {d.RightBracket}";
|
|
// Requires a Nerd Font
|
|
var btn4Text = "\uE36E\uE36F\uE370\uE371\uE372\uE373";
|
|
var btn4 = $"{d.LeftBracket} {btn4Text} {d.RightBracket}";
|
|
|
|
// Note extra spaces to make dialog even wider
|
|
// 12345 123456
|
|
var buttonRow = $"{d.VLine} {btn1} {btn2} {btn3} {btn4} {d.VLine}";
|
|
var width = ustring.Make (buttonRow).ConsoleWidth;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
d.SetBufferSize (width, 3);
|
|
|
|
// Default - Center
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Justify
|
|
buttonRow = $"{d.VLine}{btn1} {btn2} {btn3} {btn4}{d.VLine}";
|
|
Assert.Equal (width, ustring.Make (buttonRow).ConsoleWidth);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Justify, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Right
|
|
buttonRow = $"{d.VLine} {btn1} {btn2} {btn3} {btn4}{d.VLine}";
|
|
Assert.Equal (width, ustring.Make (buttonRow).ConsoleWidth);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Right, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Left
|
|
buttonRow = $"{d.VLine}{btn1} {btn2} {btn3} {btn4} {d.VLine}";
|
|
Assert.Equal (width, ustring.Make (buttonRow).ConsoleWidth);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Left, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void ButtonAlignment_Four_WideOdd ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
|
|
// E.g "|[ yes ][ no ][ maybe ]|"
|
|
var btn1Text = "really long button 1";
|
|
var btn1 = $"{d.LeftBracket} {btn1Text} {d.RightBracket}";
|
|
var btn2Text = "really long button 2";
|
|
var btn2 = $"{d.LeftBracket} {btn2Text} {d.RightBracket}";
|
|
var btn3Text = "really long button 3";
|
|
var btn3 = $"{d.LeftBracket} {btn3Text} {d.RightBracket}";
|
|
var btn4Text = "really long button 44"; // 44 is intentional to make length different than rest
|
|
var btn4 = $"{d.LeftBracket} {btn4Text} {d.RightBracket}";
|
|
|
|
// Note extra spaces to make dialog even wider
|
|
// 12345 123456
|
|
var buttonRow = $"{d.VLine} {btn1} {btn2} {btn3} {btn4} {d.VLine}";
|
|
var width = buttonRow.Length;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
d.SetBufferSize (buttonRow.Length, 3);
|
|
|
|
// Default - Center
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Justify
|
|
buttonRow = $"{d.VLine}{btn1} {btn2} {btn3} {btn4}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Justify, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Right
|
|
buttonRow = $"{d.VLine} {btn1} {btn2} {btn3} {btn4}{d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Right, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Left
|
|
buttonRow = $"{d.VLine}{btn1} {btn2} {btn3} {btn4} {d.VLine}";
|
|
Assert.Equal (width, buttonRow.Length);
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Left, new Button (btn1Text), new Button (btn2Text), new Button (btn3Text), new Button (btn4Text));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void Zero_Buttons_Works ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
|
|
var buttonRow = $"{d.VLine} {d.VLine}";
|
|
var width = buttonRow.Length;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
d.SetBufferSize (buttonRow.Length, 3);
|
|
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, null);
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
|
|
Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void One_Button_Works ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
var btnText = "ok";
|
|
var buttonRow = $"{d.VLine} {d.LeftBracket} {btnText} {d.RightBracket} {d.VLine}";
|
|
|
|
var width = buttonRow.Length;
|
|
var topRow = $"┌ {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}┐";
|
|
var bottomRow = $"└{new String (d.HLine.ToString () [0], width - 2)}┘";
|
|
d.SetBufferSize (buttonRow.Length, 3);
|
|
|
|
(runstate, var _) = RunButtonTestDialog (title, width, Dialog.ButtonAlignments.Center, new Button (btnText));
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
}
|
|
|
|
[Fact]
|
|
[AutoInitShutdown]
|
|
public void Add_Button_Works ()
|
|
{
|
|
Application.RunState runstate = null;
|
|
|
|
var d = ((FakeDriver)Application.Driver);
|
|
|
|
var title = "1234";
|
|
var btn1Text = "yes";
|
|
var btn1 = $"{d.LeftBracket} {btn1Text} {d.RightBracket}";
|
|
var btn2Text = "no";
|
|
var btn2 = $"{d.LeftBracket} {btn2Text} {d.RightBracket}";
|
|
|
|
// We test with one button first, but do this to get the width right for 2
|
|
var width = $@"{d.VLine} {btn1} {btn2} {d.VLine}".Length;
|
|
d.SetBufferSize (width, 3);
|
|
|
|
var topRow = $"{d.ULCorner} {title} {new String (d.HLine.ToString () [0], width - title.Length - 4)}{d.URCorner}";
|
|
var bottomRow = $"{d.LLCorner}{new String (d.HLine.ToString () [0], width - 2)}{d.LRCorner}";
|
|
|
|
// Default (center)
|
|
var dlg = new Dialog (title, width, 3, new Button (btn1Text)) { ButtonAlignment = Dialog.ButtonAlignments.Center };
|
|
runstate = Application.Begin (dlg);
|
|
var buttonRow = $"{d.VLine} {btn1} {d.VLine}";
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
|
|
// Now add a second button
|
|
buttonRow = $"{d.VLine} {btn1} {btn2} {d.VLine}";
|
|
dlg.AddButton (new Button (btn2Text));
|
|
bool first = false;
|
|
Application.RunMainLoopIteration (ref runstate, true, ref first);
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Justify
|
|
dlg = new Dialog (title, width, 3, new Button (btn1Text)) { ButtonAlignment = Dialog.ButtonAlignments.Justify };
|
|
runstate = Application.Begin (dlg);
|
|
buttonRow = $"{d.VLine} {btn1}{d.VLine}";
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
|
|
// Now add a second button
|
|
buttonRow = $"{d.VLine}{btn1} {btn2}{d.VLine}";
|
|
dlg.AddButton (new Button (btn2Text));
|
|
first = false;
|
|
Application.RunMainLoopIteration (ref runstate, true, ref first);
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Right
|
|
dlg = new Dialog (title, width, 3, new Button (btn1Text)) { ButtonAlignment = Dialog.ButtonAlignments.Right };
|
|
runstate = Application.Begin (dlg);
|
|
buttonRow = $"{d.VLine}{new String (' ', width - btn1.Length - 2)}{btn1}{d.VLine}";
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
|
|
// Now add a second button
|
|
buttonRow = $"{d.VLine} {btn1} {btn2}{d.VLine}";
|
|
dlg.AddButton (new Button (btn2Text));
|
|
first = false;
|
|
Application.RunMainLoopIteration (ref runstate, true, ref first);
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
|
|
// Left
|
|
dlg = new Dialog (title, width, 3, new Button (btn1Text)) { ButtonAlignment = Dialog.ButtonAlignments.Left };
|
|
runstate = Application.Begin (dlg);
|
|
buttonRow = $"{d.VLine}{btn1}{new String (' ', width - btn1.Length - 2)}{d.VLine}";
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
|
|
// Now add a second button
|
|
buttonRow = $"{d.VLine}{btn1} {btn2} {d.VLine}";
|
|
dlg.AddButton (new Button (btn2Text));
|
|
first = false;
|
|
Application.RunMainLoopIteration (ref runstate, true, ref first);
|
|
GraphViewTests.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
|
|
Application.End (runstate);
|
|
}
|
|
}
|
|
} |