mirror of
https://gitee.com/dotnetchina/MiniExcel.git
synced 2024-11-30 02:47:39 +08:00
746 lines
33 KiB
C#
746 lines
33 KiB
C#
using Xunit;
|
|
using System;
|
|
using System.Linq;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using Xunit.Abstractions;
|
|
using static MiniExcelLibs.Tests.MiniExcelOpenXmlTests;
|
|
using System.Globalization;
|
|
using OfficeOpenXml;
|
|
using Newtonsoft.Json;
|
|
using MiniExcelLibs.Attributes;
|
|
using MiniExcelLibs.Tests.Utils;
|
|
using System.Data;
|
|
|
|
namespace MiniExcelLibs.Tests
|
|
{
|
|
public partial class MiniExcelIssueTests
|
|
{
|
|
private readonly ITestOutputHelper output;
|
|
public MiniExcelIssueTests(ITestOutputHelper output)
|
|
{
|
|
this.output = output;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Version <= v0.13.1 Template merge row list rendering has no merge
|
|
/// https://github.com/shps951023/MiniExcel/issues/207
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue207()
|
|
{
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
var tempaltePath = @"../../../../../samples/xlsx/TestIssue207_2.xlsx";
|
|
|
|
var value = new
|
|
{
|
|
project = new[] {
|
|
new {name = "項目1",content="[]內容1,[]內容2,[]內容3,[]內容4,[]內容5"},
|
|
new {name = "項目2",content="[]內容1,[]內容2,[]內容3,[]內容4,[]內容5"},
|
|
new {name = "項目3",content="[]內容1,[]內容2,[]內容3,[]內容4,[]內容5"},
|
|
new {name = "項目4",content="[]內容1,[]內容2,[]內容3,[]內容4,[]內容5"},
|
|
}
|
|
};
|
|
|
|
MiniExcel.SaveAsByTemplate(path, tempaltePath, value);
|
|
|
|
var rows = MiniExcel.Query(path).ToList();
|
|
|
|
Assert.Equal("項目1", rows[0].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[0].B);
|
|
Assert.Equal("項目2", rows[2].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[2].B);
|
|
Assert.Equal("項目3", rows[4].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[4].B);
|
|
Assert.Equal("項目4", rows[6].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[6].B);
|
|
|
|
Assert.Equal("Test1", rows[8].A);
|
|
Assert.Equal("Test2", rows[8].B);
|
|
Assert.Equal("Test3", rows[8].C);
|
|
|
|
Assert.Equal("項目1", rows[12].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[12].B);
|
|
Assert.Equal("項目2", rows[13].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[13].B);
|
|
Assert.Equal("項目3", rows[14].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[14].B);
|
|
Assert.Equal("項目4", rows[15].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[15].B);
|
|
|
|
var demension = Helpers.GetFirstSheetDimensionRefValue(path);
|
|
Assert.Equal("A1:C16", demension);
|
|
}
|
|
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
var tempaltePath = @"../../../../../samples/xlsx/TestIssue207_Template_Merge_row_list_rendering_without_merge/template.xlsx";
|
|
|
|
var value = new
|
|
{
|
|
project = new[] {
|
|
new {name = "項目1",content="[]內容1,[]內容2,[]內容3,[]內容4,[]內容5"},
|
|
new {name = "項目2",content="[]內容1,[]內容2,[]內容3,[]內容4,[]內容5"},
|
|
new {name = "項目3",content="[]內容1,[]內容2,[]內容3,[]內容4,[]內容5"},
|
|
new {name = "項目4",content="[]內容1,[]內容2,[]內容3,[]內容4,[]內容5"},
|
|
}
|
|
};
|
|
|
|
MiniExcel.SaveAsByTemplate(path, tempaltePath, value);
|
|
|
|
var rows = MiniExcel.Query(path).ToList();
|
|
|
|
Assert.Equal("項目1", rows[0].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[0].C);
|
|
Assert.Equal("項目2", rows[3].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[3].C);
|
|
Assert.Equal("項目3", rows[6].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[6].C);
|
|
Assert.Equal("項目4", rows[9].A);
|
|
Assert.Equal("[]內容1,[]內容2,[]內容3,[]內容4,[]內容5", rows[9].C);
|
|
var demension = Helpers.GetFirstSheetDimensionRefValue(path);
|
|
Assert.Equal("A1:E15", demension);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/87
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue87()
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
var templatePath = @"../../../../../samples/xlsx/TestTemplateCenterEmpty.xlsx";
|
|
var value = new
|
|
{
|
|
Tests = Enumerable.Range(1, 5).Select((s, i) => new { test1 = i, test2 = i })
|
|
};
|
|
using (var stream = File.OpenRead(templatePath))
|
|
{
|
|
var rows = MiniExcel.Query(templatePath).ToList();
|
|
MiniExcel.SaveAsByTemplate(path, templatePath, value);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/208
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue208()
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue208.xlsx";
|
|
var columns = MiniExcel.GetColumns(path).ToList();
|
|
Assert.Equal(16384, columns.Count);
|
|
Assert.Equal("XFD", columns[16383]);
|
|
}
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/206
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue206()
|
|
{
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
var templatePath = @"../../../../../samples/xlsx/TestTemplateBasicIEmumerableFill.xlsx";
|
|
|
|
var dt = new DataTable();
|
|
{
|
|
dt.Columns.Add("name");
|
|
dt.Columns.Add("department");
|
|
}
|
|
var value = new Dictionary<string, object>()
|
|
{
|
|
["employees"] = dt
|
|
};
|
|
MiniExcel.SaveAsByTemplate(path, templatePath, value);
|
|
|
|
var demension = Helpers.GetFirstSheetDimensionRefValue(path);
|
|
Assert.Equal("A1:B2", demension);
|
|
}
|
|
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
var templatePath = @"../../../../../samples/xlsx/TestTemplateBasicIEmumerableFill.xlsx";
|
|
|
|
var dt = new DataTable();
|
|
{
|
|
dt.Columns.Add("name");
|
|
dt.Columns.Add("department");
|
|
dt.Rows.Add("Jack", "HR");
|
|
}
|
|
var value = new Dictionary<string, object>()
|
|
{
|
|
["employees"] = dt
|
|
};
|
|
MiniExcel.SaveAsByTemplate(path, templatePath, value);
|
|
|
|
var demension = Helpers.GetFirstSheetDimensionRefValue(path);
|
|
Assert.Equal("A1:B2", demension);
|
|
}
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/193
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue193()
|
|
{
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
var templatePath = @"../../../../../samples/xlsx/TestTemplateComplexWithNamespacePrefix.xlsx";
|
|
|
|
// 1. By Class
|
|
var value = new
|
|
{
|
|
title = "FooCompany",
|
|
managers = new[] {
|
|
new {name="Jack",department="HR"},
|
|
new {name="Loan",department="IT"}
|
|
},
|
|
employees = new[] {
|
|
new {name="Wade",department="HR"},
|
|
new {name="Felix",department="HR"},
|
|
new {name="Eric",department="IT"},
|
|
new {name="Keaton",department="IT"}
|
|
}
|
|
};
|
|
MiniExcel.SaveAsByTemplate(path, templatePath, value);
|
|
|
|
|
|
|
|
foreach (var sheetName in MiniExcel.GetSheetNames(path))
|
|
{
|
|
var rows = MiniExcel.Query(path, sheetName: sheetName).ToList();
|
|
|
|
Assert.Equal(9, rows.Count);
|
|
|
|
Assert.Equal("FooCompany", rows[0].A);
|
|
Assert.Equal("Jack", rows[2].B);
|
|
Assert.Equal("HR", rows[2].C);
|
|
Assert.Equal("Loan", rows[3].B);
|
|
Assert.Equal("IT", rows[3].C);
|
|
|
|
Assert.Equal("Wade", rows[5].B);
|
|
Assert.Equal("HR", rows[5].C);
|
|
Assert.Equal("Felix", rows[6].B);
|
|
Assert.Equal("HR", rows[6].C);
|
|
|
|
Assert.Equal("Eric", rows[7].B);
|
|
Assert.Equal("IT", rows[7].C);
|
|
Assert.Equal("Keaton", rows[8].B);
|
|
Assert.Equal("IT", rows[8].C);
|
|
|
|
var demension = Helpers.GetFirstSheetDimensionRefValue(path);
|
|
Assert.Equal("A1:C9", demension);
|
|
|
|
//TODO:row can't contain xmlns
|
|
//![image](https://user-images.githubusercontent.com/12729184/114998840-ead44500-9ed3-11eb-8611-58afb98faed9.png)
|
|
|
|
}
|
|
}
|
|
|
|
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
var templatePath = @"../../../../../samples/xlsx/TestTemplateComplex.xlsx";
|
|
|
|
// 2. By Dictionary
|
|
var value = new Dictionary<string, object>()
|
|
{
|
|
["title"] = "FooCompany",
|
|
["managers"] = new[] {
|
|
new {name="Jack",department="HR"},
|
|
new {name="Loan",department="IT"}
|
|
},
|
|
["employees"] = new[] {
|
|
new {name="Wade",department="HR"},
|
|
new {name="Felix",department="HR"},
|
|
new {name="Eric",department="IT"},
|
|
new {name="Keaton",department="IT"}
|
|
}
|
|
};
|
|
MiniExcel.SaveAsByTemplate(path, templatePath, value);
|
|
|
|
var rows = MiniExcel.Query(path).ToList();
|
|
Assert.Equal("FooCompany", rows[0].A);
|
|
Assert.Equal("Jack", rows[2].B);
|
|
Assert.Equal("HR", rows[2].C);
|
|
Assert.Equal("Loan", rows[3].B);
|
|
Assert.Equal("IT", rows[3].C);
|
|
|
|
Assert.Equal("Wade", rows[5].B);
|
|
Assert.Equal("HR", rows[5].C);
|
|
Assert.Equal("Felix", rows[6].B);
|
|
Assert.Equal("HR", rows[6].C);
|
|
|
|
Assert.Equal("Eric", rows[7].B);
|
|
Assert.Equal("IT", rows[7].C);
|
|
Assert.Equal("Keaton", rows[8].B);
|
|
Assert.Equal("IT", rows[8].C);
|
|
|
|
var demension = Helpers.GetFirstSheetDimensionRefValue(path);
|
|
Assert.Equal("A1:C9", demension);
|
|
}
|
|
|
|
}
|
|
|
|
[Fact]
|
|
public void Issue142()
|
|
{
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
MiniExcel.SaveAs(path, new Issue142VO[] { new Issue142VO { MyProperty1 = "MyProperty1", MyProperty2 = "MyProperty2", MyProperty3 = "MyProperty3", MyProperty4 = "MyProperty4", MyProperty5 = "MyProperty5", MyProperty6 = "MyProperty6", MyProperty7 = "MyProperty7" } });
|
|
|
|
{
|
|
var rows = MiniExcel.Query(path).ToList();
|
|
|
|
Assert.Equal("MyProperty4", rows[0].A);
|
|
Assert.Equal("CustomColumnName", rows[0].B); //note
|
|
Assert.Equal("MyProperty5", rows[0].C);
|
|
Assert.Equal("MyProperty2", rows[0].D);
|
|
Assert.Equal("MyProperty6", rows[0].E);
|
|
Assert.Equal(null, rows[0].F);
|
|
Assert.Equal("MyProperty3", rows[0].G);
|
|
|
|
Assert.Equal("MyProperty4", rows[0].A);
|
|
Assert.Equal("CustomColumnName", rows[0].B); //note
|
|
Assert.Equal("MyProperty5", rows[0].C);
|
|
Assert.Equal("MyProperty2", rows[0].D);
|
|
Assert.Equal("MyProperty6", rows[0].E);
|
|
Assert.Equal(null, rows[0].F);
|
|
Assert.Equal("MyProperty3", rows[0].G);
|
|
}
|
|
|
|
{
|
|
var rows = MiniExcel.Query<Issue142VO>(path).ToList();
|
|
|
|
|
|
Assert.Equal("MyProperty4", rows[0].MyProperty4);
|
|
Assert.Equal("MyProperty1", rows[0].MyProperty1); //note
|
|
Assert.Equal("MyProperty5", rows[0].MyProperty5);
|
|
Assert.Equal("MyProperty2", rows[0].MyProperty2);
|
|
Assert.Equal("MyProperty6", rows[0].MyProperty6);
|
|
Assert.Null(rows[0].MyProperty7);
|
|
Assert.Equal("MyProperty3", rows[0].MyProperty3);
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.csv");
|
|
MiniExcel.SaveAs(path, new Issue142VO[] { new Issue142VO { MyProperty1 = "MyProperty1", MyProperty2 = "MyProperty2", MyProperty3 = "MyProperty3", MyProperty4 = "MyProperty4", MyProperty5 = "MyProperty5", MyProperty6 = "MyProperty6", MyProperty7 = "MyProperty7" } });
|
|
var expected = @"MyProperty4,CustomColumnName,MyProperty5,MyProperty2,MyProperty6,,MyProperty3
|
|
MyProperty4,MyProperty1,MyProperty5,MyProperty2,MyProperty6,,MyProperty3
|
|
";
|
|
Assert.Equal(expected, File.ReadAllText(path));
|
|
|
|
{
|
|
var rows = MiniExcel.Query<Issue142VO>(path).ToList();
|
|
|
|
|
|
Assert.Equal("MyProperty4", rows[0].MyProperty4);
|
|
Assert.Equal("MyProperty1", rows[0].MyProperty1); //note
|
|
Assert.Equal("MyProperty5", rows[0].MyProperty5);
|
|
Assert.Equal("MyProperty2", rows[0].MyProperty2);
|
|
Assert.Equal("MyProperty6", rows[0].MyProperty6);
|
|
Assert.Null(rows[0].MyProperty7);
|
|
Assert.Equal("MyProperty3", rows[0].MyProperty3);
|
|
}
|
|
}
|
|
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.csv");
|
|
var input = new Issue142VoDuplicateColumnName[] { new Issue142VoDuplicateColumnName { } };
|
|
Assert.Throws<InvalidOperationException>(() => MiniExcel.SaveAs(path, input));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Issue142_Query()
|
|
{
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue142.xlsx";
|
|
Assert.Throws<InvalidOperationException>(() => MiniExcel.Query<Issue142VoExcelColumnNameNotFound>(path).ToList());
|
|
}
|
|
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue142.xlsx";
|
|
Assert.Throws<ArgumentException>(() => MiniExcel.Query<Issue142VoOverIndex>(path).ToList());
|
|
}
|
|
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue142.xlsx";
|
|
var rows = MiniExcel.Query<Issue142VO>(path).ToList();
|
|
Assert.Equal("CustomColumnName", rows[0].MyProperty1);
|
|
Assert.Null(rows[0].MyProperty7);
|
|
Assert.Equal("MyProperty2", rows[0].MyProperty2);
|
|
Assert.Equal("MyProperty103", rows[0].MyProperty3);
|
|
Assert.Equal("MyProperty100", rows[0].MyProperty4);
|
|
Assert.Equal("MyProperty102", rows[0].MyProperty5);
|
|
Assert.Equal("MyProperty6", rows[0].MyProperty6);
|
|
}
|
|
|
|
{
|
|
var path = @"../../../../../samples/csv/TestIssue142.csv";
|
|
var rows = MiniExcel.Query<Issue142VO>(path).ToList();
|
|
Assert.Equal("CustomColumnName", rows[0].MyProperty1);
|
|
Assert.Null(rows[0].MyProperty7);
|
|
Assert.Equal("MyProperty2", rows[0].MyProperty2);
|
|
Assert.Equal("MyProperty103", rows[0].MyProperty3);
|
|
Assert.Equal("MyProperty100", rows[0].MyProperty4);
|
|
Assert.Equal("MyProperty102", rows[0].MyProperty5);
|
|
Assert.Equal("MyProperty6", rows[0].MyProperty6);
|
|
}
|
|
}
|
|
|
|
public class Issue142VO
|
|
{
|
|
[ExcelColumnName("CustomColumnName")]
|
|
public string MyProperty1 { get; set; } //index = 1
|
|
[ExcelIgnore]
|
|
public string MyProperty7 { get; set; } //index = null
|
|
public string MyProperty2 { get; set; } //index = 3
|
|
[ExcelColumnIndex(6)]
|
|
public string MyProperty3 { get; set; } //index = 6
|
|
[ExcelColumnIndex("A")] // equal column index 0
|
|
public string MyProperty4 { get; set; }
|
|
[ExcelColumnIndex(2)]
|
|
public string MyProperty5 { get; set; } //index = 2
|
|
public string MyProperty6 { get; set; } //index = 4
|
|
}
|
|
|
|
public class Issue142VoDuplicateColumnName
|
|
{
|
|
[ExcelColumnIndex("A")]
|
|
public int MyProperty1 { get; set; }
|
|
[ExcelColumnIndex("A")]
|
|
public int MyProperty2 { get; set; }
|
|
|
|
public int MyProperty3 { get; set; }
|
|
[ExcelColumnIndex("B")]
|
|
public int MyProperty4 { get; set; }
|
|
}
|
|
|
|
public class Issue142VoOverIndex
|
|
{
|
|
[ExcelColumnIndex("Z")]
|
|
public int MyProperty1 { get; set; }
|
|
}
|
|
|
|
public class Issue142VoExcelColumnNameNotFound
|
|
{
|
|
[ExcelColumnIndex("B")]
|
|
public int MyProperty1 { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/150
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue150()
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
//MiniExcel.SaveAs(path, new[] { "1", "2" });
|
|
Assert.Throws<NotImplementedException>(() => MiniExcel.SaveAs(path, new[] { 1, 2 }));
|
|
File.Delete(path);
|
|
Assert.Throws<NotImplementedException>(() => MiniExcel.SaveAs(path, new[] { "1", "2" }));
|
|
File.Delete(path);
|
|
Assert.Throws<NotImplementedException>(() => MiniExcel.SaveAs(path, new[] { '1', '2' }));
|
|
File.Delete(path);
|
|
Assert.Throws<NotImplementedException>(() => MiniExcel.SaveAs(path, new[] { DateTime.Now }));
|
|
File.Delete(path);
|
|
Assert.Throws<NotImplementedException>(() => MiniExcel.SaveAs(path, new[] { Guid.NewGuid() }));
|
|
File.Delete(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/157
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue157()
|
|
{
|
|
{
|
|
var path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid().ToString()}.xlsx");
|
|
Console.WriteLine("==== SaveAs by strongly type ====");
|
|
var input = JsonConvert.DeserializeObject<IEnumerable<UserAccount>>("[{\"ID\":\"78de23d2-dcb6-bd3d-ec67-c112bbc322a2\",\"Name\":\"Wade\",\"BoD\":\"2020-09-27T00:00:00\",\"Age\":5019,\"VIP\":false,\"Points\":5019.12,\"IgnoredProperty\":null},{\"ID\":\"20d3bfce-27c3-ad3e-4f70-35c81c7e8e45\",\"Name\":\"Felix\",\"BoD\":\"2020-10-25T00:00:00\",\"Age\":7028,\"VIP\":true,\"Points\":7028.46,\"IgnoredProperty\":null},{\"ID\":\"52013bf0-9aeb-48e6-e5f5-e9500afb034f\",\"Name\":\"Phelan\",\"BoD\":\"2021-10-04T00:00:00\",\"Age\":3836,\"VIP\":true,\"Points\":3835.7,\"IgnoredProperty\":null},{\"ID\":\"3b97b87c-7afe-664f-1af5-6914d313ae25\",\"Name\":\"Samuel\",\"BoD\":\"2020-06-21T00:00:00\",\"Age\":9352,\"VIP\":false,\"Points\":9351.71,\"IgnoredProperty\":null},{\"ID\":\"9a989c43-d55f-5306-0d2f-0fbafae135bb\",\"Name\":\"Raymond\",\"BoD\":\"2021-07-12T00:00:00\",\"Age\":8210,\"VIP\":true,\"Points\":8209.76,\"IgnoredProperty\":null}]");
|
|
MiniExcel.SaveAs(path, input);
|
|
|
|
var rows = MiniExcel.Query(path, sheetName: "Sheet1").ToList();
|
|
Assert.Equal(6, rows.Count());
|
|
Assert.Equal("Sheet1", MiniExcel.GetSheetNames(path).First());
|
|
|
|
using (var p = new ExcelPackage(new FileInfo(path)))
|
|
{
|
|
var ws = p.Workbook.Worksheets.First();
|
|
Assert.Equal("Sheet1", ws.Name);
|
|
Assert.Equal("Sheet1", p.Workbook.Worksheets["Sheet1"].Name);
|
|
}
|
|
}
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue157.xlsx";
|
|
|
|
{
|
|
var rows = MiniExcel.Query(path, sheetName: "Sheet1").ToList();
|
|
Assert.Equal(6, rows.Count());
|
|
Assert.Equal("Sheet1", MiniExcel.GetSheetNames(path).First());
|
|
}
|
|
using (var p = new ExcelPackage(new FileInfo(path)))
|
|
{
|
|
var ws = p.Workbook.Worksheets.First();
|
|
Assert.Equal("Sheet1", ws.Name);
|
|
Assert.Equal("Sheet1", p.Workbook.Worksheets["Sheet1"].Name);
|
|
}
|
|
|
|
using (var stream = File.OpenRead(path))
|
|
{
|
|
var rows = MiniExcel.Query<UserAccount>(path, sheetName: "Sheet1").ToList();
|
|
Assert.Equal(5, rows.Count());
|
|
|
|
Assert.Equal(Guid.Parse("78DE23D2-DCB6-BD3D-EC67-C112BBC322A2"), rows[0].ID);
|
|
Assert.Equal("Wade", rows[0].Name);
|
|
Assert.Equal(DateTime.ParseExact("27/09/2020", "dd/MM/yyyy", CultureInfo.InvariantCulture), rows[0].BoD);
|
|
Assert.False(rows[0].VIP);
|
|
Assert.Equal(decimal.Parse("5019.12"), rows[0].Points);
|
|
Assert.Equal(1, rows[0].IgnoredProperty);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/149
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue149()
|
|
{
|
|
var chars = new char[] {'\u0000','\u0001','\u0002','\u0003','\u0004','\u0005','\u0006','\u0007','\u0008',
|
|
'\u0009', //<HT>
|
|
'\u000A', //<LF>
|
|
'\u000B','\u000C',
|
|
'\u000D', //<CR>
|
|
'\u000E','\u000F','\u0010','\u0011','\u0012','\u0013','\u0014','\u0015','\u0016',
|
|
'\u0017','\u0018','\u0019','\u001A','\u001B','\u001C','\u001D','\u001E','\u001F','\u007F'
|
|
}.Select(s => s.ToString()).ToArray();
|
|
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue149.xlsx";
|
|
var rows = MiniExcel.Query(path).Select(s => (string)s.A).ToList();
|
|
for (int i = 0; i < chars.Length; i++)
|
|
{
|
|
//output.WriteLine($"{i} , {chars[i]} , {rows[i]}");
|
|
if (i == 13)
|
|
continue;
|
|
Assert.Equal(chars[i], rows[i]);
|
|
}
|
|
}
|
|
|
|
{
|
|
string path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.xlsx");
|
|
var input = chars.Select(s => new { Test = s.ToString() });
|
|
MiniExcel.SaveAs(path, input);
|
|
|
|
var rows = MiniExcel.Query(path, true).Select(s => (string)s.Test).ToList();
|
|
for (int i = 0; i < chars.Length; i++)
|
|
{
|
|
output.WriteLine($"{i} , {chars[i]} , {rows[i]}");
|
|
if (i == 13 || i == 9 || i == 10)
|
|
continue;
|
|
Assert.Equal(chars[i], rows[i]);
|
|
}
|
|
}
|
|
|
|
{
|
|
string path = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.xlsx");
|
|
var input = chars.Select(s => new { Test = s.ToString() });
|
|
MiniExcel.SaveAs(path, input);
|
|
|
|
var rows = MiniExcel.Query<Issue149VO>(path).Select(s => (string)s.Test).ToList();
|
|
for (int i = 0; i < chars.Length; i++)
|
|
{
|
|
output.WriteLine($"{i} , {chars[i]} , {rows[i]}");
|
|
if (i == 13 || i == 9 || i == 10)
|
|
continue;
|
|
Assert.Equal(chars[i], rows[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
public class Issue149VO
|
|
{
|
|
public string Test { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/153
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue153()
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue153.xlsx";
|
|
var rows = MiniExcel.Query(path, true).First() as IDictionary<string, object>;
|
|
Assert.Equal(new[] { "序号", "代号", "新代号", "名称", "XXX", "部门名称", "单位", "ERP工时 (小时)A", "工时(秒) A/3600", "标准人工工时(秒)", "生产标准机器工时(秒)", "财务、标准机器工时(秒)", "更新日期", "产品机种", "备注", "最近一次修改前的标准工时(秒)", "最近一次修改前的标准机时(秒)", "备注1" }
|
|
, rows.Keys);
|
|
}
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/137
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue137()
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue137.xlsx";
|
|
|
|
{
|
|
var rows = MiniExcel.Query(path).ToList();
|
|
var first = rows[0] as IDictionary<string, object>; //![image](https://user-images.githubusercontent.com/12729184/113266322-ba06e400-9307-11eb-9521-d36abfda75cc.png)
|
|
Assert.Equal(new[] { "A", "B", "C", "D", "E", "F", "G", "H" }, first.Keys.ToArray());
|
|
Assert.Equal(11, rows.Count);
|
|
{
|
|
var row = rows[0] as IDictionary<string, object>;
|
|
Assert.Equal("比例", row["A"]);
|
|
Assert.Equal("商品", row["B"]);
|
|
Assert.Equal("滿倉口數", row["C"]);
|
|
Assert.Equal(" ", row["D"]);
|
|
Assert.Equal(" ", row["E"]);
|
|
Assert.Equal(" ", row["F"]);
|
|
Assert.Equal(Double.Parse("0"), row["G"]);
|
|
Assert.Equal("1為港幣 0為台幣", row["H"]);
|
|
}
|
|
{
|
|
var row = rows[1] as IDictionary<string, object>;
|
|
Assert.Equal(double.Parse("1"), row["A"]);
|
|
Assert.Equal("MTX", row["B"]);
|
|
Assert.Equal(double.Parse("10"), row["C"]);
|
|
Assert.Null(row["D"]);
|
|
Assert.Null(row["E"]);
|
|
Assert.Null(row["F"]);
|
|
Assert.Null(row["G"]);
|
|
Assert.Null(row["H"]);
|
|
}
|
|
{
|
|
var row = rows[2] as IDictionary<string, object>;
|
|
Assert.Equal(double.Parse("0.95"), row["A"]);
|
|
}
|
|
}
|
|
|
|
// dynamic query with head
|
|
{
|
|
var rows = MiniExcel.Query(path, true).ToList();
|
|
var first = rows[0] as IDictionary<string, object>; //![image](https://user-images.githubusercontent.com/12729184/113266322-ba06e400-9307-11eb-9521-d36abfda75cc.png)
|
|
Assert.Equal(new[] { "比例", "商品", "滿倉口數", "0", "1為港幣 0為台幣" }, first.Keys.ToArray());
|
|
Assert.Equal(10, rows.Count);
|
|
{
|
|
var row = rows[0] as IDictionary<string, object>;
|
|
Assert.Equal(double.Parse("1"), row["比例"]);
|
|
Assert.Equal("MTX", row["商品"]);
|
|
Assert.Equal(double.Parse("10"), row["滿倉口數"]);
|
|
Assert.Null(row["0"]);
|
|
Assert.Null(row["1為港幣 0為台幣"]);
|
|
}
|
|
|
|
{
|
|
var row = rows[1] as IDictionary<string, object>;
|
|
Assert.Equal(double.Parse("0.95"), row["比例"]);
|
|
}
|
|
}
|
|
|
|
{
|
|
var rows = MiniExcel.Query<Issue137ExcelRow>(path).ToList();
|
|
Assert.Equal(10, rows.Count);
|
|
{
|
|
var row = rows[0];
|
|
Assert.Equal(1, row.比例);
|
|
Assert.Equal("MTX", row.商品);
|
|
Assert.Equal(10, row.滿倉口數);
|
|
}
|
|
|
|
{
|
|
var row = rows[1];
|
|
Assert.Equal(0.95, row.比例);
|
|
}
|
|
}
|
|
}
|
|
|
|
public class Issue137ExcelRow
|
|
{
|
|
public double? 比例 { get; set; }
|
|
public string 商品 { get; set; }
|
|
public int? 滿倉口數 { get; set; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// https://github.com/shps951023/MiniExcel/issues/138
|
|
/// </summary>
|
|
[Fact]
|
|
public void Issue138()
|
|
{
|
|
var path = @"../../../../../samples/xlsx/TestIssue138.xlsx";
|
|
{
|
|
var rows = MiniExcel.Query(path, true).ToList();
|
|
Assert.Equal(6, rows.Count);
|
|
|
|
foreach (var index in new[] { 0, 2, 5 })
|
|
{
|
|
Assert.Equal(1, rows[index].實單每日損益);
|
|
Assert.Equal(2, rows[index].程式每日損益);
|
|
Assert.Equal("測試商品1", rows[index].商品);
|
|
Assert.Equal(111.11, rows[index].滿倉口數);
|
|
Assert.Equal(111.11, rows[index].波段);
|
|
Assert.Equal(111.11, rows[index].當沖);
|
|
}
|
|
|
|
foreach (var index in new[] { 1, 3, 4 })
|
|
{
|
|
Assert.Null(rows[index].實單每日損益);
|
|
Assert.Null(rows[index].程式每日損益);
|
|
Assert.Null(rows[index].商品);
|
|
Assert.Null(rows[index].滿倉口數);
|
|
Assert.Null(rows[index].波段);
|
|
Assert.Null(rows[index].當沖);
|
|
}
|
|
}
|
|
{
|
|
|
|
var rows = MiniExcel.Query<Issue138ExcelRow>(path).ToList();
|
|
Assert.Equal(6, rows.Count);
|
|
Assert.Equal(new DateTime(2021, 3, 1), rows[0].date);
|
|
|
|
foreach (var index in new[] { 0, 2, 5 })
|
|
{
|
|
Assert.Equal(1, rows[index].實單每日損益);
|
|
Assert.Equal(2, rows[index].程式每日損益);
|
|
Assert.Equal("測試商品1", rows[index].商品);
|
|
Assert.Equal(111.11, rows[index].滿倉口數);
|
|
Assert.Equal(111.11, rows[index].波段);
|
|
Assert.Equal(111.11, rows[index].當沖);
|
|
}
|
|
|
|
foreach (var index in new[] { 1, 3, 4 })
|
|
{
|
|
Assert.Null(rows[index].實單每日損益);
|
|
Assert.Null(rows[index].程式每日損益);
|
|
Assert.Null(rows[index].商品);
|
|
Assert.Null(rows[index].滿倉口數);
|
|
Assert.Null(rows[index].波段);
|
|
Assert.Null(rows[index].當沖);
|
|
}
|
|
}
|
|
}
|
|
|
|
public class Issue138ExcelRow
|
|
{
|
|
public DateTime? date { get; set; }
|
|
public int? 實單每日損益 { get; set; }
|
|
public int? 程式每日損益 { get; set; }
|
|
public string 商品 { get; set; }
|
|
public double? 滿倉口數 { get; set; }
|
|
public double? 波段 { get; set; }
|
|
public double? 當沖 { get; set; }
|
|
}
|
|
}
|
|
} |