Skip to content

Commit 2dc3170

Browse files
author
Thomas Duft
committed
Update TC-Dashboard-100 date and refactor RunCommand and TestCaseExecutor for improved navigation and error handling
1 parent be568c7 commit 2dc3170

File tree

4 files changed

+37
-23
lines changed

4 files changed

+37
-23
lines changed

samples/Runs/Dashboard/TC-Dashboard-100.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TC-Dashboard-100: Dashboard as administrator
22

3-
- **Date**: 2024-12-10
3+
- **Date**: 2025-01-17
44
- **Test Priority**: High
55
- **Module Name**: Dashboard
66
- **Type**: Execution

src/testr.Cli/Commands/RunCommand.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public RunCommand()
6060
);
6161

6262
_continueOnFailure = Option<bool>(
63-
"-c|--continue-on-failure",
63+
"--continue-on-failure",
6464
"Continues the Test Case execution even if the Test Case fails.",
6565
CommandOptionType.NoValue,
6666
cfg => cfg.DefaultValue = false,

src/testr.Cli/Domain/TestCaseExecutor.cs

+27-20
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,24 @@ CancellationToken cancellationToken
3535
// execute precondition instructions if available
3636
if (preconditionExecutionParam != null)
3737
{
38+
await NavigateToRouteAsync(page, domain, preconditionExecutionParam.Route);
39+
3840
foreach (var instruction in preconditionExecutionParam.Instructions)
3941
{
4042
await TestAsync(
4143
page,
42-
domain,
43-
preconditionExecutionParam.Route,
4444
instruction,
4545
instruction => ConsoleHelper.WriteLine($"- Executing step: {instruction.TestStep.Id} - {instruction.TestStep.Description}")
4646
);
4747
}
4848
}
4949

50+
await NavigateToRouteAsync(page, domain, executionParam.Route);
51+
5052
foreach (var instruction in executionParam.Instructions)
5153
{
5254
var result = await TestAsync(
5355
page,
54-
domain,
55-
executionParam.Route,
5656
instruction,
5757
instruction => ConsoleHelper.WriteLineYellow($"- Executing step: {instruction.TestStep.Id} - {instruction.TestStep.Description}")
5858
);
@@ -93,37 +93,44 @@ private async Task<IBrowserContext> GetBrowserContext(IBrowser browser)
9393
return context;
9494
}
9595

96-
private async Task<TestStepResult> TestAsync(
96+
private async Task NavigateToRouteAsync(
9797
IPage page,
9898
string domain,
99-
string route,
100-
TestStepInstruction instruction,
101-
Action<TestStepInstruction> consoleAction
99+
string route
102100
)
103101
{
104-
try
102+
var requestUri = $"{domain}/{route}";
103+
if (requestUri != _requestUri)
105104
{
106-
var requestUri = $"{domain}/{route}";
107-
if (requestUri != _requestUri)
105+
await page.GotoAsync(requestUri);
106+
_requestUri = requestUri;
107+
108+
// being safe and try again in certain case :-)
109+
if (!page.Url.StartsWith(requestUri))
108110
{
109-
await page.GotoAsync(requestUri);
110-
_requestUri = requestUri;
111+
await Task.Delay(1000);
111112

112-
// being safe and try again in certain case :-)
113-
if (!page.Url.StartsWith(requestUri))
114-
{
115-
await page.GotoAsync(requestUri);
116-
}
113+
await page.GotoAsync(requestUri);
117114
}
115+
}
116+
}
118117

118+
private async Task<TestStepResult> TestAsync(
119+
IPage page,
120+
TestStepInstruction instruction,
121+
Action<TestStepInstruction> consoleAction
122+
)
123+
{
124+
try
125+
{
119126
await ProcessStepAsync(page, instruction, consoleAction);
120-
121-
return TestStepResult.Success(instruction.TestStep);
122127
}
123128
catch (Exception ex)
124129
{
125130
return TestStepResult.Failed(instruction.TestStep, ex.Message);
126131
}
132+
133+
return TestStepResult.Success(instruction.TestStep);
127134
}
128135

129136
private static async Task<bool> ProcessStepAsync(

src/testr.Cli/Domain/TestStepResult.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,14 @@ public static TestStepResult Failed(TestStep step, string error)
2828
return new TestStepResult(step)
2929
{
3030
IsSuccess = false,
31-
Error = error
31+
Error = SanitizeError(error)
3232
};
3333
}
34+
35+
private static string SanitizeError(string error)
36+
{
37+
return error
38+
.Replace("\r\n", " ")
39+
.Replace("\n", " ");
40+
}
3441
}

0 commit comments

Comments
 (0)