-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtestDatabaseClient.test.ts
More file actions
261 lines (217 loc) · 7.55 KB
/
testDatabaseClient.test.ts
File metadata and controls
261 lines (217 loc) · 7.55 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
import {
expect,
describe,
it,
vi,
beforeEach
} from "vitest"
import {Logger} from "@aws-lambda-powertools/logger"
import {createMockPostModifiedDataItem} from "./testUtils"
const {mockSend} = vi.hoisted(() => ({
mockSend: vi.fn()
}))
vi.mock("@aws-sdk/client-dynamodb", async () => {
const dynamo = await vi.importActual<typeof import("@aws-sdk/client-dynamodb")>("@aws-sdk/client-dynamodb")
return {
...dynamo,
DynamoDBClient: vi.fn(class {
send = mockSend
})
}
})
const {
getRecentDataItemByPrescriptionID,
enrichMessagesWithMostRecentDataItem
} = await import("../src/databaseClient")
const logger = new Logger({serviceName: "postDatedLambdaTEST"})
describe("databaseClient", () => {
beforeEach(() => {
mockSend.mockReset()
})
describe("getRecentDataItemByPrescriptionID", () => {
it("should return existing records from DynamoDB", async () => {
const prescriptionID = "testPrescID"
// Mock DynamoDB response
const mockItems = [
{
PrescriptionID: {S: prescriptionID},
Status: {S: "With pharmacy"},
LastModified: {S: "2024-01-01T12:00:00Z"}
},
{
PrescriptionID: {S: prescriptionID},
Status: {S: "Ready to collect"},
LastModified: {S: "2023-12-31T12:00:00Z"}
}
]
mockSend.mockReturnValueOnce({
Items: mockItems,
LastEvaluatedKey: undefined
})
const records = await getRecentDataItemByPrescriptionID(
prescriptionID,
logger
)
expect(records).toHaveLength(2)
expect(records[0].Status).toBe("With pharmacy")
expect(records[1].Status).toBe("Ready to collect")
})
it("should return an empty array when DynamoDB returns no items", async () => {
const prescriptionID = "noRecordsPrescID"
mockSend.mockReturnValueOnce({
Items: [],
LastEvaluatedKey: undefined
})
const records = await getRecentDataItemByPrescriptionID(prescriptionID, logger)
expect(records).toEqual([])
})
it("Should log and throw an error if the DynamoDB query fails", async () => {
const prescriptionID = "errorPrescID"
// Mock DynamoDB to throw an error
const mockError = new Error("DynamoDB query failed")
mockSend.mockReturnValueOnce(Promise.reject(mockError))
await expect(
getRecentDataItemByPrescriptionID(
prescriptionID,
logger
)
).rejects.toThrow("DynamoDB query failed")
})
it("should paginate through multiple DynamoDB result pages", async () => {
const prescriptionID = "pagedPrescID"
const firstPageItems = [
{
PrescriptionID: {S: prescriptionID},
Status: {S: "Ready to collect"},
LastModified: {S: "2024-01-01T12:00:00Z"}
}
]
const secondPageItems = [
{
PrescriptionID: {S: prescriptionID},
Status: {S: "With pharmacy"},
LastModified: {S: "2024-01-02T12:00:00Z"}
}
]
mockSend
.mockReturnValueOnce({
Items: firstPageItems,
LastEvaluatedKey: {
PrescriptionID: {S: prescriptionID}
}
})
.mockReturnValueOnce({
Items: secondPageItems,
LastEvaluatedKey: undefined
})
const records = await getRecentDataItemByPrescriptionID(prescriptionID, logger)
expect(mockSend).toHaveBeenCalledTimes(2)
expect(records).toHaveLength(2)
expect(records[0].Status).toBe("Ready to collect")
expect(records[1].Status).toBe("With pharmacy")
})
})
describe("enrichMessagesWithMostRecentDataItem", () => {
it("should enrich messages with the most recent record", async () => {
const prescriptions = [
createMockPostModifiedDataItem({PrescriptionID: "presc1", PharmacyODSCode: "pharmA"}),
createMockPostModifiedDataItem({PrescriptionID: "presc2", PharmacyODSCode: "pharmB"})
]
// Mock DynamoDB responses
const mockItemsPresc1 = [
{
PrescriptionID: {S: "presc1"},
PharmacyODSCode: {S: "pharmA"},
Status: {S: "With pharmacy"},
LastModified: {S: "2024-01-01T12:00:00Z"}
},
{
PrescriptionID: {S: "presc1"},
PharmacyODSCode: {S: "pharmA"},
Status: {S: "Ready to collect"},
LastModified: {S: "2024-01-03T12:00:00Z"}
}
]
const mockItemsPresc2 = [
{
PrescriptionID: {S: "presc2"},
PharmacyODSCode: {S: "pharmB"},
Status: {S: "Ready to collect"},
LastModified: {S: "2024-01-02T12:00:00Z"}
}
]
mockSend
.mockReturnValueOnce({
Items: mockItemsPresc1,
LastEvaluatedKey: undefined
})
.mockReturnValueOnce({
Items: mockItemsPresc2,
LastEvaluatedKey: undefined
})
const messages = prescriptions.map((presc) => ({
prescriptionData: presc
}))
const enrichedMessages = await enrichMessagesWithMostRecentDataItem(
messages,
logger
)
expect(enrichedMessages.length).toBe(2)
expect(enrichedMessages[0].mostRecentRecord?.Status).toBe("Ready to collect")
expect(enrichedMessages[1].mostRecentRecord?.Status).toBe("Ready to collect")
})
it("should return an empty array when no messages are provided", async () => {
const enrichedMessages = await enrichMessagesWithMostRecentDataItem([], logger)
expect(enrichedMessages).toEqual([])
})
it("should set mostRecentRecord to undefined when DynamoDB has no matches", async () => {
const prescriptions = [
createMockPostModifiedDataItem({PrescriptionID: "noPresc1", PharmacyODSCode: "pharmA"}),
createMockPostModifiedDataItem({PrescriptionID: "noPresc2", PharmacyODSCode: "pharmB"})
]
mockSend
.mockReturnValueOnce({
Items: [],
LastEvaluatedKey: undefined
})
.mockReturnValueOnce({
Items: [],
LastEvaluatedKey: undefined
})
const messages = prescriptions.map((presc) => ({
prescriptionData: presc
}))
const enrichedMessages = await enrichMessagesWithMostRecentDataItem(messages, logger)
expect(enrichedMessages).toHaveLength(2)
expect(enrichedMessages[0].mostRecentRecord).toBeUndefined()
expect(enrichedMessages[1].mostRecentRecord).toBeUndefined()
})
it("should keep processing when one prescription lookup fails", async () => {
const prescriptions = [
createMockPostModifiedDataItem({PrescriptionID: "presc1", PharmacyODSCode: "pharmA"}),
createMockPostModifiedDataItem({PrescriptionID: "errorPresc", PharmacyODSCode: "errorPharm"})
]
const mockItemsPresc1 = [
{
PrescriptionID: {S: "presc1"},
PharmacyODSCode: {S: "pharmA"},
Status: {S: "With pharmacy"},
LastModified: {S: "2024-01-01T12:00:00Z"}
}
]
mockSend
.mockReturnValueOnce({
Items: mockItemsPresc1,
LastEvaluatedKey: undefined
})
.mockReturnValueOnce(Promise.reject(new Error("DynamoDB query failed")))
const messages = prescriptions.map((presc) => ({
prescriptionData: presc
}))
const enrichedMessages = await enrichMessagesWithMostRecentDataItem(messages, logger)
expect(enrichedMessages).toHaveLength(2)
expect(enrichedMessages[0].mostRecentRecord?.Status).toBe("With pharmacy")
expect(enrichedMessages[1].mostRecentRecord).toBeUndefined()
})
})
})