mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-02 01:03:29 +01:00
merged from develop after accident
This commit is contained in:
1413
UnitTests/Core/LayoutTests.cs
Normal file
1413
UnitTests/Core/LayoutTests.cs
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -19,8 +19,8 @@ namespace Terminal.Gui.TopLevelTests {
|
||||
var top = new Toplevel ();
|
||||
|
||||
Assert.Equal (Colors.TopLevel, top.ColorScheme);
|
||||
Assert.Equal ("Dim.Fill(margin=0)", top.Width.ToString ());
|
||||
Assert.Equal ("Dim.Fill(margin=0)", top.Height.ToString ());
|
||||
Assert.Equal ("Fill(0)", top.Width.ToString ());
|
||||
Assert.Equal ("Fill(0)", top.Height.ToString ());
|
||||
Assert.False (top.Running);
|
||||
Assert.False (top.Modal);
|
||||
Assert.Null (top.MenuBar);
|
||||
|
||||
@@ -37,15 +37,15 @@ namespace Terminal.Gui.TypeTests {
|
||||
public void Sized_SetsValue ()
|
||||
{
|
||||
var dim = Dim.Sized (0);
|
||||
Assert.Equal ("Dim.Absolute(0)", dim.ToString ());
|
||||
Assert.Equal ("Absolute(0)", dim.ToString ());
|
||||
|
||||
int testVal = 5;
|
||||
dim = Dim.Sized (testVal);
|
||||
Assert.Equal ($"Dim.Absolute({testVal})", dim.ToString ());
|
||||
Assert.Equal ($"Absolute({testVal})", dim.ToString ());
|
||||
|
||||
testVal = -1;
|
||||
dim = Dim.Sized (testVal);
|
||||
Assert.Equal ($"Dim.Absolute({testVal})", dim.ToString ());
|
||||
Assert.Equal ($"Absolute({testVal})", dim.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -83,11 +83,11 @@ namespace Terminal.Gui.TypeTests {
|
||||
var testVal = Rect.Empty;
|
||||
testVal = Rect.Empty;
|
||||
dim = Dim.Width (new View (testVal));
|
||||
Assert.Equal ($"DimView(side=Width, target=View()({{X={testVal.X},Y={testVal.Y},Width={testVal.Width},Height={testVal.Height}}}))", dim.ToString ());
|
||||
Assert.Equal ($"DimView(Width,View()({{X={testVal.X},Y={testVal.Y},Width={testVal.Width},Height={testVal.Height}}}))", dim.ToString ());
|
||||
|
||||
testVal = new Rect (1, 2, 3, 4);
|
||||
dim = Dim.Width (new View (testVal));
|
||||
Assert.Equal ($"DimView(side=Width, target=View()({{X={testVal.X},Y={testVal.Y},Width={testVal.Width},Height={testVal.Height}}}))", dim.ToString ());
|
||||
Assert.Equal ($"DimView(Width,View()({{X={testVal.X},Y={testVal.Y},Width={testVal.Width},Height={testVal.Height}}}))", dim.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -141,11 +141,11 @@ namespace Terminal.Gui.TypeTests {
|
||||
var testVal = Rect.Empty;
|
||||
testVal = Rect.Empty;
|
||||
dim = Dim.Height (new View (testVal));
|
||||
Assert.Equal ($"DimView(side=Height, target=View()({{X={testVal.X},Y={testVal.Y},Width={testVal.Width},Height={testVal.Height}}}))", dim.ToString ());
|
||||
Assert.Equal ($"DimView(Height,View()({{X={testVal.X},Y={testVal.Y},Width={testVal.Width},Height={testVal.Height}}}))", dim.ToString ());
|
||||
|
||||
testVal = new Rect (1, 2, 3, 4);
|
||||
dim = Dim.Height (new View (testVal));
|
||||
Assert.Equal ($"DimView(side=Height, target=View()({{X={testVal.X},Y={testVal.Y},Width={testVal.Width},Height={testVal.Height}}}))", dim.ToString ());
|
||||
Assert.Equal ($"DimView(Height,View()({{X={testVal.X},Y={testVal.Y},Width={testVal.Width},Height={testVal.Height}}}))", dim.ToString ());
|
||||
}
|
||||
|
||||
// TODO: Other Dim.Height tests (e.g. Equal?)
|
||||
@@ -155,15 +155,15 @@ namespace Terminal.Gui.TypeTests {
|
||||
{
|
||||
var testMargin = 0;
|
||||
var dim = Dim.Fill ();
|
||||
Assert.Equal ($"Dim.Fill(margin={testMargin})", dim.ToString ());
|
||||
Assert.Equal ($"Fill({testMargin})", dim.ToString ());
|
||||
|
||||
testMargin = 0;
|
||||
dim = Dim.Fill (testMargin);
|
||||
Assert.Equal ($"Dim.Fill(margin={testMargin})", dim.ToString ());
|
||||
Assert.Equal ($"Fill({testMargin})", dim.ToString ());
|
||||
|
||||
testMargin = 5;
|
||||
dim = Dim.Fill (testMargin);
|
||||
Assert.Equal ($"Dim.Fill(margin={testMargin})", dim.ToString ());
|
||||
Assert.Equal ($"Fill({testMargin})", dim.ToString ());
|
||||
}
|
||||
|
||||
|
||||
@@ -182,13 +182,13 @@ namespace Terminal.Gui.TypeTests {
|
||||
{
|
||||
float f = 0;
|
||||
var dim = Dim.Percent (f);
|
||||
Assert.Equal ($"Dim.Factor(factor={f / 100:0.###}, remaining={false})", dim.ToString ());
|
||||
Assert.Equal ($"Factor({f / 100:0.###},{false})", dim.ToString ());
|
||||
f = 0.5F;
|
||||
dim = Dim.Percent (f);
|
||||
Assert.Equal ($"Dim.Factor(factor={f / 100:0.###}, remaining={false})", dim.ToString ());
|
||||
Assert.Equal ($"Factor({f / 100:0.###},{false})", dim.ToString ());
|
||||
f = 100;
|
||||
dim = Dim.Percent (f);
|
||||
Assert.Equal ($"Dim.Factor(factor={f / 100:0.###}, remaining={false})", dim.ToString ());
|
||||
Assert.Equal ($"Factor({f / 100:0.###},{false})", dim.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -420,112 +420,111 @@ namespace Terminal.Gui.TypeTests {
|
||||
t.Add (w);
|
||||
|
||||
t.Ready += () => {
|
||||
Assert.Equal ("Dim.Absolute(100)", w.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(100)", w.Height.ToString ());
|
||||
Assert.Equal ("Absolute(100)", w.Width.ToString ());
|
||||
Assert.Equal ("Absolute(100)", w.Height.ToString ());
|
||||
Assert.Equal (100, w.Frame.Width);
|
||||
Assert.Equal (100, w.Frame.Height);
|
||||
|
||||
Assert.Equal ("Dim.Factor(factor=0.5, remaining=False)", f1.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(5)", f1.Height.ToString ());
|
||||
Assert.Equal ("Factor(0.5,False)", f1.Width.ToString ());
|
||||
Assert.Equal ("Absolute(5)", f1.Height.ToString ());
|
||||
Assert.Equal (49, f1.Frame.Width); // 50-1=49
|
||||
Assert.Equal (5, f1.Frame.Height);
|
||||
|
||||
Assert.Equal ("Dim.Fill(margin=0)", f2.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(5)", f2.Height.ToString ());
|
||||
Assert.Equal ("Fill(0)", f2.Width.ToString ());
|
||||
Assert.Equal ("Absolute(5)", f2.Height.ToString ());
|
||||
Assert.Equal (49, f2.Frame.Width); // 50-1=49
|
||||
Assert.Equal (5, f2.Frame.Height);
|
||||
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=FrameView()({X=0,Y=0,Width=49,Height=5}))-Dim.Absolute(2))", v1.Width.ToString ());
|
||||
Assert.Equal ("Dim.Combine(Dim.Fill(margin=0)-Dim.Absolute(2))", v1.Height.ToString ());
|
||||
|
||||
Assert.Equal ("Combine(DimView(Width,FrameView()({X=0,Y=0,Width=49,Height=5}))-Absolute(2))", v1.Width.ToString ());
|
||||
Assert.Equal ("Combine(Fill(0)-Absolute(2))", v1.Height.ToString ());
|
||||
Assert.Equal (47, v1.Frame.Width); // 49-2=47
|
||||
Assert.Equal (89, v1.Frame.Height); // 98-5-2-2=89
|
||||
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=FrameView()({X=49,Y=0,Width=49,Height=5}))-Dim.Absolute(2))", v2.Width.ToString ());
|
||||
Assert.Equal ("Dim.Combine(Dim.Fill(margin=0)-Dim.Absolute(2))", v2.Height.ToString ());
|
||||
Assert.Equal ("Combine(DimView(Width,FrameView()({X=49,Y=0,Width=49,Height=5}))-Absolute(2))", v2.Width.ToString ());
|
||||
Assert.Equal ("Combine(Fill(0)-Absolute(2))", v2.Height.ToString ());
|
||||
Assert.Equal (47, v2.Frame.Width); // 49-2=47
|
||||
Assert.Equal (89, v2.Frame.Height); // 98-5-2-2=89
|
||||
|
||||
Assert.Equal ("Dim.Factor(factor=0.1, remaining=False)", v3.Width.ToString ());
|
||||
Assert.Equal ("Dim.Factor(factor=0.1, remaining=False)", v3.Height.ToString ());
|
||||
Assert.Equal ("Factor(0.1,False)", v3.Width.ToString ());
|
||||
Assert.Equal ("Factor(0.1,False)", v3.Height.ToString ());
|
||||
Assert.Equal (9, v3.Frame.Width); // 98*10%=9
|
||||
Assert.Equal (9, v3.Frame.Height); // 98*10%=9
|
||||
|
||||
Assert.Equal ("Dim.Absolute(50)", v4.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(50)", v4.Height.ToString ());
|
||||
Assert.Equal ("Absolute(50)", v4.Width.ToString ());
|
||||
Assert.Equal ("Absolute(50)", v4.Height.ToString ());
|
||||
Assert.Equal (50, v4.Frame.Width);
|
||||
Assert.Equal (50, v4.Frame.Height);
|
||||
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=Button()({X=2,Y=7,Width=47,Height=89}))-DimView(side=Width, target=Button()({X=0,Y=0,Width=9,Height=9})))", v5.Width.ToString ());
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Height, target=Button()({X=2,Y=7,Width=47,Height=89}))-DimView(side=Height, target=Button()({X=0,Y=0,Width=9,Height=9})))", v5.Height.ToString ());
|
||||
Assert.Equal ("Combine(DimView(Width,Button()({X=2,Y=7,Width=47,Height=89}))-DimView(Width,Button()({X=0,Y=0,Width=9,Height=9})))", v5.Width.ToString ());
|
||||
Assert.Equal ("Combine(DimView(Height,Button()({X=2,Y=7,Width=47,Height=89}))-DimView(Height,Button()({X=0,Y=0,Width=9,Height=9})))", v5.Height.ToString ());
|
||||
Assert.Equal (38, v5.Frame.Width); // 47-9=38
|
||||
Assert.Equal (80, v5.Frame.Height); // 89-9=80
|
||||
|
||||
Assert.Equal ("Dim.Factor(factor=0.2, remaining=True)", v6.Width.ToString ());
|
||||
Assert.Equal ("Dim.Factor(factor=0.2, remaining=True)", v6.Height.ToString ());
|
||||
Assert.Equal ("Factor(0.2,True)", v6.Width.ToString ());
|
||||
Assert.Equal ("Factor(0.2,True)", v6.Height.ToString ());
|
||||
Assert.Equal (9, v6.Frame.Width); // 47*20%=9
|
||||
Assert.Equal (18, v6.Frame.Height); // 89*20%=18
|
||||
|
||||
|
||||
w.Width = 200;
|
||||
w.Height = 200;
|
||||
t.LayoutSubviews ();
|
||||
|
||||
Assert.Equal ("Dim.Absolute(200)", w.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(200)", w.Height.ToString ());
|
||||
Assert.Equal ("Absolute(200)", w.Width.ToString ());
|
||||
Assert.Equal ("Absolute(200)", w.Height.ToString ());
|
||||
Assert.Equal (200, w.Frame.Width);
|
||||
Assert.Equal (200, w.Frame.Height);
|
||||
|
||||
f1.Text = "Frame1";
|
||||
Assert.Equal ("Dim.Factor(factor=0.5, remaining=False)", f1.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(5)", f1.Height.ToString ());
|
||||
Assert.Equal ("Factor(0.5,False)", f1.Width.ToString ());
|
||||
Assert.Equal ("Absolute(5)", f1.Height.ToString ());
|
||||
Assert.Equal (99, f1.Frame.Width); // 100-1=99
|
||||
Assert.Equal (5, f1.Frame.Height);
|
||||
|
||||
f2.Text = "Frame2";
|
||||
Assert.Equal ("Dim.Fill(margin=0)", f2.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(5)", f2.Height.ToString ());
|
||||
Assert.Equal ("Fill(0)", f2.Width.ToString ());
|
||||
Assert.Equal ("Absolute(5)", f2.Height.ToString ());
|
||||
Assert.Equal (99, f2.Frame.Width); // 100-1=99
|
||||
Assert.Equal (5, f2.Frame.Height);
|
||||
|
||||
v1.Text = "Button1";
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=FrameView()({X=0,Y=0,Width=99,Height=5}))-Dim.Absolute(2))", v1.Width.ToString ());
|
||||
Assert.Equal ("Dim.Combine(Dim.Fill(margin=0)-Dim.Absolute(2))", v1.Height.ToString ());
|
||||
Assert.Equal ("Combine(DimView(Width,FrameView()({X=0,Y=0,Width=99,Height=5}))-Absolute(2))", v1.Width.ToString ());
|
||||
Assert.Equal ("Combine(Fill(0)-Absolute(2))", v1.Height.ToString ());
|
||||
Assert.Equal (97, v1.Frame.Width); // 99-2=97
|
||||
Assert.Equal (189, v1.Frame.Height); // 198-2-7=189
|
||||
|
||||
v2.Text = "Button2";
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=FrameView()({X=99,Y=0,Width=99,Height=5}))-Dim.Absolute(2))", v2.Width.ToString ());
|
||||
Assert.Equal ("Dim.Combine(Dim.Fill(margin=0)-Dim.Absolute(2))", v2.Height.ToString ());
|
||||
Assert.Equal ("Combine(DimView(Width,FrameView()({X=99,Y=0,Width=99,Height=5}))-Absolute(2))", v2.Width.ToString ());
|
||||
Assert.Equal ("Combine(Fill(0)-Absolute(2))", v2.Height.ToString ());
|
||||
Assert.Equal (97, v2.Frame.Width); // 99-2=97
|
||||
Assert.Equal (189, v2.Frame.Height); // 198-2-7=189
|
||||
|
||||
v3.Text = "Button3";
|
||||
Assert.Equal ("Dim.Factor(factor=0.1, remaining=False)", v3.Width.ToString ());
|
||||
Assert.Equal ("Dim.Factor(factor=0.1, remaining=False)", v3.Height.ToString ());
|
||||
Assert.Equal ("Factor(0.1,False)", v3.Width.ToString ());
|
||||
Assert.Equal ("Factor(0.1,False)", v3.Height.ToString ());
|
||||
Assert.Equal (19, v3.Frame.Width); // 198*10%=19 * Percent is related to the super-view if it isn't null otherwise the view width
|
||||
Assert.Equal (19, v3.Frame.Height); // 199*10%=19
|
||||
|
||||
v4.Text = "Button4";
|
||||
v4.AutoSize = false;
|
||||
Assert.Equal ("Dim.Absolute(50)", v4.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(50)", v4.Height.ToString ());
|
||||
Assert.Equal ("Absolute(50)", v4.Width.ToString ());
|
||||
Assert.Equal ("Absolute(50)", v4.Height.ToString ());
|
||||
Assert.Equal (50, v4.Frame.Width);
|
||||
Assert.Equal (50, v4.Frame.Height);
|
||||
v4.AutoSize = true;
|
||||
Assert.Equal ("Dim.Absolute(11)", v4.Width.ToString ());
|
||||
Assert.Equal ("Dim.Absolute(1)", v4.Height.ToString ());
|
||||
Assert.Equal ("Absolute(11)", v4.Width.ToString ());
|
||||
Assert.Equal ("Absolute(1)", v4.Height.ToString ());
|
||||
Assert.Equal (11, v4.Frame.Width); // 11 is the text length and because is Dim.DimAbsolute
|
||||
Assert.Equal (1, v4.Frame.Height); // 1 because is Dim.DimAbsolute
|
||||
|
||||
v5.Text = "Button5";
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=Button()({X=2,Y=7,Width=97,Height=189}))-DimView(side=Width, target=Button()({X=0,Y=0,Width=19,Height=19})))", v5.Width.ToString ());
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Height, target=Button()({X=2,Y=7,Width=97,Height=189}))-DimView(side=Height, target=Button()({X=0,Y=0,Width=19,Height=19})))", v5.Height.ToString ());
|
||||
Assert.Equal ("Combine(DimView(Width,Button()({X=2,Y=7,Width=97,Height=189}))-DimView(Width,Button()({X=0,Y=0,Width=19,Height=19})))", v5.Width.ToString ());
|
||||
Assert.Equal ("Combine(DimView(Height,Button()({X=2,Y=7,Width=97,Height=189}))-DimView(Height,Button()({X=0,Y=0,Width=19,Height=19})))", v5.Height.ToString ());
|
||||
Assert.Equal (78, v5.Frame.Width); // 97-19=78
|
||||
Assert.Equal (170, v5.Frame.Height); // 189-19=170
|
||||
|
||||
v6.Text = "Button6";
|
||||
Assert.Equal ("Dim.Factor(factor=0.2, remaining=True)", v6.Width.ToString ());
|
||||
Assert.Equal ("Dim.Factor(factor=0.2, remaining=True)", v6.Height.ToString ());
|
||||
Assert.Equal ("Factor(0.2,True)", v6.Width.ToString ());
|
||||
Assert.Equal ("Factor(0.2,True)", v6.Height.ToString ());
|
||||
Assert.Equal (19, v6.Frame.Width); // 99*20%=19
|
||||
Assert.Equal (38, v6.Frame.Height); // 198-7*20=38
|
||||
};
|
||||
@@ -635,12 +634,12 @@ namespace Terminal.Gui.TypeTests {
|
||||
var label = new Label (field.Text) { X = 0, Y = view.Bounds.Height, Width = 20 };
|
||||
view.Add (label);
|
||||
Assert.Equal ($"Label {count}", label.Text);
|
||||
Assert.Equal ($"Pos.Absolute({count})", label.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", label.Y.ToString ());
|
||||
|
||||
Assert.Equal ($"Dim.Absolute({count})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", view.Height.ToString ());
|
||||
view.Height += 1;
|
||||
count++;
|
||||
Assert.Equal ($"Dim.Absolute({count})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", view.Height.ToString ());
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1007,18 +1006,18 @@ namespace Terminal.Gui.TypeTests {
|
||||
var label = new Label (field.Text) { X = 0, Y = view.Bounds.Height, Width = 10 };
|
||||
view.Add (label);
|
||||
Assert.Equal ($"Label {count}", label.Text);
|
||||
Assert.Equal ($"Pos.Absolute({count + 1})", label.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({count + 1})", label.Y.ToString ());
|
||||
listLabels.Add (label);
|
||||
if (count == 0) {
|
||||
Assert.Equal ($"Dim.Absolute({count})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", view.Height.ToString ());
|
||||
view.Height += 2;
|
||||
} else {
|
||||
Assert.Equal ($"Dim.Absolute({count + 1})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count + 1})", view.Height.ToString ());
|
||||
view.Height += 1;
|
||||
}
|
||||
count++;
|
||||
}
|
||||
Assert.Equal ($"Dim.Absolute({count + 1})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count + 1})", view.Height.ToString ());
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1067,12 +1066,12 @@ namespace Terminal.Gui.TypeTests {
|
||||
var label = new Label (field.Text) { X = 0, Y = view.Bounds.Height, Width = 20 };
|
||||
view.Add (label);
|
||||
Assert.Equal ($"Label {i}", label.Text);
|
||||
Assert.Equal ($"Pos.Absolute({i})", label.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({i})", label.Y.ToString ());
|
||||
listLabels.Add (label);
|
||||
|
||||
Assert.Equal ($"Dim.Absolute({i})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({i})", view.Height.ToString ());
|
||||
view.Height += 1;
|
||||
Assert.Equal ($"Dim.Absolute({i + 1})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({i + 1})", view.Height.ToString ());
|
||||
}
|
||||
|
||||
field.KeyDown += (k) => {
|
||||
@@ -1080,10 +1079,10 @@ namespace Terminal.Gui.TypeTests {
|
||||
Assert.Equal ($"Label {count - 1}", listLabels [count - 1].Text);
|
||||
view.Remove (listLabels [count - 1]);
|
||||
|
||||
Assert.Equal ($"Dim.Absolute({count})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", view.Height.ToString ());
|
||||
view.Height -= 1;
|
||||
count--;
|
||||
Assert.Equal ($"Dim.Absolute({count})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", view.Height.ToString ());
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1126,17 +1125,17 @@ namespace Terminal.Gui.TypeTests {
|
||||
var label = new Label (field.Text) { X = 0, Y = view.Bounds.Height, Width = 10 };
|
||||
view.Add (label);
|
||||
Assert.Equal ($"Label {i}", label.Text);
|
||||
Assert.Equal ($"Pos.Absolute({i + 1})", label.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({i + 1})", label.Y.ToString ());
|
||||
listLabels.Add (label);
|
||||
|
||||
if (i == 0) {
|
||||
Assert.Equal ($"Dim.Absolute({i})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({i})", view.Height.ToString ());
|
||||
view.Height += 2;
|
||||
Assert.Equal ($"Dim.Absolute({i + 2})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({i + 2})", view.Height.ToString ());
|
||||
} else {
|
||||
Assert.Equal ($"Dim.Absolute({i + 1})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({i + 1})", view.Height.ToString ());
|
||||
view.Height += 1;
|
||||
Assert.Equal ($"Dim.Absolute({i + 2})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({i + 2})", view.Height.ToString ());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1150,7 +1149,7 @@ namespace Terminal.Gui.TypeTests {
|
||||
Assert.Equal ($"Label {count - 1}", listLabels [count - 1].Text);
|
||||
view.Remove (listLabels [count - 1]);
|
||||
listLabels.RemoveAt (count - 1);
|
||||
Assert.Equal ($"Dim.Absolute({count + 1})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count + 1})", view.Height.ToString ());
|
||||
view.Height -= 1;
|
||||
count--;
|
||||
if (listLabels.Count > 0)
|
||||
@@ -1158,7 +1157,7 @@ namespace Terminal.Gui.TypeTests {
|
||||
else
|
||||
field.Text = NStack.ustring.Empty;
|
||||
}
|
||||
Assert.Equal ($"Dim.Absolute({count + 1})", view.Height.ToString ());
|
||||
Assert.Equal ($"Absolute({count + 1})", view.Height.ToString ());
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1218,13 +1217,13 @@ namespace Terminal.Gui.TypeTests {
|
||||
{
|
||||
var text = "Test";
|
||||
var dim = Dim.Function (() => text.Length);
|
||||
Assert.Equal ("Dim.DimFunc(4)", dim.ToString ());
|
||||
Assert.Equal ("DimFunc(4)", dim.ToString ());
|
||||
|
||||
text = "New Test";
|
||||
Assert.Equal ("Dim.DimFunc(8)", dim.ToString ());
|
||||
Assert.Equal ("DimFunc(8)", dim.ToString ());
|
||||
|
||||
text = "";
|
||||
Assert.Equal ("Dim.DimFunc(0)", dim.ToString ());
|
||||
Assert.Equal ("DimFunc(0)", dim.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
||||
@@ -32,11 +32,11 @@ namespace Terminal.Gui.TypeTests {
|
||||
{
|
||||
var n = 0;
|
||||
var pos = Pos.AnchorEnd ();
|
||||
Assert.Equal ($"Pos.AnchorEnd(margin={n})", pos.ToString ());
|
||||
Assert.Equal ($"AnchorEnd({n})", pos.ToString ());
|
||||
|
||||
n = 5;
|
||||
pos = Pos.AnchorEnd (n);
|
||||
Assert.Equal ($"Pos.AnchorEnd(margin={n})", pos.ToString ());
|
||||
Assert.Equal ($"AnchorEnd({n})", pos.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -351,13 +351,13 @@ namespace Terminal.Gui.TypeTests {
|
||||
public void At_SetsValue ()
|
||||
{
|
||||
var pos = Pos.At (0);
|
||||
Assert.Equal ("Pos.Absolute(0)", pos.ToString ());
|
||||
Assert.Equal ("Absolute(0)", pos.ToString ());
|
||||
|
||||
pos = Pos.At (5);
|
||||
Assert.Equal ("Pos.Absolute(5)", pos.ToString ());
|
||||
Assert.Equal ("Absolute(5)", pos.ToString ());
|
||||
|
||||
pos = Pos.At (-1);
|
||||
Assert.Equal ("Pos.Absolute(-1)", pos.ToString ());
|
||||
Assert.Equal ("Absolute(-1)", pos.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -411,140 +411,140 @@ namespace Terminal.Gui.TypeTests {
|
||||
testInt = 0;
|
||||
testRect = Rect.Empty;
|
||||
pos = Pos.Left (new View ());
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
pos = Pos.Left (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testRect = new Rect (1, 2, 3, 4);
|
||||
pos = Pos.Left (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.Left(win) + 0
|
||||
pos = Pos.Left (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = 1;
|
||||
// Pos.Left(win) +1
|
||||
pos = Pos.Left (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = -1;
|
||||
// Pos.Left(win) -1
|
||||
pos = Pos.Left (new View (testRect)) - testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.X
|
||||
side = "x";
|
||||
testInt = 0;
|
||||
testRect = Rect.Empty;
|
||||
pos = Pos.X (new View ());
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
pos = Pos.X (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testRect = new Rect (1, 2, 3, 4);
|
||||
pos = Pos.X (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.X(win) + 0
|
||||
pos = Pos.X (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = 1;
|
||||
// Pos.X(win) +1
|
||||
pos = Pos.X (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = -1;
|
||||
// Pos.X(win) -1
|
||||
pos = Pos.X (new View (testRect)) - testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.Top
|
||||
side = "y";
|
||||
testInt = 0;
|
||||
testRect = Rect.Empty;
|
||||
pos = Pos.Top (new View ());
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
pos = Pos.Top (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testRect = new Rect (1, 2, 3, 4);
|
||||
pos = Pos.Top (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.Top(win) + 0
|
||||
pos = Pos.Top (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = 1;
|
||||
// Pos.Top(win) +1
|
||||
pos = Pos.Top (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = -1;
|
||||
// Pos.Top(win) -1
|
||||
pos = Pos.Top (new View (testRect)) - testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.Y
|
||||
side = "y";
|
||||
testInt = 0;
|
||||
testRect = Rect.Empty;
|
||||
pos = Pos.Y (new View ());
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
pos = Pos.Y (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testRect = new Rect (1, 2, 3, 4);
|
||||
pos = Pos.Y (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.Y(win) + 0
|
||||
pos = Pos.Y (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = 1;
|
||||
// Pos.Y(win) +1
|
||||
pos = Pos.Y (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = -1;
|
||||
// Pos.Y(win) -1
|
||||
pos = Pos.Y (new View (testRect)) - testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.Bottom
|
||||
side = "bottom";
|
||||
testRect = Rect.Empty;
|
||||
testInt = 0;
|
||||
pos = Pos.Bottom (new View ());
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
pos = Pos.Bottom (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testRect = new Rect (1, 2, 3, 4);
|
||||
pos = Pos.Bottom (new View (testRect));
|
||||
Assert.Equal ($"Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}})){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
// Pos.Bottom(win) + 0
|
||||
pos = Pos.Bottom (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = 1;
|
||||
// Pos.Bottom(win) +1
|
||||
pos = Pos.Bottom (new View (testRect)) + testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
|
||||
testInt = -1;
|
||||
// Pos.Bottom(win) -1
|
||||
pos = Pos.Bottom (new View (testRect)) - testInt;
|
||||
Assert.Equal ($"Pos.Combine(Pos.Combine(Pos.View(side={side}, target=View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
Assert.Equal ($"Combine(Pos.Combine(Pos.View({side},View()({{X={testRect.X},Y={testRect.Y},Width={testRect.Width},Height={testRect.Height}}}))+Pos.Absolute(0)){(testInt < 0 ? '-' : '+')}Pos.Absolute({testInt}))", pos.ToString ());
|
||||
}
|
||||
|
||||
// See: https://github.com/gui-cs/Terminal.Gui/issues/504
|
||||
@@ -632,7 +632,7 @@ namespace Terminal.Gui.TypeTests {
|
||||
public void Center_SetsValue ()
|
||||
{
|
||||
var pos = Pos.Center ();
|
||||
Assert.Equal ("Pos.Center", pos.ToString ());
|
||||
Assert.Equal ("Center", pos.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -640,13 +640,13 @@ namespace Terminal.Gui.TypeTests {
|
||||
{
|
||||
float f = 0;
|
||||
var pos = Pos.Percent (f);
|
||||
Assert.Equal ($"Pos.Factor({f / 100:0.###})", pos.ToString ());
|
||||
Assert.Equal ($"Factor({f / 100:0.###})", pos.ToString ());
|
||||
f = 0.5F;
|
||||
pos = Pos.Percent (f);
|
||||
Assert.Equal ($"Pos.Factor({f / 100:0.###})", pos.ToString ());
|
||||
Assert.Equal ($"Factor({f / 100:0.###})", pos.ToString ());
|
||||
f = 100;
|
||||
pos = Pos.Percent (f);
|
||||
Assert.Equal ($"Pos.Factor({f / 100:0.###})", pos.ToString ());
|
||||
Assert.Equal ($"Factor({f / 100:0.###})", pos.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
@@ -881,12 +881,12 @@ namespace Terminal.Gui.TypeTests {
|
||||
var label = new Label (field.Text) { X = 0, Y = field.Y, Width = 20 };
|
||||
view.Add (label);
|
||||
Assert.Equal ($"Label {count}", label.Text);
|
||||
Assert.Equal ($"Pos.Absolute({count})", label.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", label.Y.ToString ());
|
||||
|
||||
Assert.Equal ($"Pos.Absolute({count})", field.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", field.Y.ToString ());
|
||||
field.Y += 1;
|
||||
count++;
|
||||
Assert.Equal ($"Pos.Absolute({count})", field.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", field.Y.ToString ());
|
||||
}
|
||||
};
|
||||
|
||||
@@ -930,12 +930,12 @@ namespace Terminal.Gui.TypeTests {
|
||||
var label = new Label (field.Text) { X = 0, Y = field.Y, Width = 20 };
|
||||
view.Add (label);
|
||||
Assert.Equal ($"Label {i}", label.Text);
|
||||
Assert.Equal ($"Pos.Absolute({i})", field.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({i})", field.Y.ToString ());
|
||||
listLabels.Add (label);
|
||||
|
||||
Assert.Equal ($"Pos.Absolute({i})", field.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({i})", field.Y.ToString ());
|
||||
field.Y += 1;
|
||||
Assert.Equal ($"Pos.Absolute({i + 1})", field.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({i + 1})", field.Y.ToString ());
|
||||
}
|
||||
|
||||
field.KeyDown += (k) => {
|
||||
@@ -943,10 +943,10 @@ namespace Terminal.Gui.TypeTests {
|
||||
Assert.Equal ($"Label {count - 1}", listLabels [count - 1].Text);
|
||||
view.Remove (listLabels [count - 1]);
|
||||
|
||||
Assert.Equal ($"Pos.Absolute({count})", field.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", field.Y.ToString ());
|
||||
field.Y -= 1;
|
||||
count--;
|
||||
Assert.Equal ($"Pos.Absolute({count})", field.Y.ToString ());
|
||||
Assert.Equal ($"Absolute({count})", field.Y.ToString ());
|
||||
}
|
||||
};
|
||||
|
||||
@@ -992,6 +992,11 @@ namespace Terminal.Gui.TypeTests {
|
||||
Assert.Equal (posCombine.right, posAbsolute);
|
||||
Assert.Equal (20, posCombine.Anchor (100));
|
||||
|
||||
posCombine = new Pos.PosCombine (true, posAbsolute, posFactor);
|
||||
Assert.Equal (posCombine.left, posAbsolute);
|
||||
Assert.Equal (posCombine.right, posFactor);
|
||||
Assert.Equal (20, posCombine.Anchor (100));
|
||||
|
||||
var view = new View (new Rect (20, 10, 20, 1));
|
||||
var posViewX = new Pos.PosView (view, 0);
|
||||
Assert.Equal (20, posViewX.Anchor (0));
|
||||
@@ -1008,13 +1013,13 @@ namespace Terminal.Gui.TypeTests {
|
||||
{
|
||||
var text = "Test";
|
||||
var pos = Pos.Function (() => text.Length);
|
||||
Assert.Equal ("Pos.PosFunc(4)", pos.ToString ());
|
||||
Assert.Equal ("PosFunc(4)", pos.ToString ());
|
||||
|
||||
text = "New Test";
|
||||
Assert.Equal ("Pos.PosFunc(8)", pos.ToString ());
|
||||
Assert.Equal ("PosFunc(8)", pos.ToString ());
|
||||
|
||||
text = "";
|
||||
Assert.Equal ("Pos.PosFunc(0)", pos.ToString ());
|
||||
Assert.Equal ("PosFunc(0)", pos.ToString ());
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
||||
@@ -362,85 +362,85 @@ namespace Terminal.Gui.ViewTests {
|
||||
_hostView.Redraw (_hostView.Bounds);
|
||||
Assert.True (_scrollBar.ShowScrollIndicator);
|
||||
Assert.True (_scrollBar.Visible);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal (1, _scrollBar.Bounds.Width);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Height, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(1))",
|
||||
Assert.Equal ("Combine(DimView(Height,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(1))",
|
||||
_scrollBar.Height.ToString ());
|
||||
Assert.Equal (24, _scrollBar.Bounds.Height);
|
||||
Assert.True (_scrollBar.OtherScrollBarView.ShowScrollIndicator);
|
||||
Assert.True (_scrollBar.OtherScrollBarView.Visible);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(1))",
|
||||
Assert.Equal ("Combine(DimView(Width,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(1))",
|
||||
_scrollBar.OtherScrollBarView.Width.ToString ());
|
||||
Assert.Equal (79, _scrollBar.OtherScrollBarView.Bounds.Width);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal (1, _scrollBar.OtherScrollBarView.Bounds.Height);
|
||||
|
||||
_hostView.Lines = 10;
|
||||
_hostView.Redraw (_hostView.Bounds);
|
||||
Assert.False (_scrollBar.ShowScrollIndicator);
|
||||
Assert.False (_scrollBar.Visible);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal (1, _scrollBar.Bounds.Width);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Height, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(1))",
|
||||
Assert.Equal ("Combine(DimView(Height,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(1))",
|
||||
_scrollBar.Height.ToString ());
|
||||
Assert.Equal (24, _scrollBar.Bounds.Height);
|
||||
Assert.True (_scrollBar.OtherScrollBarView.ShowScrollIndicator);
|
||||
Assert.True (_scrollBar.OtherScrollBarView.Visible);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(0))",
|
||||
Assert.Equal ("Combine(DimView(Width,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(0))",
|
||||
_scrollBar.OtherScrollBarView.Width.ToString ());
|
||||
Assert.Equal (80, _scrollBar.OtherScrollBarView.Bounds.Width);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal (1, _scrollBar.OtherScrollBarView.Bounds.Height);
|
||||
|
||||
_hostView.Cols = 60;
|
||||
_hostView.Redraw (_hostView.Bounds);
|
||||
Assert.False (_scrollBar.ShowScrollIndicator);
|
||||
Assert.False (_scrollBar.Visible);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal (1, _scrollBar.Bounds.Width);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Height, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(1))",
|
||||
Assert.Equal ("Combine(DimView(Height,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(1))",
|
||||
_scrollBar.Height.ToString ());
|
||||
Assert.Equal (24, _scrollBar.Bounds.Height);
|
||||
Assert.False (_scrollBar.OtherScrollBarView.ShowScrollIndicator);
|
||||
Assert.False (_scrollBar.OtherScrollBarView.Visible);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(0))",
|
||||
Assert.Equal ("Combine(DimView(Width,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(0))",
|
||||
_scrollBar.OtherScrollBarView.Width.ToString ());
|
||||
Assert.Equal (80, _scrollBar.OtherScrollBarView.Bounds.Width);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal (1, _scrollBar.OtherScrollBarView.Bounds.Height);
|
||||
|
||||
_hostView.Lines = 40;
|
||||
_hostView.Redraw (_hostView.Bounds);
|
||||
Assert.True (_scrollBar.ShowScrollIndicator);
|
||||
Assert.True (_scrollBar.Visible);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal (1, _scrollBar.Bounds.Width);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Height, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(0))",
|
||||
Assert.Equal ("Combine(DimView(Height,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(0))",
|
||||
_scrollBar.Height.ToString ());
|
||||
Assert.Equal (25, _scrollBar.Bounds.Height);
|
||||
Assert.False (_scrollBar.OtherScrollBarView.ShowScrollIndicator);
|
||||
Assert.False (_scrollBar.OtherScrollBarView.Visible);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(0))",
|
||||
Assert.Equal ("Combine(DimView(Width,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(0))",
|
||||
_scrollBar.OtherScrollBarView.Width.ToString ());
|
||||
Assert.Equal (80, _scrollBar.OtherScrollBarView.Bounds.Width);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal (1, _scrollBar.OtherScrollBarView.Bounds.Height);
|
||||
|
||||
_hostView.Cols = 120;
|
||||
_hostView.Redraw (_hostView.Bounds);
|
||||
Assert.True (_scrollBar.ShowScrollIndicator);
|
||||
Assert.True (_scrollBar.Visible);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.Width.ToString ());
|
||||
Assert.Equal (1, _scrollBar.Bounds.Width);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Height, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(1))",
|
||||
Assert.Equal ("Combine(DimView(Height,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(1))",
|
||||
_scrollBar.Height.ToString ());
|
||||
Assert.Equal (24, _scrollBar.Bounds.Height);
|
||||
Assert.True (_scrollBar.OtherScrollBarView.ShowScrollIndicator);
|
||||
Assert.True (_scrollBar.OtherScrollBarView.Visible);
|
||||
Assert.Equal ("Dim.Combine(DimView(side=Width, target=HostView()({X=0,Y=0,Width=80,Height=25}))-Dim.Absolute(1))",
|
||||
Assert.Equal ("Combine(DimView(Width,HostView()({X=0,Y=0,Width=80,Height=25}))-Absolute(1))",
|
||||
_scrollBar.OtherScrollBarView.Width.ToString ());
|
||||
Assert.Equal (79, _scrollBar.OtherScrollBarView.Bounds.Width);
|
||||
Assert.Equal ("Dim.Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal ("Absolute(1)", _scrollBar.OtherScrollBarView.Height.ToString ());
|
||||
Assert.Equal (1, _scrollBar.OtherScrollBarView.Bounds.Height);
|
||||
}
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace Terminal.Gui.ViewTests {
|
||||
Assert.False (sb.CanFocus);
|
||||
Assert.Equal (Colors.Menu, sb.ColorScheme);
|
||||
Assert.Equal (0, sb.X);
|
||||
Assert.Equal ("Pos.AnchorEnd(margin=1)", sb.Y.ToString ());
|
||||
Assert.Equal ("AnchorEnd(1)", sb.Y.ToString ());
|
||||
Assert.Equal (Dim.Fill (), sb.Width);
|
||||
Assert.Equal (1, sb.Height);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user