2024-04-09 13:48:30 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using RouteGuideContracts.BindingModels;
|
|
|
|
|
using RouteGuideContracts.BusinessLogicsContracts;
|
|
|
|
|
using RouteGuideContracts.SearchModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
2024-04-09 20:03:50 +04:00
|
|
|
|
using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock;
|
2024-04-09 13:48:30 +04:00
|
|
|
|
|
|
|
|
|
namespace RouteGuideView
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Форма с тестами для сущности "Водитель"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class FormDriversTests : Form
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Логгер
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Бизнес-логика
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly IDriverLogic _driverLogic;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Конструктор
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="logger"></param>
|
|
|
|
|
/// <param name="driverLogic"></param>
|
|
|
|
|
public FormDriversTests(ILogger<FormDriversTests> logger, IDriverLogic driverLogic)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_driverLogic = driverLogic;
|
|
|
|
|
|
2024-04-09 20:03:50 +04:00
|
|
|
|
numericUpDownInsert.Maximum = 10000;
|
|
|
|
|
numericUpDownRead.Maximum = 10000;
|
|
|
|
|
numericUpDownDelete.Maximum = 10000;
|
2024-04-09 13:48:30 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Кнопка "Создать"
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void buttonInsert_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
int entitiesCount = Convert.ToInt32(numericUpDownInsert.Value);
|
|
|
|
|
_logger.LogInformation("DriverInsertTest. Count: {Count}", entitiesCount);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
double time = 0;
|
|
|
|
|
var stopwatch = new Stopwatch();
|
|
|
|
|
for (int i = 1; i <= entitiesCount; i++)
|
|
|
|
|
{
|
|
|
|
|
var model = new DriverBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = 0,
|
|
|
|
|
FullName = $"Водитель {i}",
|
|
|
|
|
Phone = $"Номер {i}",
|
|
|
|
|
Experience = 1
|
|
|
|
|
};
|
|
|
|
|
|
2024-04-09 20:03:50 +04:00
|
|
|
|
stopwatch.Restart();
|
2024-04-09 13:48:30 +04:00
|
|
|
|
var operationResult = _driverLogic.Create(model);
|
|
|
|
|
if (!operationResult)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Ошибка при сохранении сущности 'Водитель'. Дополнительная информация в логах.");
|
|
|
|
|
}
|
|
|
|
|
stopwatch.Stop();
|
|
|
|
|
time += stopwatch.ElapsedMilliseconds;
|
|
|
|
|
}
|
2024-04-09 20:03:50 +04:00
|
|
|
|
labelInsertTime.Text = $"Total time: {Convert.ToInt32(time)} ms / Average time: {Convert.ToInt32(time / entitiesCount)} ms";
|
2024-04-09 13:48:30 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "DriverInsertTest. Test failed");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Кнопка "Получить"
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void buttonRead_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
int entitiesCount = Convert.ToInt32(numericUpDownRead.Value);
|
|
|
|
|
_logger.LogInformation("DriverReadTest. Count: {Count}", entitiesCount);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var stopwatch = new Stopwatch();
|
|
|
|
|
stopwatch.Start();
|
|
|
|
|
_driverLogic.ReadList(entitiesCount);
|
|
|
|
|
stopwatch.Stop();
|
2024-04-09 20:03:50 +04:00
|
|
|
|
labelReadTime.Text = $"Total time: {Convert.ToInt32(stopwatch.ElapsedMilliseconds)} ms / Average time: {Convert.ToInt32(stopwatch.ElapsedMilliseconds / entitiesCount)} ms";
|
2024-04-09 13:48:30 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "DriverReadTest. Test failed");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Кнопка "Удалить"
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void buttonDelete_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
int entitiesCount = Convert.ToInt32(numericUpDownDelete.Value);
|
|
|
|
|
_logger.LogInformation("DriverDeleteTest. Count: {Count}", entitiesCount);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
double time = 0;
|
|
|
|
|
var stopwatch = new Stopwatch();
|
|
|
|
|
for (int i = 1; i <= entitiesCount; i++)
|
|
|
|
|
{
|
2024-04-09 20:03:50 +04:00
|
|
|
|
stopwatch.Restart();
|
2024-04-09 13:48:30 +04:00
|
|
|
|
_driverLogic.Delete();
|
|
|
|
|
stopwatch.Stop();
|
|
|
|
|
time += stopwatch.ElapsedMilliseconds;
|
|
|
|
|
}
|
2024-04-09 20:03:50 +04:00
|
|
|
|
labelDeleteTime.Text = $"Total time: {Convert.ToInt32(time)} ms / Average time: {Convert.ToInt32(time / entitiesCount)} ms";
|
2024-04-09 13:48:30 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "DriverDeleteTest. Test failed");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|