PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentTests/UI/MainWindowTests.cs
2024-12-09 23:46:32 +04:00

99 lines
4.0 KiB
C#
Raw Permalink 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 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;
using EmployeeManagmentView.PhysicalPerson;
using EmployeeManagmentView.Employee;
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, "Управление сотрудниками");
// Закрытие окон
mainWindow?.Close();
employeeManagementWindow?.Close();
}
[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, "Управление физическими лицами");
// Закрытие окон
mainWindow?.Close();
physicalPersonManagementWindow?.Close();
}
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();
}
}
}