-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSubmodelRepositoryControllerTests.cs
More file actions
416 lines (323 loc) · 17.5 KB
/
Copy pathSubmodelRepositoryControllerTests.cs
File metadata and controls
416 lines (323 loc) · 17.5 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
using System.Net;
using System.Net.Http.Headers;
using System.Net.Http.Json;
using System.Text;
using System.Text.Json.Nodes;
using AAS.TwinEngine.DataEngine.ApplicationLogic.Exceptions.Infrastructure;
using AAS.TwinEngine.DataEngine.ApplicationLogic.Services.AasEnvironment.Providers;
using AAS.TwinEngine.DataEngine.ApplicationLogic.Services.Plugin;
using AAS.TwinEngine.DataEngine.ApplicationLogic.Services.Plugin.Providers;
using AAS.TwinEngine.DataEngine.ApplicationLogic.Services.SubmodelRepository.Providers;
using AAS.TwinEngine.DataEngine.Infrastructure.Http.Clients;
using AAS.TwinEngine.DataEngine.ModuleTests.Common;
using Microsoft.AspNetCore.WebUtilities;
using Microsoft.Extensions.DependencyInjection;
using NSubstitute;
using NSubstitute.ExceptionExtensions;
using AAS.TwinEngine.DataEngine.ServiceConfiguration.Config;
using AAS.TwinEngine.DataEngine.DomainModel.SubmodelRepository;
namespace AAS.TwinEngine.DataEngine.ModuleTests.Api.Services.SubmodelRepository;
public abstract class SubmodelRepositoryControllerTests : IDisposable
{
private readonly ConfigTestFactory _factory;
private readonly ITemplateProvider _mockTemplateProvider;
private readonly HttpClient _client;
private readonly ICreateClient _httpClientFactory;
private readonly IFileAttachmentStreamProvider _fileAttachmentStreamProvider;
protected SubmodelRepositoryControllerTests(string configDir)
{
_mockTemplateProvider = Substitute.For<ITemplateProvider>();
var mockPluginManifestProvider = Substitute.For<IPluginManifestProvider>();
var mockPluginManifestConflictHandler = Substitute.For<IPluginManifestConflictHandler>();
_httpClientFactory = Substitute.For<ICreateClient>();
_fileAttachmentStreamProvider = Substitute.For<IFileAttachmentStreamProvider>();
_factory = new ConfigTestFactory(configDir, services =>
{
_ = services.AddSingleton(_httpClientFactory);
_ = services.AddSingleton(_mockTemplateProvider);
_ = services.AddSingleton(mockPluginManifestProvider);
_ = services.AddSingleton(mockPluginManifestConflictHandler);
_ = services.AddSingleton(_fileAttachmentStreamProvider);
});
_client = _factory.CreateClient();
_ = mockPluginManifestConflictHandler.Manifests.Returns(TestData.CreatePluginManifests());
}
public void Dispose()
{
_client.Dispose();
_factory.Dispose();
GC.SuppressFinalize(this);
}
[Fact]
public async Task GetSubmodelAsync_WithValidIdentifier_ReturnsOkAsync()
{
// Arrange
using var messageHandlerPlugin1 = new FakeHttpMessageHandler((_, _) => Task.FromResult(new HttpResponseMessage
{
StatusCode = HttpStatusCode.OK,
Content = new StringContent(TestData.CreatePlugin1ResponseForSubmodel())
}));
using var messageHandlerPlugin2 = new FakeHttpMessageHandler((_, _) => Task.FromResult(new HttpResponseMessage
{
StatusCode = HttpStatusCode.OK,
Content = new StringContent(TestData.CreatePlugin2ResponseForSubmodel())
}));
using var httpClientPlugin1 = new HttpClient(messageHandlerPlugin1);
httpClientPlugin1.BaseAddress = new Uri("https://testendpoint1.com");
using var httpClientPlugin2 = new HttpClient(messageHandlerPlugin2);
httpClientPlugin2.BaseAddress = new Uri("https://testendpoint2.com");
const string HttpClientNamePlugin1 = $"{HttpClientNames.PluginDataProviderPrefix}TestPlugin1";
_ = _httpClientFactory.CreateClient(HttpClientNamePlugin1).Returns(httpClientPlugin1);
const string HttpClientNamePlugin2 = $"{HttpClientNames.PluginDataProviderPrefix}TestPlugin2";
_ = _httpClientFactory.CreateClient(HttpClientNamePlugin2).Returns(httpClientPlugin2);
const string SubmodelId = "Q29udGFjdEluZm9ybWF0aW9u";
var mockSubmodel = TestData.CreateSubmodel();
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), null, Arg.Any<CancellationToken>()).Returns(mockSubmodel);
// Act
var response = await _client.GetAsync($"/submodels/{SubmodelId}");
// Assert
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
var json = await response.Content.ReadFromJsonAsync<JsonObject>();
Assert.NotNull(json);
var expectedSubmodel = JsonNode.Parse(TestData.CreateSubmodelWithValues());
Assert.NotNull(expectedSubmodel);
Assert.True(JsonNode.DeepEquals(json, expectedSubmodel));
}
[Fact]
public async Task GetSubmodelAsync_WithNotFound_Returns404Async()
{
const string SubmodelId = "Q29udGFjdEluZm9ybWF0aW9u";
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), null, Arg.Any<CancellationToken>()).Throws(new ResourceNotFoundException());
var response = await _client.GetAsync($"/submodels/{SubmodelId}");
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
}
[Fact]
public async Task GetSubmodelAsync_WithInternalServerError_Returns500Async()
{
const string SubmodelId = "Q29udGFjdEluZm9ybWF0aW9u";
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), null, Arg.Any<CancellationToken>()).Throws(new ResponseParsingException());
var response = await _client.GetAsync($"/submodels/{SubmodelId}");
Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode);
}
[Fact]
public async Task GetSubmodelAsync_WhenIdentifierIsInValid_Returns400Async()
{
const string SubmodelId = "in valid";
var response = await _client.GetAsync($"/submodels/{SubmodelId}");
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Fact]
public async Task GetSubmodelElementAsync_ReturnsOkAsync()
{
// Arrange
const string SubmodelId = "Q29udGFjdEluZm9ybWF0aW9u";
const string IdShortPath = "ContactName";
var mockSubmodel = TestData.CreateSubmodel();
_ = TestData.CreatePluginResponseForSubmodelElement();
using var messageHandler = new FakeHttpMessageHandler((_, _) => Task.FromResult(new HttpResponseMessage
{
StatusCode = HttpStatusCode.OK,
Content = new StringContent(TestData.CreatePluginResponseForSubmodelElement())
}));
using var httpClient = new HttpClient(messageHandler);
httpClient.BaseAddress = new Uri("https://testendpoint.com");
const string HttpClientName = $"{HttpClientNames.PluginDataProviderPrefix}TestPlugin1";
_ = _httpClientFactory.CreateClient(HttpClientName).Returns(httpClient);
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), Arg.Any<SubmodelQueryOptions?>(), Arg.Any<CancellationToken>()).Returns(mockSubmodel);
// Act
var response = await _client.GetAsync(CreateSubmodelElementPath(SubmodelId, IdShortPath));
// Assert
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
var json = await response.Content.ReadFromJsonAsync<JsonObject>();
Assert.NotNull(json);
var submodelElementResponse = json.ToString();
var expectedSubmodelElement = TestData.CreateSubmodelElementWithValues();
Assert.Equal(submodelElementResponse, expectedSubmodelElement);
}
[Fact]
public async Task GetSubmodelElementAsync_WithNotFound_Returns404Async()
{
const string SubmodelId = "Q29udGFjdEluZm9ybWF0aW9u";
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), null, Arg.Any<CancellationToken>()).Throws(new ResourceNotFoundException());
var response = await _client.GetAsync(CreateSubmodelElementPath(SubmodelId, "Test"));
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
}
[Fact]
public async Task GetFileAttachmentAsync_WhenElementIsFileWithHttpUrl_StreamsContentAsync()
{
// Arrange
const string SubmodelId = "Q29udGFjdEluZm9ybWF0aW9u";
const string IdShortPath = "Thumbnail";
const string FileUrl = "https://example.com/logo.png";
var fileBytes = Encoding.UTF8.GetBytes("fake-image-bytes");
using var messageHandler = new FakeHttpMessageHandler((_, _) => Task.FromResult(new HttpResponseMessage
{
StatusCode = HttpStatusCode.OK,
Content = new StringContent(TestData.CreatePluginResponseForFileAttachment())
}));
using var httpClient = new HttpClient(messageHandler);
httpClient.BaseAddress = new Uri("https://testendpoint.com");
const string HttpClientName = $"{HttpClientNames.PluginDataProviderPrefix}TestPlugin1";
_ = _httpClientFactory.CreateClient(HttpClientName).Returns(httpClient);
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), Arg.Any<SubmodelQueryOptions?>(), Arg.Any<CancellationToken>()).Returns(TestData.CreateSubmodel());
using var upstreamResponse = new HttpResponseMessage(HttpStatusCode.OK)
{
Content = new StreamContent(new MemoryStream(fileBytes))
};
upstreamResponse.Content.Headers.ContentType = new MediaTypeHeaderValue("image/png");
_ = _fileAttachmentStreamProvider.GetResponseHeadersAsync(FileUrl, Arg.Any<CancellationToken>()).Returns(upstreamResponse);
_ = _fileAttachmentStreamProvider.ReadStreamAsync(upstreamResponse, Arg.Any<CancellationToken>()).Returns(new MemoryStream(fileBytes));
// Act
var response = await _client.GetAsync($"/submodels/{SubmodelId}/submodel-elements/{IdShortPath}/attachment");
// Assert
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
Assert.Equal("image/png", response.Content.Headers.ContentType?.MediaType);
var body = await response.Content.ReadAsByteArrayAsync();
Assert.Equal(fileBytes, body);
Assert.Contains("logo.png", response.Content.Headers.ContentDisposition?.ToString(), StringComparison.Ordinal);
await _fileAttachmentStreamProvider.Received(1).GetResponseHeadersAsync(FileUrl, Arg.Any<CancellationToken>());
}
[Fact]
public async Task GetFileAttachmentAsync_WhenElementIsNotFile_Returns400Async()
{
// Arrange
const string SubmodelId = "Q29udGFjdEluZm9ybWF0aW9u";
const string IdShortPath = "ContactName";
using var messageHandler = new FakeHttpMessageHandler((_, _) => Task.FromResult(new HttpResponseMessage
{
StatusCode = HttpStatusCode.OK,
Content = new StringContent(TestData.CreatePluginResponseForSubmodelElement())
}));
using var httpClient = new HttpClient(messageHandler);
httpClient.BaseAddress = new Uri("https://testendpoint.com");
const string HttpClientName = $"{HttpClientNames.PluginDataProviderPrefix}TestPlugin1";
_ = _httpClientFactory.CreateClient(HttpClientName).Returns(httpClient);
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), Arg.Any<SubmodelQueryOptions?>(), Arg.Any<CancellationToken>()).Returns(TestData.CreateSubmodel());
// Act
var response = await _client.GetAsync($"/submodels/{SubmodelId}/submodel-elements/{IdShortPath}/attachment");
// Assert
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Fact]
public async Task GetSubmodelElementAsync_WhenIdentifierIsInValid_Returns400Async()
{
const string SubmodelId = "in valid";
var response = await _client.GetAsync(CreateSubmodelElementPath(SubmodelId, "Test"));
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Fact]
public async Task GetSubmodelElementAsync__WithInternalServerError_Returns500Async()
{
const string SubmodelId = "Q29udGFjdEluZm9ybWF0aW9u";
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), null, Arg.Any<CancellationToken>()).Throws(new ResponseParsingException());
var response = await _client.GetAsync(CreateSubmodelElementPath(SubmodelId, "Test"));
Assert.Equal(HttpStatusCode.InternalServerError, response.StatusCode);
}
[Theory]
[InlineData("../../../etc/passwd")]
[InlineData(@"..\..\windows\system32")]
[InlineData("element/../otherElement")]
[InlineData("%2e%2e/config")]
public async Task GetSubmodelElement_PathTraversalInIdShortPath_Returns400BadRequestAsync(string maliciousIdShortPath)
{
var validSubmodelId = EncodeBase64Url("https://example.com/submodels/test");
var response = await _client.GetAsync(CreateSubmodelElementPath(validSubmodelId, maliciousIdShortPath));
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Theory]
[InlineData("<script>alert('xss')</script>")]
[InlineData("<img onerror=alert('xss')>")]
[InlineData("element<script>alert(1)</script>")]
[InlineData("<svg/onload=alert('xss')>")]
public async Task GetSubmodelElement_XssInIdShortPath_Returns400BadRequestAsync(string maliciousIdShortPath)
{
var validSubmodelId = EncodeBase64Url("https://example.com/submodels/test");
var response = await _client.GetAsync(CreateSubmodelElementPath(validSubmodelId, maliciousIdShortPath));
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Theory]
[InlineData("' OR '1'='1")]
[InlineData("element'; DROP TABLE--")]
[InlineData("1 UNION SELECT *")]
[InlineData("admin'--")]
public async Task GetSubmodelElement_SqlInjectionInIdShortPath_Returns400BadRequestAsync(string maliciousIdShortPath)
{
var validSubmodelId = EncodeBase64Url("https://example.com/submodels/test");
var response = await _client.GetAsync(CreateSubmodelElementPath(validSubmodelId, maliciousIdShortPath));
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Theory]
[InlineData("javascript:alert('xss')")]
[InlineData("data:text/html,<script>")]
[InlineData("file:///etc/passwd")]
[InlineData("vbscript:msgbox('xss')")]
public async Task GetSubmodelElement_DangerousProtocolInIdShortPath_Returns400BadRequestAsync(string maliciousIdShortPath)
{
var validSubmodelId = EncodeBase64Url("https://example.com/submodels/test");
var response = await _client.GetAsync(CreateSubmodelElementPath(validSubmodelId, maliciousIdShortPath));
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Theory]
[InlineData("element with spaces")]
[InlineData("element/slash")]
[InlineData("element\\backslash")]
[InlineData("element|pipe")]
[InlineData("element;semicolon")]
public async Task GetSubmodelElement_InvalidCharactersInIdShortPath_Returns400BadRequestAsync(string invalidIdShortPath)
{
var validSubmodelId = EncodeBase64Url("https://example.com/submodels/test");
var response = await _client.GetAsync(CreateSubmodelElementPath(validSubmodelId, invalidIdShortPath));
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Theory]
[InlineData("ContactInformation1")]
[InlineData("ManufacturerName")]
[InlineData("element.subelement.property")]
[InlineData("list[0]")]
[InlineData("element[3].property")]
[InlineData("collection_item-name")]
public async Task GetSubmodelElement_ValidIdShortPath_DoesNotReturn400Async(string validIdShortPath)
{
var validSubmodelId = EncodeBase64Url("https://example.com/submodels/test");
_ = _mockTemplateProvider.GetFilteredSubmodelTemplateAsync(Arg.Any<string>(), null, Arg.Any<CancellationToken>())
.Throws(new ResourceNotFoundException());
var response = await _client.GetAsync(CreateSubmodelElementPath(validSubmodelId, validIdShortPath));
Assert.NotEqual(HttpStatusCode.BadRequest, response.StatusCode);
}
[Theory]
[InlineData("not!!valid")]
[InlineData("invalid base64")]
public async Task GetSubmodel_InvalidBase64_Returns400BadRequestAsync(string invalidBase64)
{
var response = await _client.GetAsync($"/submodels/{invalidBase64}");
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
[Theory]
[InlineData("<svg/onload=alert('xss')>")]
[InlineData("1 UNION SELECT * FROM submodels")]
[InlineData("javascript:alert(1)")]
public async Task GetSubmodel_MaliciousPattern_Returns400BadRequestAsync(string maliciousContent)
{
var encoded = EncodeBase64Url(maliciousContent);
var response = await _client.GetAsync($"/submodels/{encoded}");
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
}
private static string EncodeBase64Url(string plainText)
{
if (string.IsNullOrWhiteSpace(plainText))
{
return string.Empty;
}
var bytes = Encoding.UTF8.GetBytes(plainText);
return WebEncoders.Base64UrlEncode(bytes);
}
private static string CreateSubmodelElementPath(string submodelIdentifier, string idShortPath)
=> $"/submodels/{submodelIdentifier}/submodel-elements/{Uri.EscapeDataString(idShortPath)}";
}
public class SubmodelRepositoryControllerTestsV1Config() : SubmodelRepositoryControllerTests("v1-config");
public class SubmodelRepositoryControllerTestsV2Config() : SubmodelRepositoryControllerTests("v2-config");
public class FakeHttpMessageHandler(Func<HttpRequestMessage, CancellationToken, Task<HttpResponseMessage>> send) : HttpMessageHandler
{
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
=> send(request, cancellationToken);
}