using JdeScoping.Ui.Tests.Support;
namespace JdeScoping.Ui.Tests;
///
/// Playwright UI tests for the "Time Span + Item Number" search type (TC-140).
/// Validates search form interaction in smoke mode and full submission with workbook upload in strict mode.
/// Requires a running Docker host (Category: RequiresDockerHost).
///
public sealed class TimeSpanItemNumberSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
{
///
/// Verifies the Time Span + Item Number search form submits with an uploaded workbook filter (TC-140).
///
///
/// Steps (smoke mode stops after step 4; strict mode runs all steps):
/// 1. Navigate to the search page.
/// 2. Enter the search name "MIGRATED-TC-140".
/// 3. Select the "Time Span + Item Number" search type from the dropdown.
/// 4. Verify the dropdown displays the selected type.
/// 5. Set the date range to 01/01/2019 – 12/31/2019 (strict only).
/// 6. Upload "single_item.xlsx" to the "Filter by Item Number" panel (strict only).
/// 7. Click Submit (strict only).
/// 8. Assert no error notification is present (strict only).
///
[Fact]
[Trait("Category", "RequiresDockerHost")]
public Task TimeSpanItemNumber_Submits()
{
return RunSearchSubmissionAsync(
UiSearchTypes.TimeSpanItem,
"MIGRATED-TC-140",
"01/01/2019",
"12/31/2019",
uploads:
[
("Filter by Item Number", "single_item.xlsx")
]);
}
}