-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue with FastDynamicObject.CopyTo.
- Loading branch information
Showing
4 changed files
with
116 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using Xunit; | ||
|
||
namespace CsvHelper.Tests.Dynamic | ||
{ | ||
public class FastDynamicObjectTests | ||
{ | ||
[Fact] | ||
public void Dynamic_SetAndGet_Works() | ||
{ | ||
dynamic obj = new FastDynamicObject(); | ||
obj.Id = 1; | ||
obj.Name = "one"; | ||
|
||
var id = obj.Id; | ||
var name = obj.Name; | ||
|
||
Assert.Equal(1, id); | ||
Assert.Equal("one", name); | ||
} | ||
|
||
[Fact] | ||
public void CopyTo_NegativeIndex_Throws() | ||
{ | ||
IDictionary<string, object> d = new FastDynamicObject(); | ||
var a = new KeyValuePair<string, object>[1]; | ||
|
||
Assert.Throws<ArgumentOutOfRangeException>(() => d.CopyTo(a, -1)); | ||
} | ||
|
||
[Fact] | ||
public void CopyTo_IndexLargerThanArrayLength_Throws() | ||
{ | ||
IDictionary<string, object> d = new FastDynamicObject(); | ||
var a = new KeyValuePair<string, object>[1]; | ||
|
||
Assert.Throws<ArgumentOutOfRangeException>(() => d.CopyTo(a, a.Length)); | ||
} | ||
|
||
[Fact] | ||
public void CopyTo_SourceIsLargerThanDestination_Throws() | ||
{ | ||
IDictionary<string, object> d = new FastDynamicObject(); | ||
d["a"] = 1; | ||
d["b"] = 2; | ||
var a = new KeyValuePair<string, object>[1]; | ||
|
||
Assert.Throws<ArgumentException>(() => d.CopyTo(a, 0)); | ||
} | ||
|
||
[Fact] | ||
public void CopyTo_IndexGreaterThanZeroAndSourceIsLargerThanDestination_Throws() | ||
{ | ||
IDictionary<string, object> d = new FastDynamicObject(); | ||
d["a"] = 1; | ||
d["b"] = 2; | ||
var a = new KeyValuePair<string, object>[2]; | ||
|
||
Assert.Throws<ArgumentException>(() => d.CopyTo(a, 1)); | ||
} | ||
|
||
[Fact] | ||
public void CopyTo_StartAtZero_Copies() | ||
{ | ||
IDictionary<string, object> d = new FastDynamicObject(); | ||
d["a"] = 1; | ||
d["b"] = 2; | ||
var a = new KeyValuePair<string, object>[2]; | ||
|
||
d.CopyTo(a, 0); | ||
|
||
Assert.Equal("a", a[0].Key); | ||
Assert.Equal(1, a[0].Value); | ||
Assert.Equal("b", a[1].Key); | ||
Assert.Equal(2, a[1].Value); | ||
} | ||
|
||
[Fact] | ||
public void CopyTo_StartGreaterThanZero_Copies() | ||
{ | ||
IDictionary<string, object> d = new FastDynamicObject(); | ||
d["a"] = 1; | ||
d["b"] = 2; | ||
var a = new KeyValuePair<string, object>[4]; | ||
|
||
d.CopyTo(a, 1); | ||
|
||
Assert.Null(a[0].Key); | ||
Assert.Null(a[0].Value); | ||
Assert.Equal("a", a[1].Key); | ||
Assert.Equal(1, a[1].Value); | ||
Assert.Equal("b", a[2].Key); | ||
Assert.Equal(2, a[2].Value); | ||
Assert.Null(a[3].Key); | ||
Assert.Null(a[3].Value); | ||
} | ||
} | ||
} |