This repository was archived by the owner on Jul 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFileRetryFunctionTests.cs
More file actions
217 lines (184 loc) · 7.65 KB
/
FileRetryFunctionTests.cs
File metadata and controls
217 lines (184 loc) · 7.65 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
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Moq;
using ServiceLayer.Data;
using ServiceLayer.Data.Models;
using ServiceLayer.Mesh.Functions;
using ServiceLayer.Mesh.Messaging;
using ServiceLayer.Mesh.Configuration;
namespace ServiceLayer.Mesh.Tests.Functions;
public class FileRetryFunctionTests
{
private readonly Mock<ILogger<FileRetryFunction>> _loggerMock;
private readonly Mock<IFileExtractQueueClient> _fileExtractQueueClientMock;
private readonly Mock<IFileTransformQueueClient> _fileTransformQueueClientMock;
private readonly Mock<IFileRetryFunctionConfiguration> _configuration;
private readonly ServiceLayerDbContext _dbContext;
private readonly FileRetryFunction _function;
public FileRetryFunctionTests()
{
_loggerMock = new Mock<ILogger<FileRetryFunction>>();
_fileExtractQueueClientMock = new Mock<IFileExtractQueueClient>();
_fileTransformQueueClientMock = new Mock<IFileTransformQueueClient>();
_configuration = new Mock<IFileRetryFunctionConfiguration>();
var options = new DbContextOptionsBuilder<ServiceLayerDbContext>()
.UseInMemoryDatabase(databaseName: Guid.NewGuid().ToString())
.ConfigureWarnings(warnings =>
warnings.Ignore(Microsoft.EntityFrameworkCore.Diagnostics.InMemoryEventId.TransactionIgnoredWarning))
.Options;
_dbContext = new ServiceLayerDbContext(options);
_configuration.Setup(c => c.StaleHours).Returns(12);
_function = new FileRetryFunction(
_loggerMock.Object,
_dbContext,
_fileExtractQueueClientMock.Object,
_fileTransformQueueClientMock.Object,
_configuration.Object
);
}
[Theory]
[InlineData(MeshFileStatus.Discovered)]
[InlineData(MeshFileStatus.Extracting)]
public async Task Run_EnqueuesDiscoveredOrExtractingFilesOlderThan12Hours(MeshFileStatus testStatus)
{
var file = new MeshFile
{
FileType = MeshFileType.NbssAppointmentEvents,
MailboxId = "test-mailbox",
FileId = "file-1",
Status = testStatus,
LastUpdatedUtc = DateTime.UtcNow.AddHours(-13)
};
_dbContext.MeshFiles.Add(file);
await _dbContext.SaveChangesAsync();
// Act
await _function.Run(null);
// Assert
_fileExtractQueueClientMock.Verify(q => q.EnqueueFileExtractAsync(It.Is<MeshFile>(f => f.FileId == "file-1")), Times.Once);
_fileTransformQueueClientMock.Verify(q => q.EnqueueFileTransformAsync(It.Is<MeshFile>(f => f.FileId == "file-1")), Times.Never);
var updatedFile = await _dbContext.MeshFiles.FindAsync("file-1");
Assert.True(updatedFile!.LastUpdatedUtc > DateTime.UtcNow.AddMinutes(-1));
}
[Theory]
[InlineData(MeshFileStatus.Extracted)]
[InlineData(MeshFileStatus.Transforming)]
public async Task Run_EnqueuesExtractedOrTransformingFilesOlderThan12Hours(MeshFileStatus testStatus)
{
var file = new MeshFile
{
FileType = MeshFileType.NbssAppointmentEvents,
MailboxId = "test-mailbox",
FileId = "file-1",
Status = testStatus,
LastUpdatedUtc = DateTime.UtcNow.AddHours(-13)
};
_dbContext.MeshFiles.Add(file);
await _dbContext.SaveChangesAsync();
// Act
await _function.Run(null);
// Assert
_fileTransformQueueClientMock.Verify(q => q.EnqueueFileTransformAsync(It.Is<MeshFile>(f => f.FileId == "file-1")), Times.Once);
_fileExtractQueueClientMock.Verify(q => q.EnqueueFileExtractAsync(It.Is<MeshFile>(f => f.FileId == "file-1")), Times.Never);
var updatedFile = await _dbContext.MeshFiles.FindAsync("file-1");
Assert.True(updatedFile!.LastUpdatedUtc > DateTime.UtcNow.AddMinutes(-1));
}
[Theory]
[InlineData(MeshFileStatus.Discovered)]
[InlineData(MeshFileStatus.Extracting)]
[InlineData(MeshFileStatus.Extracted)]
[InlineData(MeshFileStatus.Transforming)]
public async Task Run_SkipsFreshFiles(MeshFileStatus testStatus)
{
// Arrange
var lastUpdatedUtc = DateTime.UtcNow.AddHours(-1);
var file = new MeshFile
{
FileType = MeshFileType.NbssAppointmentEvents,
MailboxId = "test-mailbox",
FileId = "file-2",
Status = testStatus,
LastUpdatedUtc = lastUpdatedUtc
};
_dbContext.MeshFiles.Add(file);
await _dbContext.SaveChangesAsync();
// Act
await _function.Run(null);
// Assert
_fileExtractQueueClientMock.Verify(q => q.EnqueueFileExtractAsync(It.IsAny<MeshFile>()), Times.Never);
_fileTransformQueueClientMock.Verify(q => q.EnqueueFileTransformAsync(It.IsAny<MeshFile>()), Times.Never);
var updatedFile = await _dbContext.MeshFiles.FindAsync("file-2");
Assert.True(updatedFile!.LastUpdatedUtc == lastUpdatedUtc);
}
[Fact]
public async Task Run_IgnoresFilesInOtherStatuses()
{
// Arrange
var file = new MeshFile
{
FileType = MeshFileType.NbssAppointmentEvents,
MailboxId = "test-mailbox",
FileId = "file-5",
Status = MeshFileStatus.Transformed,
LastUpdatedUtc = DateTime.UtcNow.AddHours(-20)
};
_dbContext.MeshFiles.Add(file);
await _dbContext.SaveChangesAsync();
// Act
await _function.Run(null);
// Assert
_fileExtractQueueClientMock.Verify(q => q.EnqueueFileExtractAsync(It.IsAny<MeshFile>()), Times.Never);
}
[Fact]
public async Task Run_IfNoFilesFoundDoNothing()
{
// Act
await _function.Run(null);
// Assert
_fileExtractQueueClientMock.Verify(q => q.EnqueueFileExtractAsync(It.IsAny<MeshFile>()), Times.Never);
_fileTransformQueueClientMock.Verify(q => q.EnqueueFileTransformAsync(It.IsAny<MeshFile>()), Times.Never);
}
[Fact]
public async Task Run_ProcessesMultipleEligibleFiles()
{
// Arrange
var files = new[]
{
new MeshFile
{
FileType = MeshFileType.NbssAppointmentEvents,
MailboxId = "test-mailbox",
FileId = "file-6",
Status = MeshFileStatus.Discovered,
LastUpdatedUtc = DateTime.UtcNow.AddHours(-13)
},
new MeshFile
{
FileType = MeshFileType.NbssAppointmentEvents,
MailboxId = "test-mailbox",
FileId = "file-7",
Status = MeshFileStatus.Extracted,
LastUpdatedUtc = DateTime.UtcNow.AddHours(-13)
},
new MeshFile
{
FileType = MeshFileType.NbssAppointmentEvents,
MailboxId = "test-mailbox",
FileId = "file-8",
Status = MeshFileStatus.Transforming,
LastUpdatedUtc = DateTime.UtcNow.AddHours(-13)
}
};
_dbContext.MeshFiles.AddRange(files);
await _dbContext.SaveChangesAsync();
// Act
await _function.Run(null);
// Assert
_fileExtractQueueClientMock.Verify(q => q.EnqueueFileExtractAsync(It.Is<MeshFile>(f => f.FileId == "file-6")), Times.Once);
_fileExtractQueueClientMock.Verify(q => q.EnqueueFileExtractAsync(It.IsAny<MeshFile>()), Times.Once);
foreach (var fileId in new[] { "file-6", "file-7", "file-8" })
{
var updated = await _dbContext.MeshFiles.FindAsync(fileId);
Assert.True(updated!.LastUpdatedUtc > DateTime.UtcNow.AddMinutes(-1));
}
}
}