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
|
using FluentAssertions;
using Microsoft.Extensions.Logging.Abstractions;
using System.Threading.Tasks;
using Timeline.Services;
using Timeline.Tests.Helpers;
using Xunit;
namespace Timeline.Tests.Services
{
public class BookmarkTimelineServiceTest : DatabaseBasedTest
{
private BookmarkTimelineService _service = default!;
private UserService _userService = default!;
private TimelineService _timelineService = default!;
protected override void OnDatabaseCreated()
{
var clock = new TestClock();
_userService = new UserService(NullLogger<UserService>.Instance, Database, new PasswordService(), new UserPermissionService(Database), clock);
_timelineService = new TimelineService(Database, _userService, clock);
_service = new BookmarkTimelineService(Database, _userService, _timelineService);
}
[Fact]
public async Task Should_Work()
{
var userId = await _userService.GetUserIdByUsername("user");
{
var b = await _service.GetBookmarks(userId);
b.Should().BeEmpty();
}
await _timelineService.CreateTimeline("tl", userId);
await _service.AddBookmark(userId, "tl");
{
var b = await _service.GetBookmarks(userId);
b.Should().HaveCount(1).And.BeEquivalentTo(await _timelineService.GetTimeline("tl"));
}
}
[Fact]
public async Task NewOne_Should_BeAtLast()
{
var userId = await _userService.GetUserIdByUsername("user");
await _timelineService.CreateTimeline("t1", userId);
await _service.AddBookmark(userId, "t1");
await _timelineService.CreateTimeline("t2", userId);
await _service.AddBookmark(userId, "t2");
var b = await _service.GetBookmarks(userId);
b.Should().HaveCount(2);
b[0].Name.Should().Be("t1");
b[1].Name.Should().Be("t2");
}
[Fact]
public async Task Multiple_Should_Work()
{
var userId = await _userService.GetUserIdByUsername("user");
// make timeline id not same as entity id.
await _timelineService.CreateTimeline("t0", userId);
await _timelineService.CreateTimeline("t1", userId);
await _service.AddBookmark(userId, "t1");
await _timelineService.CreateTimeline("t2", userId);
await _service.AddBookmark(userId, "t2");
await _timelineService.CreateTimeline("t3", userId);
await _service.AddBookmark(userId, "t3");
await _service.MoveBookmark(userId, "t3", 2);
(await _service.GetBookmarks(userId))[1].Name.Should().Be("t3");
await _service.MoveBookmark(userId, "t1", 3);
(await _service.GetBookmarks(userId))[2].Name.Should().Be("t1");
await _service.RemoveBookmark(userId, "t2");
await _service.RemoveBookmark(userId, "t1");
await _service.RemoveBookmark(userId, "t3");
(await _service.GetBookmarks(userId)).Should().BeEmpty();
}
[Fact]
public async Task AddExist_Should_DoNothing()
{
var userId = await _userService.GetUserIdByUsername("user");
await _timelineService.CreateTimeline("t", userId);
await _service.AddBookmark(userId, "t");
await _service.AddBookmark(userId, "t");
(await _service.GetBookmarks(userId)).Should().HaveCount(1);
}
}
}
|