forked from haoduotnt/aspnetwebstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObjectContentOfTTests.cs
46 lines (37 loc) · 1.85 KB
/
ObjectContentOfTTests.cs
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
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.Net.Http.Formatting;
using System.Net.Http.Headers;
using Microsoft.TestCommon;
using Moq;
namespace System.Net.Http
{
public class ObjectContentOfTTests
{
private MediaTypeHeaderValue _jsonHeaderValue = new MediaTypeHeaderValue("application/json");
[Fact]
public void Constructor_WhenFormatterParameterIsNull_Throws()
{
Assert.ThrowsArgumentNull(() => new ObjectContent<string>("", formatter: null), "formatter");
Assert.ThrowsArgumentNull(() => new ObjectContent<string>("", formatter: null, mediaType: "foo/bar"), "formatter");
Assert.ThrowsArgumentNull(() => new ObjectContent<string>("", formatter: null, mediaType: _jsonHeaderValue), "formatter");
}
[Fact]
public void Constructor_SetsFormatterProperty()
{
var formatterMock = new Mock<MediaTypeFormatter>();
formatterMock.Setup(f => f.CanWriteType(typeof(String))).Returns(true);
var formatter = formatterMock.Object;
var content = new ObjectContent<string>(null, formatter, mediaType: (MediaTypeHeaderValue)null);
Assert.Same(formatter, content.Formatter);
}
[Fact]
public void Constructor_CallsFormattersGetDefaultContentHeadersMethod()
{
var formatterMock = new Mock<MediaTypeFormatter>();
formatterMock.Setup(f => f.CanWriteType(typeof(String))).Returns(true);
var content = new ObjectContent(typeof(string), "", formatterMock.Object, _jsonHeaderValue);
formatterMock.Verify(f => f.SetDefaultContentHeaders(typeof(string), content.Headers, _jsonHeaderValue),
Times.Once());
}
}
}