Compare commits

...

4 Commits

Author SHA1 Message Date
Sergey Chebotar
a9aa1f30c5 Refactoring 2023-05-23 15:02:56 +03:00
Sergey Chebotar
7f8455d868 Fix exception on guessing single row 2023-05-23 15:02:14 +03:00
Sergey Chebotar
9d2f386a74 Add one row guess test 2023-05-23 14:39:49 +03:00
Sergey Chebotar
9840e0fb24 Add empty rows to test file 2023-05-23 14:35:45 +03:00
5 changed files with 35 additions and 13 deletions

View File

@ -14,7 +14,7 @@ public class GuessReader : IReader
public Dictionary<Product, double> ReadProducts(Range range) public Dictionary<Product, double> ReadProducts(Range range)
{ {
_progressBar = new("Ищу колонки со значениями", range.Columns.Count); _progressBar = new("Поиск возможных пар артикул-количество...", range.Columns.Count);
int? productColumnIndex = null; int? productColumnIndex = null;
List<int> amountColumnIndeces = new(); List<int> amountColumnIndeces = new();
@ -74,7 +74,7 @@ public class GuessReader : IReader
private bool IsProductColumn(Range column) private bool IsProductColumn(Range column)
{ {
int successCounter = 0; int successCounter = 0;
object[,] cells = column.Value2; var cells = column.Value2;
if (cells == null) if (cells == null)
{ {
@ -82,8 +82,8 @@ public class GuessReader : IReader
} }
for (int row = 1; row < column.Rows.Count + 1; row++) for (int row = 1; row < column.Rows.Count + 1; row++)
{ {
object currentCell = cells[row, 1]; object currentCell = column.Rows.Count == 1 ? cells : cells[row, 1];
if (currentCell == null) if (currentCell == null)
{ {
continue; continue;
@ -106,7 +106,7 @@ public class GuessReader : IReader
private bool IsAmountColumn(Range column) private bool IsAmountColumn(Range column)
{ {
int successCounter = 0; int successCounter = 0;
object[,] cells = column.Value2; var cells = column.Value2;
if (cells == null) if (cells == null)
{ {
@ -115,7 +115,7 @@ public class GuessReader : IReader
for (int row = 1; row < column.Rows.Count + 1; row++) for (int row = 1; row < column.Rows.Count + 1; row++)
{ {
object currentCell = cells[row, 1]; object currentCell = column.Rows.Count == 1 ? cells : cells[row, 1];
if (currentCell == null) if (currentCell == null)
{ {
continue; continue;
@ -143,23 +143,28 @@ public class GuessReader : IReader
return false; return false;
} }
successCounter++; if (++successCounter > 5)
{
return true;
}
} }
return successCounter > 1; return successCounter > 0;
} }
private Dictionary<Product, double> GetDictionaryFromColumns(Range productColumn, Range amountColumn) private Dictionary<Product, double> GetDictionaryFromColumns(Range productColumn, Range amountColumn)
{ {
Dictionary<Product, double> result = new(); Dictionary<Product, double> result = new();
_progressBar = new("Заполняю словарь значений...", productColumn.Rows.Count);
for (int row = 1; row < productColumn.Rows.Count + 1; row++) for (int row = 1; row < productColumn.Rows.Count + 1; row++)
{ {
object[,] amountCells = amountColumn.Value2; _progressBar.Update();
object currentAmountCell = amountCells[row, 1]; var amountCells = amountColumn.Value2;
object currentAmountCell = productColumn.Rows.Count == 1 ? amountCells : amountCells[row, 1];
object[,] productCells = productColumn.Value2; var productCells = productColumn.Value2;
object currentProductCell = productCells[row, 1]; object currentProductCell = productColumn.Rows.Count == 1 ? productCells : productCells[row, 1];
double amountValue = 0.0; double amountValue = 0.0;

View File

@ -18,7 +18,7 @@ public class CanDoGuess : IDisposable
} }
[ExcelFact(Workbook = @"..\..\..\TestWorkbooks\TestSpecificationGuess.xlsx")] [ExcelFact(Workbook = @"..\..\..\TestWorkbooks\TestSpecificationGuess.xlsx")]
public void CanWrite() public void CanWriteMultiplyRows()
{ {
Worksheet sourceSheet = Util.Workbook.Worksheets[1]; Worksheet sourceSheet = Util.Workbook.Worksheets[1];
RhSolutionsAddIn.Configuration.SetPriceListPath(Path.GetFullPath(@"..\..\..\TestWorkbooks\TargetSpecificationGuess.xlsx")); RhSolutionsAddIn.Configuration.SetPriceListPath(Path.GetFullPath(@"..\..\..\TestWorkbooks\TargetSpecificationGuess.xlsx"));
@ -34,6 +34,23 @@ public class CanDoGuess : IDisposable
Assert.Equal(products.First().Item2.Values.Sum(), targetProducts.First().Item2.Values.Sum()); Assert.Equal(products.First().Item2.Values.Sum(), targetProducts.First().Item2.Values.Sum());
} }
[ExcelFact(Workbook = @"..\..\..\TestWorkbooks\TestSpecificationGuessOneRow.xlsx")]
public void CanWriteOneRow()
{
Worksheet sourceSheet = Util.Workbook.Worksheets[1];
RhSolutionsAddIn.Configuration.SetPriceListPath(Path.GetFullPath(@"..\..\..\TestWorkbooks\TargetSpecificationGuessOneRow.xlsx"));
var products = _reader.ReadProducts(new[] { sourceSheet });
var _writer = new ExcelWriter(Util.Application, RhSolutionsAddIn.Configuration);
_writer.WriteProducts(products);
Worksheet targetSheet = Util.Application.ActiveWindow.ActiveSheet;
var targetProducts = _reader.ReadProducts(new[] { targetSheet });
Assert.Equal("TestSpecificationGuessOneRow", products.First().Item1);
Assert.Equal("TargetSpecificationGuessOneRow", targetProducts.First().Item1);
Assert.Equal(products.First().Item2.Count(), targetProducts.First().Item2.Count());
Assert.Equal(products.First().Item2.Values.Sum(), targetProducts.First().Item2.Values.Sum());
}
public void Dispose() public void Dispose()
{ {
_addIn.AutoClose(); _addIn.AutoClose();