forked from opensearch-project/opensearch-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for opensearch-project#375 - IEnumerable<int?> property serializa…
…tion. Signed-off-by: Kostas <ghost0002001@hotmail.com>
- Loading branch information
1 parent
139ec50
commit a8052d6
Showing
3 changed files
with
68 additions
and
1 deletion.
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 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,54 @@ | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using FluentAssertions; | ||
using OpenSearch.Client; | ||
using OpenSearch.OpenSearch.Xunit.XunitPlumbing; | ||
|
||
namespace Tests.Reproduce | ||
{ | ||
public class PropertyWalkerTests | ||
{ | ||
[U] | ||
public void IEnumerableOfNullablesGetsMappedCorrectly() | ||
{ | ||
var result = TestPropertyType<IEnumerable<int?>>(); | ||
result.Should().Be("integer"); | ||
} | ||
|
||
[U] | ||
public void IListOfNullablesGetsMappedCorrectly() | ||
{ | ||
var result = TestPropertyType<IList<int?>>(); | ||
result.Should().Be("integer"); | ||
} | ||
|
||
[U] | ||
public void IEnumerableOfValueTypesGetsMappedCorrectly() | ||
{ | ||
var result = TestPropertyType<IEnumerable<int>>(); | ||
result.Should().Be("integer"); | ||
} | ||
|
||
[U] | ||
public void IListOfValueTypesGetsMappedCorrectly() | ||
{ | ||
var result = TestPropertyType<IList<int>>(); | ||
result.Should().Be("integer"); | ||
} | ||
|
||
private static string TestPropertyType<T>() | ||
{ | ||
var walker = new PropertyWalker(typeof(Test<T>), null, 0); | ||
var properties = walker.GetProperties(); | ||
var result = properties.SingleOrDefault(); | ||
return result.Value?.Type; | ||
} | ||
|
||
|
||
private class Test<T> | ||
{ | ||
public T Values { get; set; } | ||
} | ||
|
||
} | ||
} |