forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValueProviderResultTest.cs
More file actions
103 lines (83 loc) · 3.53 KB
/
Copy pathValueProviderResultTest.cs
File metadata and controls
103 lines (83 loc) · 3.53 KB
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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using Microsoft.TestCommon;
namespace System.Web.Http.ValueProviders
{
public class ValueProviderResultTest
{
[Fact]
public void ConvertTo_ReturnsNullForReferenceTypes_WhenValueIsNull()
{
var valueProviderResult = new ValueProviderResult(null, null, CultureInfo.InvariantCulture);
var convertedValue = valueProviderResult.ConvertTo(typeof(string));
Assert.Null(convertedValue);
}
[Fact]
public void ConvertTo_ReturnsDefaultForValueTypes_WhenValueIsNull()
{
var valueProviderResult = new ValueProviderResult(null, null, CultureInfo.InvariantCulture);
var convertedValue = valueProviderResult.ConvertTo(typeof(int));
Assert.Equal(0, convertedValue);
}
[Fact]
public void ConvertTo_PopulatesArray_WhenSingleNeedsToBeConvertedToArray()
{
// Arrange
var valueProviderResult = new ValueProviderResult(DayOfWeek.Friday, "It's Friday!", CultureInfo.InvariantCulture);
// Act
var convertedValue = (DayOfWeek[])valueProviderResult.ConvertTo(typeof(DayOfWeek[]));
// Assert
Assert.Single(convertedValue, DayOfWeek.Friday);
}
[Fact]
public void ConvertTo_PopulatesArray_WhenSourceArrayNeedsToBeConvertedToArray()
{
// Arrange
string[] values = new[] { "3", "2", "1" };
var valueProviderResult = new ValueProviderResult(values, values.ToString(), CultureInfo.InvariantCulture);
// Act
var convertedValue = valueProviderResult.ConvertTo(typeof(int[]));
// Assert
Assert.Equal(new[] { 3, 2, 1 }, convertedValue);
}
[Fact]
public void ConvertTo_PopulatesArray_WhenListNeedsToBeConvertedToArray()
{
// Arrange
List<string> values = new List<string> { "-1", "0", "1" };
var valueProviderResult = new ValueProviderResult(values, values.ToString(), CultureInfo.InvariantCulture);
// Act
var convertedValue = valueProviderResult.ConvertTo(typeof(int[]));
// Assert
Assert.IsType<int[]>(convertedValue);
Assert.Equal(new[] { -1, 0, 1 }, convertedValue);
}
public static TheoryDataSet<IList, object> SingleValueBoundToArrayData
{
get
{
return new TheoryDataSet<IList, object>
{
{ new List<string> { "Foo", "Bar" }, "Foo" },
{ new string[] { "baz", "qux" }, "baz" },
{ new List<int> { -17, 34 }, -17 },
{ new string[] { "30", "15" }, 30 }
};
}
}
[Theory]
[PropertyData("SingleValueBoundToArrayData")]
public void ConvertTo_ReturnsFirstValue_WhenSequenceNeedsToConvertedToSingleValue(IList value, object expected)
{
// Arrange
var valueProviderResult = new ValueProviderResult(value, value.ToString(), CultureInfo.InvariantCulture);
// Act
var convertedValue = valueProviderResult.ConvertTo(expected.GetType());
// Assert
Assert.Equal(expected, convertedValue);
}
}
}