PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentTests/UI/MainWindowTests.cs

84 lines
3.6 KiB
C#
Raw Normal View History

using FlaUI.Core;
using FlaUI.Core.AutomationElements;
using FlaUI.Core.Input;
using FlaUI.Core.Tools;
using FlaUI.UIA3;
using Xunit;
using System.Linq;
using System.Threading;
namespace EmployeeManagmentTests.UI
{
[Collection("Sequential")]
public class MainWindowTests : IDisposable
{
private readonly Application _application;
private readonly AutomationBase _automation;
public MainWindowTests()
{
_automation = new UIA3Automation();
_application = Application.Launch("C:\\Users\\kashi\\Desktop\\Univer\\7\\КПО\\Project\\EmployeeManagmentView\\bin\\Debug\\net8.0-windows\\EmployeeManagmentView.exe");
}
[Fact]
public void TestOpenEmployeeManagementWindow()
{
var mainWindow = _application.GetMainWindow(_automation);
var employeeButton = mainWindow.FindFirstDescendant(cf => cf.ByText("Работа с сотрудниками")).AsButton();
// Проверяем, что кнопка доступна и выполняем клик
Assert.True(employeeButton.IsEnabled, "Работа с сотрудниками");
employeeButton.Invoke();
// Ждем появления окна "Работа с сотрудниками" с тайм-аутом
var employeeManagementWindow = WaitForWindow("Управление сотрудниками");
Assert.NotNull(employeeManagementWindow);
// Проверяем, что окно доступно и готово к взаимодействию
Assert.True(employeeManagementWindow.IsEnabled, "Управление сотрудниками");
}
[Fact]
public void TestOpenPhysicalPersonManagementWindow()
{
var mainWindow = _application.GetMainWindow(_automation);
var physicalPersonButton = mainWindow.FindFirstDescendant(cf => cf.ByText("Работа с физ. лицами")).AsButton();
// Проверяем, что кнопка доступна и выполняем клик
Assert.True(physicalPersonButton.IsEnabled, "Работа с физ. лицами");
physicalPersonButton.Invoke();
// Ждем появления окна "Работа с физ. лицами" с тайм-аутом
var physicalPersonManagementWindow = WaitForWindow("Управление физическими лицами");
Assert.NotNull(physicalPersonManagementWindow);
// Проверяем, что окно доступно и готово к взаимодействию
Assert.True(physicalPersonManagementWindow.IsEnabled, "Управление физическими лицами");
}
private Window WaitForWindow(string windowTitle, int timeout = 10000) // Увеличен таймаут
{
var startTime = DateTime.Now;
while ((DateTime.Now - startTime).TotalMilliseconds < timeout)
{
var window = _application.GetAllTopLevelWindows(_automation)
.FirstOrDefault(w => w.Title.Contains(windowTitle));
if (window != null && window.IsEnabled)
{
return window;
}
Thread.Sleep(200); // Увеличена пауза между попытками
}
return null; // Если окно не найдено в пределах тайм-аута
}
public void Dispose()
{
_application.Close();
_automation.Dispose();
}
}
}