-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathHalResourceWithPeopleTest.cs
57 lines (47 loc) · 1.5 KB
/
HalResourceWithPeopleTest.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
47
48
49
50
51
52
53
54
55
56
57
using System.Buffers;
using System.IO;
using Assent;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using WebApi.Hal.Tests.Representations;
using Xunit;
namespace WebApi.Hal.Tests
{
public class HalResourceWithPeopleTest
{
readonly OrganisationWithPeopleRepresentation resource;
public HalResourceWithPeopleTest()
{
resource = new OrganisationWithPeopleRepresentation(1, "Org Name");
}
[Fact]
public void organisation_get_json_test()
{
// arrange
var mediaFormatter = new JsonHalMediaTypeOutputFormatter(
new JsonSerializerSettings { Formatting = Formatting.Indented }, ArrayPool<char>.Shared, new MvcOptions());
// act
using (var stream = new StringWriter())
{
mediaFormatter.WriteObject(stream, resource);
string serialisedResult = stream.ToString();
// assert
this.Assent(serialisedResult);
}
}
[Fact]
public void organisation_get_xml_test()
{
// arrange
var mediaFormatter = new XmlHalMediaTypeOutputFormatter();
// act
using (var stream = new Utf8StringWriter())
{
mediaFormatter.WriteObject(stream, resource);
string serialisedResult = stream.ToString();
// assert
this.Assent(serialisedResult);
}
}
}
}