aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.SkuParser.Tests/ExcelParserTests.cs
blob: 781ea566248c9d93a206c0cb55d7b4615d981886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using RhSolutions.SkuParser.Services;

namespace RhSolutions.SkuParser.Tests;

public class ExcelParserTests
{
	private static readonly Dictionary<Product, double> _expected = new()
	{
		[new Product() {Sku = "11303703100"}] = 2129.5,
		[new Product() {Sku = "11303803100"}] = 503,
		[new Product() {Sku = "11303903050"}] = 52,
		[new Product() {Sku = "11080011001"}] = 2154,
		[new Product() {Sku = "11080021001"}] = 134,
		[new Product() {Sku = "11080031001"}] = 6,
		[new Product() {Sku = "11080311001"}] = 462,
		[new Product() {Sku = "11080611001"}] = 38,
		[new Product() {Sku = "11080811001"}] = 24,
		[new Product() {Sku = "11080831001"}] = 2,
	};

	[TestCase("simple.xlsx")]
	[TestCase("simpleWithNames.xlsx")]
	[TestCase("withHeader.xlsx")]
	[TestCase("withHeaderAndGarbage.xlsx")]
	[TestCase("twoTables.xlsx")]
	[TestCase("rhSolutionsBsTable.xlsx")]
	[TestCase("simpleWithFormulas.xlsx")]
	public void XlsxTests(string filename)
	{
		var mockFile = FormFileUtil.GetMockFormFile(filename);
		var parser = new CommonExcelParser();
		var actual = parser.ParseProducts(mockFile.Object);
		Assert.That(actual.Count, Is.EqualTo(_expected.Count()));
		CollectionAssert.AreEqual(_expected, actual);
	}

	[TestCase("simple.csv")]
	public void CsvTests(string filename)
	{
		var mockFile = FormFileUtil.GetMockFormFile(filename);
		var parser = new CommonCsvParser();
		var actual = parser.ParseProducts(mockFile.Object);
		Assert.That(actual.Count, Is.EqualTo(_expected.Count()));
		CollectionAssert.AreEqual(_expected, actual);
	}
}