Reformat code

This commit is contained in:
2023-06-01 04:17:16 +02:00
parent 23bfda2d75
commit ef92878cbd
53 changed files with 975 additions and 523 deletions

View File

@@ -22,7 +22,7 @@ public class ButtonTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal(@"<input type=""submit"" class=""button"" value=""""></input>", result);
}
[Fact]
public void MustRenderCorrectly__WithOnClientClick()
{
@@ -41,7 +41,7 @@ public class ButtonTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal(@"<input type=""submit"" class=""button"" value="""" onclick=""alert(1)""></input>", result);
}
[Fact]
public void MustRenderCorrectly__ClickWithCommandArgument()
{
@@ -53,10 +53,7 @@ public class ButtonTests
CommandArgument = commandArgument,
};
string? result = null;
button.Click += (o, _) =>
{
result = (o as Button)?.CommandArgument;
};
button.Click += (o, _) => { result = (o as Button)?.CommandArgument; };
page.Controls.Add(button);
fakeWebContext.RequestForm.Add(button.ClientID, "Clicked");

View File

@@ -8,7 +8,7 @@ namespace VAR.WebFormsCore.Tests.Controls;
public class CTextBoxTests
{
#region MustRenderCorrectly
[Fact]
public void MustRenderCorrectly()
{
@@ -36,11 +36,11 @@ public class CTextBoxTests
Page page = new();
CTextBox cTextBox = new()
{
CssClassExtra = "extraClass",
PlaceHolder = "Placeholder",
CssClassExtra = "extraClass",
PlaceHolder = "Placeholder",
MarkedInvalid = true,
TextMode = TextBoxMode.Normal,
AllowEmpty = true,
TextMode = TextBoxMode.Normal,
AllowEmpty = true,
KeepSize = true,
Text = "Test",
};
@@ -57,7 +57,7 @@ public class CTextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly__WithNextFocusOnEnter()
{
@@ -80,19 +80,19 @@ public class CTextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly__WithChangedText()
{
string text = "Test";
string changedValue = "Changed";
FakeWebContext fakeWebContext0 = new();
Page page0 = new();
CTextBox cTextBox0 = new() { Text = text };
page0.Controls.Add(cTextBox0);
page0.ProcessRequest(fakeWebContext0);
FakeWebContext fakeWebContext1 = new(requestMethod: "POST");
fakeWebContext1.RequestForm.Add(cTextBox0.TxtContent.ClientID, changedValue);
Page page1 = new();
@@ -110,7 +110,7 @@ public class CTextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly_Multiline()
{
@@ -118,7 +118,7 @@ public class CTextBoxTests
Page page = new();
CTextBox cTextBox = new()
{
TextMode = TextBoxMode.MultiLine,
TextMode = TextBoxMode.MultiLine,
KeepSize = true,
};
page.Controls.Add(cTextBox);
@@ -146,7 +146,7 @@ public class CTextBoxTests
Page page = new();
CTextBox cTextBox = new()
{
TextMode = TextBoxMode.MultiLine,
TextMode = TextBoxMode.MultiLine,
KeepSize = true,
};
page.Controls.Add(cTextBox);
@@ -168,7 +168,7 @@ public class CTextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly_Multiline__GetAndSetClientsideHeight__100()
{
@@ -176,7 +176,7 @@ public class CTextBoxTests
Page page = new();
CTextBox cTextBox = new()
{
TextMode = TextBoxMode.MultiLine,
TextMode = TextBoxMode.MultiLine,
KeepSize = true,
};
page.Controls.Add(cTextBox);
@@ -214,15 +214,12 @@ public class CTextBoxTests
Page page = new();
CTextBox cTextBox = new()
{
TextMode = TextBoxMode.MultiLine,
TextMode = TextBoxMode.MultiLine,
KeepSize = true,
};
page.Controls.Add(cTextBox);
Button button = new();
button.Click += (_, _) =>
{
cTextBox.SetClientsideHeight(null);
};
button.Click += (_, _) => { cTextBox.SetClientsideHeight(null); };
page.Controls.Add(button);
fakeWebContext.RequestForm.Add(button.ClientID, "Clicked");
@@ -243,7 +240,7 @@ public class CTextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly_Multiline__GetClientsideHeightInjectArray__Null()
{
@@ -251,17 +248,14 @@ public class CTextBoxTests
Page page = new();
CTextBox cTextBox = new()
{
TextMode = TextBoxMode.MultiLine,
TextMode = TextBoxMode.MultiLine,
KeepSize = true,
};
page.Controls.Add(cTextBox);
Button button = new();
button.Click += (_, _) =>
{
if (cTextBox.HidSize != null)
{
cTextBox.HidSize.Value = "[]";
}
if (cTextBox.HidSize != null) { cTextBox.HidSize.Value = "[]"; }
};
page.Controls.Add(button);
@@ -273,7 +267,7 @@ public class CTextBoxTests
Assert.Equal(200, fakeWebContext.ResponseStatusCode);
Assert.Equal("text/html", fakeWebContext.ResponseContentType);
}
[Fact]
public void MustRenderCorrectly_Multiline__GetClientsideHeightInjectObject__Null()
{
@@ -281,17 +275,14 @@ public class CTextBoxTests
Page page = new();
CTextBox cTextBox = new()
{
TextMode = TextBoxMode.MultiLine,
TextMode = TextBoxMode.MultiLine,
KeepSize = true,
};
page.Controls.Add(cTextBox);
Button button = new();
button.Click += (_, _) =>
{
if (cTextBox.HidSize != null)
{
cTextBox.HidSize.Value = "{}";
}
if (cTextBox.HidSize != null) { cTextBox.HidSize.Value = "{}"; }
};
page.Controls.Add(button);
@@ -314,17 +305,17 @@ public class CTextBoxTests
CTextBox cTextBox = new() { Text = string.Empty, };
bool result = cTextBox.IsEmpty();
Assert.True(result);
}
[Fact]
public void IsEmpty__Text__False()
{
CTextBox cTextBox = new() { Text = "Text", };
bool result = cTextBox.IsEmpty();
Assert.False(result);
}
@@ -338,17 +329,17 @@ public class CTextBoxTests
CTextBox cTextBox = new() { Text = string.Empty, AllowEmpty = false, };
bool result = cTextBox.IsValid();
Assert.False(result);
}
[Fact]
public void IsEmpty__TextAllowEmptyFalse__True()
{
CTextBox cTextBox = new() { Text = "Text", AllowEmpty = false, };
bool result = cTextBox.IsValid();
Assert.True(result);
}
@@ -358,20 +349,19 @@ public class CTextBoxTests
CTextBox cTextBox = new() { Text = string.Empty, AllowEmpty = true, };
bool result = cTextBox.IsValid();
Assert.True(result);
}
[Fact]
public void IsEmpty__TextAllowEmptyTrue__True()
{
CTextBox cTextBox = new() { Text = "Text", AllowEmpty = true, };
bool result = cTextBox.IsValid();
Assert.True(result);
}
#endregion IsEmpty
}

View File

@@ -22,7 +22,7 @@ public class HiddenFieldTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal(@"<input type=""hidden"" id=""ctl00"" name=""ctl00""></input>", result);
}
[Fact]
public void MustRenderCorrectly__WithValue()
{
@@ -40,7 +40,7 @@ public class HiddenFieldTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal(@"<input type=""hidden"" id=""ctl00"" name=""ctl00"" value=""Test""></input>", result);
}
[Fact]
public void MustRenderCorrectly__WithChangedValue()
{

View File

@@ -22,7 +22,7 @@ public class HtmlFormTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal(@"<form method=""post"" action=""Page""></form>", result);
}
[Fact]
public void MustRenderCorrectly__WithQueryParameters()
{

View File

@@ -22,7 +22,7 @@ public class HtmlHeadTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal("<head ></head>", result);
}
[Fact]
public void MustRenderCorrectly__WithTitle()
{
@@ -39,7 +39,7 @@ public class HtmlHeadTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal("<head ><title>Test</title></head>", result);
}
[Fact]
public void MustRenderCorrectly__WithMeta()
{
@@ -54,7 +54,7 @@ public class HtmlHeadTests
HttpEquiv = "TestMetaHttpEquiv"
};
htmlHead.Controls.Add(htmlMeta);
page.ProcessRequest(fakeWebContext);
Assert.Equal(200, fakeWebContext.ResponseStatusCode);

View File

@@ -22,7 +22,7 @@ public class HyperLinkTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal("<a ></a>", result);
}
[Fact]
public void MustRenderCorrectly__WithTextAndUrl()
{

View File

@@ -22,7 +22,7 @@ public class LiteralControlTests
string result = fakeWebContext.FakeWritePackages.ToString("");
Assert.Equal(@"", result);
}
[Fact]
public void MustRenderCorrectly__AnyContent()
{

View File

@@ -26,7 +26,7 @@ public class TextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly__NormalWithText()
{
@@ -46,13 +46,13 @@ public class TextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly__Password()
{
FakeWebContext fakeWebContext = new();
Page page = new();
TextBox textBox = new() {TextMode = TextBoxMode.Password, };
TextBox textBox = new() { TextMode = TextBoxMode.Password, };
page.Controls.Add(textBox);
page.ProcessRequest(fakeWebContext);
@@ -66,7 +66,7 @@ public class TextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly__PasswordWithText()
{
@@ -86,13 +86,13 @@ public class TextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly__MultiLine()
{
FakeWebContext fakeWebContext = new();
Page page = new();
TextBox textBox = new() {TextMode = TextBoxMode.MultiLine, };
TextBox textBox = new() { TextMode = TextBoxMode.MultiLine, };
page.Controls.Add(textBox);
page.ProcessRequest(fakeWebContext);
@@ -106,7 +106,7 @@ public class TextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly__MultiLineWithText()
{
@@ -127,7 +127,7 @@ public class TextBoxTests
""",
actual: result);
}
[Fact]
public void MustRenderCorrectly__WithChangedText()
{