-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathRequestApprovalFunctionTest.cs
More file actions
218 lines (186 loc) · 7.52 KB
/
RequestApprovalFunctionTest.cs
File metadata and controls
218 lines (186 loc) · 7.52 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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT-0
using System.Text.Json;
using Amazon.DynamoDBv2.DataModel;
using Amazon.EventBridge;
using Amazon.EventBridge.Model;
using Amazon.Lambda.SQSEvents;
using FizzWare.NBuilder;
using NSubstitute;
using Unicorn.Web.Common;
using Xunit;
namespace Unicorn.Web.PublicationManagerService.Tests;
public class RequestApprovalFunctionTest
{
public RequestApprovalFunctionTest()
{
TestHelpers.SetEnvironmentVariables();
// Set env variable for Powertools Metrics
Environment.SetEnvironmentVariable("POWERTOOLS_METRICS_NAMESPACE", "ContractService");
}
[Fact]
public async Task Publish_event_when_property_status_is_pending_or_declined()
{
// Arrange
var eventPayload = Builder<ApiGwSqsPayload>.CreateNew()
.With(x => x.PropertyId = "usa/anytown/main-street/777")
.Build();
var context = TestHelpers.NewLambdaContext();
var dynamoDbContext = Substitute.For<IDynamoDBContext>();
var eventBindingClient = Substitute.For<IAmazonEventBridge>();
var sqsEvent = new SQSEvent()
{
Records = new List<SQSEvent.SQSMessage>
{
new()
{
Body = JsonSerializer.Serialize(eventPayload)
}
}
};
var searchResult = new List<PropertyRecord>
{
new()
{
Country = "USA",
City = "Anytown",
Street = "Main Street",
PropertyNumber = "123",
ListPrice = 2000000.00M,
Images = new() { "image1.jpg", "image2.jpg", "image3.jpg" },
Status = PropertyStatus.Pending
},
new()
{
Country = "USA",
City = "Anytown",
Street = "Main Street",
PropertyNumber = "123",
ListPrice = 2000000.00M,
Images = new() { "image1.jpg", "image2.jpg", "image3.jpg" },
Status = PropertyStatus.Declined
}
};
dynamoDbContext
.FromQueryAsync<PropertyRecord>(Arg.Any<Amazon.DynamoDBv2.DocumentModel.QueryOperationConfig>())
.Returns(TestHelpers.NewDynamoDBSearchResult(searchResult));
eventBindingClient.PutEventsAsync(Arg.Any<PutEventsRequest>(), Arg.Any<CancellationToken>())
.Returns(new PutEventsResponse { FailedEntryCount = 0 });
// Act
var function = new RequestApprovalFunction(dynamoDbContext, eventBindingClient);
await function.FunctionHandler(sqsEvent, context);
// Assert
dynamoDbContext.Received(1)
.FromQueryAsync<PropertyRecord>(Arg.Any<Amazon.DynamoDBv2.DocumentModel.QueryOperationConfig>());
await eventBindingClient.Received(1)
.PutEventsAsync(
Arg.Is<PutEventsRequest>(r => r.Entries.First().DetailType == "PublicationApprovalRequested"),
Arg.Any<CancellationToken>());
}
[Fact]
public async Task Request_approval_with_snake_case_json_deserializes_property_id()
{
// Arrange - use snake_case JSON matching the actual API Gateway payload format
var snakeCaseJson = """
{
"property_id": "usa/anytown/main-street/777"
}
""";
var context = TestHelpers.NewLambdaContext();
var dynamoDbContext = Substitute.For<IDynamoDBContext>();
var eventBindingClient = Substitute.For<IAmazonEventBridge>();
var sqsEvent = new SQSEvent()
{
Records = new List<SQSEvent.SQSMessage>
{
new()
{
Body = snakeCaseJson
}
}
};
var searchResult = new List<PropertyRecord>
{
new()
{
Country = "USA",
City = "Anytown",
Street = "Main Street",
PropertyNumber = "777",
ListPrice = 2000000.00M,
Images = new() { "image1.jpg" },
Status = PropertyStatus.Pending
}
};
dynamoDbContext
.FromQueryAsync<PropertyRecord>(Arg.Any<Amazon.DynamoDBv2.DocumentModel.QueryOperationConfig>())
.Returns(TestHelpers.NewDynamoDBSearchResult(searchResult));
eventBindingClient.PutEventsAsync(Arg.Any<PutEventsRequest>(), Arg.Any<CancellationToken>())
.Returns(new PutEventsResponse { FailedEntryCount = 0 });
// Act
var function = new RequestApprovalFunction(dynamoDbContext, eventBindingClient);
await function.FunctionHandler(sqsEvent, context);
// Assert - verify the property_id was deserialized correctly and DynamoDB was queried
dynamoDbContext.Received(1)
.FromQueryAsync<PropertyRecord>(Arg.Any<Amazon.DynamoDBv2.DocumentModel.QueryOperationConfig>());
await eventBindingClient.Received(1)
.PutEventsAsync(
Arg.Is<PutEventsRequest>(r =>
r.Entries.First().Resources.Contains("usa/anytown/main-street/777")),
Arg.Any<CancellationToken>());
}
[Fact]
public async Task Do_not_publish_event_when_property_status_is_approved()
{
// Arrange
var eventPayload = Builder<ApiGwSqsPayload>.CreateNew()
.With(x => x.PropertyId = "usa/anytown/main-street/777")
.Build();
var context = TestHelpers.NewLambdaContext();
var dynamoDbContext = Substitute.For<IDynamoDBContext>();
var eventBindingClient = Substitute.For<IAmazonEventBridge>();
var sqsEvent = new SQSEvent()
{
Records = new List<SQSEvent.SQSMessage>
{
new()
{
Body = JsonSerializer.Serialize(eventPayload)
}
}
};
var searchResult = new List<PropertyRecord>
{
new()
{
Country = "USA",
City = "Anytown",
Street = "Main Street",
PropertyNumber = "123",
ListPrice = 2000000.00M,
Images = new() { "image1.jpg", "image2.jpg", "image3.jpg" },
Status = PropertyStatus.Approved
}
};
// Act
var function = new RequestApprovalFunction(dynamoDbContext, eventBindingClient);
await function.FunctionHandler(sqsEvent, context);
// Assert
dynamoDbContext
.FromQueryAsync<PropertyRecord>(Arg.Any<Amazon.DynamoDBv2.DocumentModel.QueryOperationConfig>())
.Returns(TestHelpers.NewDynamoDBSearchResult(searchResult));
dynamoDbContext.Received(1)
.FromQueryAsync<PropertyRecord>(Arg.Any<Amazon.DynamoDBv2.DocumentModel.QueryOperationConfig>());
eventBindingClient.PutEventsAsync(Arg.Any<PutEventsRequest>(), Arg.Any<CancellationToken>())
.Returns(new PutEventsResponse { FailedEntryCount = 0 });
await eventBindingClient.Received(0)
.PutEventsAsync(
Arg.Is<PutEventsRequest>(r => r.Entries.First().DetailType == "PublicationApprovalRequested"),
Arg.Any<CancellationToken>());
}
}
public class ApiGwSqsPayload
{
[System.Text.Json.Serialization.JsonPropertyName("property_id")]
public required string PropertyId { get; set; }
}