|
@@ -2,6 +2,8 @@
|
|
|
using System.Net.Http;
|
|
|
using System.Threading.Tasks;
|
|
|
using FluentAssertions;
|
|
|
+using Microsoft.Extensions.Caching.Memory;
|
|
|
+using NSubstitute;
|
|
|
using Website.Data;
|
|
|
using Website.Models.Blog;
|
|
|
using Xunit;
|
|
@@ -17,6 +19,8 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(json)
|
|
|
.Build();
|
|
|
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
var expectation = new BlogPost {
|
|
|
Id = 1,
|
|
|
Title = "title",
|
|
@@ -27,7 +31,7 @@ namespace Website.Tests.Data {
|
|
|
UserId = 0
|
|
|
};
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.GetPostByUrlAsync("test")).Should().BeEquivalentTo(expectation);
|
|
|
}
|
|
|
|
|
@@ -40,6 +44,8 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(json)
|
|
|
.Build();
|
|
|
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
var expectation = new[] {
|
|
|
new BlogPost {
|
|
|
Id = 1,
|
|
@@ -52,7 +58,7 @@ namespace Website.Tests.Data {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.GetLatestPostsAsync()).Should().BeEquivalentTo(expectation);
|
|
|
}
|
|
|
|
|
@@ -65,6 +71,8 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(json)
|
|
|
.Build();
|
|
|
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
var expectation = new[] {
|
|
|
new BlogPost {
|
|
|
Id = 1,
|
|
@@ -77,7 +85,7 @@ namespace Website.Tests.Data {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.GetLatestPostsAsync(1)).Should().BeEquivalentTo(expectation);
|
|
|
}
|
|
|
|
|
@@ -92,6 +100,8 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(json)
|
|
|
.Build();
|
|
|
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
var expectation = new[] {
|
|
|
new BlogPost {
|
|
|
Id = 1,
|
|
@@ -104,7 +114,7 @@ namespace Website.Tests.Data {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.GetLatestPostsAsync(1, 1)).Should().BeEquivalentTo(expectation);
|
|
|
}
|
|
|
|
|
@@ -117,6 +127,8 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(json)
|
|
|
.Build();
|
|
|
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
var expectation = new BlogPost {
|
|
|
Id = 1,
|
|
|
Title = "title",
|
|
@@ -127,7 +139,7 @@ namespace Website.Tests.Data {
|
|
|
UserId = 0
|
|
|
};
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.GetLatestPostAsync()).Should().BeEquivalentTo(expectation);
|
|
|
}
|
|
|
|
|
@@ -140,7 +152,9 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(json)
|
|
|
.Build();
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.GetCountAsync()).Should().Be(23);
|
|
|
}
|
|
|
|
|
@@ -153,6 +167,8 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(json)
|
|
|
.Build();
|
|
|
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
var expectation = new BlogPost {
|
|
|
Id = 1,
|
|
|
Title = "title",
|
|
@@ -163,7 +179,7 @@ namespace Website.Tests.Data {
|
|
|
UserId = 0
|
|
|
};
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.GetPostByIdAsync(1)).Should().BeEquivalentTo(expectation);
|
|
|
}
|
|
|
|
|
@@ -178,6 +194,8 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(responseJson)
|
|
|
.Build();
|
|
|
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
var post = new BlogPostSubmission {Id = 1, Title = "title", Content = "content"};
|
|
|
|
|
|
var expectation = new BlogPost {
|
|
@@ -190,7 +208,7 @@ namespace Website.Tests.Data {
|
|
|
UserId = 0
|
|
|
};
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.SavePost(post)).Should().BeEquivalentTo(expectation);
|
|
|
}
|
|
|
|
|
@@ -204,6 +222,8 @@ namespace Website.Tests.Data {
|
|
|
.WithResponse(json)
|
|
|
.Build();
|
|
|
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
var expectation = new[] {
|
|
|
new BlogPost {
|
|
|
Id = 1,
|
|
@@ -216,7 +236,7 @@ namespace Website.Tests.Data {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
(await api.GetAllPostsAsync()).Should().BeEquivalentTo(expectation);
|
|
|
}
|
|
|
|
|
@@ -228,7 +248,9 @@ namespace Website.Tests.Data {
|
|
|
.WithPostBody("1")
|
|
|
.Build(out var mockHttpMessageHandler);
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
await api.DeletePostAsync(1);
|
|
|
mockHttpMessageHandler.VerifyNoOutstandingExpectation();
|
|
|
}
|
|
@@ -241,7 +263,9 @@ namespace Website.Tests.Data {
|
|
|
.WithPostBody("1")
|
|
|
.Build(out var mockHttpMessageHandler);
|
|
|
|
|
|
- var api = new BlogApi(httpClient);
|
|
|
+ var cache = Substitute.For<IMemoryCache>();
|
|
|
+
|
|
|
+ var api = new BlogApi(httpClient, cache, new CacheDurations());
|
|
|
await api.PublishPostAsync(1);
|
|
|
mockHttpMessageHandler.VerifyNoOutstandingExpectation();
|
|
|
}
|