Files
jdescopingtool/NEW/tests/JdeScoping.Ui.Tests/TimeSpanWorkCenterSearchTests.cs
T
2026-02-10 07:47:48 -05:00

41 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JdeScoping.Ui.Tests.Support;
namespace JdeScoping.Ui.Tests;
/// <summary>
/// Playwright UI tests for the "Time Span + Work Center" search type (TC-040).
/// Validates search form interaction in smoke mode and full submission in strict mode.
/// Requires a running Docker host (Category: RequiresDockerHost).
/// </summary>
public sealed class TimeSpanWorkCenterSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
{
/// <summary>
/// Verifies the Time Span + Work Center search form submits with autocomplete filter (TC-040).
/// </summary>
/// <remarks>
/// Steps (smoke mode stops after step 4; strict mode runs all steps):
/// <list type="number">
/// <item>Navigate to the search page.</item>
/// <item>Enter the search name "MIGRATED-TC-040".</item>
/// <item>Select the "Time Span + Work Center" search type from the dropdown.</item>
/// <item>Verify the dropdown displays the selected type.</item>
/// <item>Set the date range to 01/01/2019 12/31/2019 (strict only).</item>
/// <item>Add autocomplete value "0083AS" to the "Filter by Work Center" panel (strict only).</item>
/// <item>Click Submit (strict only).</item>
/// <item>Assert no error notification is present (strict only).</item>
/// </list>
/// </remarks>
[Fact]
[Trait("Category", "RequiresDockerHost")]
public Task TimeSpanWorkCenter_Submits()
{
return RunSearchSubmissionAsync(
UiSearchTypes.TimeSpanWorkCenter,
"MIGRATED-TC-040",
"01/01/2019",
"12/31/2019",
[
("Filter by Work Center", "0083AS")
]);
}
}