-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalyticsServiceTests.cs
More file actions
157 lines (133 loc) · 5.71 KB
/
AnalyticsServiceTests.cs
File metadata and controls
157 lines (133 loc) · 5.71 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
using System.Net;
using System.Text;
using Couchbase.AnalyticsClient.Internal;
using Couchbase.AnalyticsClient.Internal.HTTP;
using Couchbase.AnalyticsClient.Internal.Results;
using Couchbase.AnalyticsClient.Json;
using Couchbase.AnalyticsClient.Options;
using Couchbase.Core.Json;
using Microsoft.Extensions.Logging;
using Moq;
using Moq.Protected;
using Xunit;
using Xunit.Abstractions;
namespace Couchbase.AnalyticsClient.UnitTests.Internal;
public class AnalyticsServiceTests
{
private readonly ITestOutputHelper _outputHelper;
private readonly Mock<ICouchbaseHttpClientFactory> _httpClientFactoryMock;
private readonly Mock<ILogger<AnalyticsService>> _loggerMock;
private readonly Mock<IDeserializer> _jsonSerializerMock;
private readonly Uri _endPoint;
private readonly ClusterOptions _clusterOptions;
public AnalyticsServiceTests(ITestOutputHelper outputHelper)
{
_outputHelper = outputHelper;
_httpClientFactoryMock = new Mock<ICouchbaseHttpClientFactory>();
_loggerMock = new Mock<ILogger<AnalyticsService>>();
_jsonSerializerMock = new Mock<IDeserializer>();
_jsonSerializerMock.Setup(x=>x.CreateJsonStreamReader(It.IsAny<Stream>(),
It.IsAny<CancellationToken>()))
.Returns(new Mock<IJsonStreamReader>().Object);
_endPoint = new Uri($"https://{IPAddress.Loopback}:8095");
_clusterOptions = new ClusterOptions { ConnectionString = _endPoint.OriginalString };
}
[Fact]
public void Constructor_InitializesCorrectly()
{
// Arrange & Act
var service = new AnalyticsService(
_clusterOptions,
_httpClientFactoryMock.Object,
_loggerMock.Object);
const string ExecuteQueryPath = "/api/v1/request";
var expected = new UriBuilder(_endPoint);
expected.Path = ExecuteQueryPath;
// Assert
Assert.NotNull(service);
Assert.Equal(expected.Uri, service.Uri);
}
[Fact]
public async Task SendAsync_ValidQuery_ReturnsBlockingAnalyticsResult()
{
// Arrange
var responseContent = new StringContent("{}", Encoding.UTF8, "application/json");
var responseMessage = new HttpResponseMessage(HttpStatusCode.OK) { Content = responseContent };
var httpClientMock = new Mock<HttpMessageHandler>();
httpClientMock
.Protected()
.Setup<Task<HttpResponseMessage>>(
"SendAsync",
ItExpr.IsAny<HttpRequestMessage>(),
ItExpr.IsAny<CancellationToken>())
.ReturnsAsync(responseMessage);
var httpClient = new HttpClient(httpClientMock.Object);
_httpClientFactoryMock.Setup(f => f.Create()).Returns(httpClient);
var service = new AnalyticsService(
_clusterOptions,
_httpClientFactoryMock.Object,
_loggerMock.Object);
var queryOptions = new QueryOptions { AsStreaming = false };
// Act
var result = await service.SendAsync("SELECT * FROM `bucket`", queryOptions);
// Assert
Assert.IsType<BlockingAnalyticsResult>(result);
_httpClientFactoryMock.Verify(f => f.Create(), Times.Once);
}
[Fact]
public async Task SendAsync_WithPriority_AddsPriorityHeader()
{
// Arrange
var responseContent = new StringContent("{}", Encoding.UTF8, "application/json");
var responseMessage = new HttpResponseMessage(HttpStatusCode.OK) { Content = responseContent };
var requestMessage = new HttpRequestMessage(HttpMethod.Post,
"http://localhost/api/v1/request");
requestMessage.Headers.Add("Analytics-Priority", "true");
var httpClientMock = new Mock<HttpMessageHandler>();
httpClientMock
.Protected()
.Setup<Task<HttpResponseMessage>>(
"SendAsync",
ItExpr.IsAny<HttpRequestMessage>(),
ItExpr.IsAny<CancellationToken>())
.ReturnsAsync(responseMessage);
var httpClient = new HttpClient(httpClientMock.Object);
_httpClientFactoryMock.Setup(f => f.Create()).Returns(httpClient);
var service = new AnalyticsService(
_clusterOptions,
_httpClientFactoryMock.Object,
_loggerMock.Object);
var queryOptions = new QueryOptions { AsStreaming = false };
// Act
var result = await service.SendAsync("SELECT * FROM `bucket`", queryOptions);
// Assert
Assert.IsType<BlockingAnalyticsResult>(result);
}
[Fact]
public async Task SendAsync_WithStreaming_ReturnsStreamingAnalyticsResult()
{
// Arrange
var httpClientMock = new Mock<HttpMessageHandler>();
var httpClient = new HttpClient(httpClientMock.Object);
_httpClientFactoryMock.Setup(f => f.Create()).Returns(httpClient);
var responseContent = new StringContent("{}", Encoding.UTF8, "application/json");
var responseMessage = new HttpResponseMessage(HttpStatusCode.OK) { Content = responseContent };
httpClientMock
.Protected()
.Setup<Task<HttpResponseMessage>>(
"SendAsync",
ItExpr.IsAny<HttpRequestMessage>(),
ItExpr.IsAny<CancellationToken>())
.ReturnsAsync(responseMessage);
var service = new AnalyticsService(
_clusterOptions,
_httpClientFactoryMock.Object,
_loggerMock.Object);
var queryOptions = new QueryOptions { AsStreaming = true };
// Act
var result = await service.SendAsync("SELECT * FROM `bucket`", queryOptions);
// Assert
Assert.IsType<StreamingAnalyticsResult>(result);
_httpClientFactoryMock.Verify(f => f.Create(), Times.Once);
}
}