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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
// Copyright 2009-2022 Josh Close
// This file is a part of CsvHelper and is dual licensed under MS-PL and Apache 2.0.
// See LICENSE.txt for details or visit http://www.opensource.org/licenses/ms-pl.html for MS-PL and http://opensource.org/licenses/Apache-2.0 for Apache 2.0.
// https://github.com/JoshClose/CsvHelper
using CsvHelper.Configuration;
using Xunit;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
namespace CsvHelper.Tests
{
public class HeaderValidationTests
{
[Fact]
public void ValidateHeader_ValidHeaders_NoException()
{
using (var csv = new CsvReader(new StringReader("Id,Name"), CultureInfo.InvariantCulture))
{
csv.Read();
csv.ReadHeader();
csv.ValidateHeader<Test>();
}
}
[Fact]
public void ValidateHeader_PropertiesDontMatch_ThrowsHeaderValidationException()
{
using (var csv = new CsvReader(new StringReader("bad data"), CultureInfo.InvariantCulture))
{
csv.Read();
csv.ReadHeader();
try
{
csv.ValidateHeader<Test>();
throw new XUnitException();
}
catch (HeaderValidationException ex)
{
Assert.Equal(2, ex.InvalidHeaders.Length);
}
}
}
[Fact]
public void ValidateHeader_ReferencePropertiesDontMatch_ThrowsHeaderValidationException()
{
using (var csv = new CsvReader(new StringReader("bad data"), CultureInfo.InvariantCulture))
{
csv.Read();
csv.ReadHeader();
try
{
csv.ValidateHeader<HasReference>();
throw new XUnitException();
}
catch (HeaderValidationException ex)
{
Assert.Equal(2, ex.InvalidHeaders.Length);
}
}
}
[Fact]
public void ValidateHeader_ConstructorParametersDontMatch_ThrowsHeaderValidationException()
{
using (var csv = new CsvReader(new StringReader("bad data"), CultureInfo.InvariantCulture))
{
csv.Read();
csv.ReadHeader();
try
{
csv.ValidateHeader<HasConstructor>();
throw new XUnitException();
}
catch (HeaderValidationException ex)
{
Assert.Equal(2, ex.InvalidHeaders.Length);
}
}
}
[Fact]
public void GetRecord_PropertiesDontMatch_ThrowsHeaderValidationException()
{
using (var csv = new CsvReader(new StringReader("bad data"), CultureInfo.InvariantCulture))
{
csv.Read();
try
{
csv.GetRecord(typeof(Test));
throw new XUnitException();
}
catch (HeaderValidationException ex)
{
Assert.Equal(2, ex.InvalidHeaders.Length);
}
}
}
[Fact]
public void GetRecordGeneric_PropertiesDontMatch_ThrowsHeaderValidationException()
{
using (var csv = new CsvReader(new StringReader("bad data"), CultureInfo.InvariantCulture))
{
csv.Read();
try
{
csv.GetRecord<Test>();
throw new XUnitException();
}
catch (HeaderValidationException ex)
{
Assert.Equal(2, ex.InvalidHeaders.Length);
}
}
}
[Fact]
public void GetRecords_PropertiesDontMatch_ThrowsHeaderValidationException()
{
using (var csv = new CsvReader(new StringReader("bad data"), CultureInfo.InvariantCulture))
{
try
{
csv.GetRecords(typeof(Test)).ToList();
throw new XUnitException();
}
catch (HeaderValidationException ex)
{
Assert.Equal(2, ex.InvalidHeaders.Length);
}
}
}
[Fact]
public void GetRecordsGeneric_PropertiesDontMatch_ThrowsHeaderValidationException()
{
using (var csv = new CsvReader(new StringReader("bad data"), CultureInfo.InvariantCulture))
{
try
{
csv.GetRecords<Test>().ToList();
throw new XUnitException();
}
catch (HeaderValidationException ex)
{
Assert.Equal(2, ex.InvalidHeaders.Length);
}
}
}
[Fact]
public void GetRecordsGeneric_PrivateSetter_NoException()
{
var data = new StringBuilder();
data.AppendLine("Number");
data.AppendLine("1");
using (var csv = new CsvReader(new StringReader(data.ToString()), CultureInfo.InvariantCulture))
{
var records = csv.GetRecords<HasPrivateSetter>().ToList();
var record = records[0];
Assert.Equal(1, record.Number);
Assert.Equal(2, record.Double);
}
}
[Fact]
public void GetRecordsGeneric_IgnoreProperty_NoException()
{
var data = new StringBuilder();
data.AppendLine("Id");
data.AppendLine("1");
using (var csv = new CsvReader(new StringReader(data.ToString()), CultureInfo.InvariantCulture))
{
csv.Context.RegisterClassMap<HasIgnoredPropertyMap>();
var records = csv.GetRecords<Test>().ToList();
var record = records[0];
Assert.Equal(1, record.Id);
Assert.Null(record.Name);
}
}
[Fact]
public void ValidateHeader_NoNamesMapped_NoException()
{
using (var csv = new CsvReader(new StringReader("Id"), CultureInfo.InvariantCulture))
{
csv.Context.RegisterClassMap<HasIndexNoNameMap>();
csv.Read();
csv.ReadHeader();
csv.ValidateHeader<Test>();
}
}
[Fact]
public void ValidateHeader_HasIndexAndName_ThrowsHeaderValidationException()
{
using (var csv = new CsvReader(new StringReader("Id"), CultureInfo.InvariantCulture))
{
csv.Context.RegisterClassMap<HasIndexAndNameMap>();
csv.Read();
csv.ReadHeader();
try
{
csv.ValidateHeader<Test>();
throw new XUnitException();
}
catch (HeaderValidationException ex)
{
Assert.Single(ex.InvalidHeaders);
Assert.Equal("Name", ex.InvalidHeaders[0].Names[0]);
}
}
}
private class Test
{
public int Id { get; set; }
public string Name { get; set; }
}
private class HasReference
{
public Test Reference { get; set; }
}
private class HasConstructor
{
public int Id { get; private set; }
public string Name { get; private set; }
public HasConstructor(int Id, string Name)
{
this.Id = Id;
this.Name = Name;
}
}
private class HasPrivateSetter
{
public int Number { get; set; }
public int Double => Number * 2;
}
private sealed class HasIgnoredPropertyMap : ClassMap<Test>
{
public HasIgnoredPropertyMap()
{
AutoMap(CultureInfo.InvariantCulture);
Map(m => m.Name).Ignore();
}
}
private sealed class HasIndexNoNameMap : ClassMap<Test>
{
public HasIndexNoNameMap()
{
Map(m => m.Id).Index(0);
Map(m => m.Name).Index(1);
}
}
private sealed class HasIndexAndNameMap : ClassMap<Test>
{
public HasIndexAndNameMap()
{
Map(m => m.Id).Index(0).Name("Id");
Map(m => m.Name).Index(1).Name("Name");
}
}
}
}
|