blob: fcf6936455cf77367da6f098b4ba859e6d3bee07 (
plain)
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
|
using System;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using FluentAssertions;
using Timeline.Models;
using Timeline.Models.Http;
using Xunit;
using Xunit.Abstractions;
namespace Timeline.Tests.IntegratedTests2
{
public class TimelineBookmarkTest : IntegratedTestBase
{
public TimelineBookmarkTest(ITestOutputHelper testOutput) : base(testOutput)
{
}
protected override async Task OnInitializeAsync()
{
using var client = CreateClientAsUser();
await client.TestJsonSendAsync(HttpMethod.Post, "v2/timelines", new HttpTimelineCreateRequest
{
Name = "hello"
}, expectedStatusCode: HttpStatusCode.Created);
}
[Fact]
public async Task CreateAndGet()
{
using var client = CreateClientAsUser();
var a = await client.TestJsonSendAsync<TimelineBookmark>(HttpMethod.Post, "users/user/bookmarks", new HttpTimelineBookmarkCreateRequest
{
TimelineOwner = "user",
TimelineName = "hello"
}, expectedStatusCode: HttpStatusCode.Created);
a.TimelineOwner.Should().Be("user");
a.TimelineName.Should().Be("hello");
a.Position.Should().Be(1);
var b = await client.TestJsonSendAsync<TimelineBookmark>(HttpMethod.Get, "users/user/bookmarks/1");
b.TimelineName.Should().Be("hello");
b.TimelineOwner.Should().Be("user");
b.Position.Should().Be(1);
}
}
}
|