forked from aws-samples/serverless-test-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMockPutProductFunctionTests.cs
190 lines (148 loc) · 6.2 KB
/
MockPutProductFunctionTests.cs
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
using Amazon.Lambda.TestUtilities;
using FakeItEasy;
using FluentAssertions;
using PutProduct;
using ServerlessTestApi.Core.DataAccess;
using ServerlessTestApi.Core.Models;
namespace ApiTests.UnitTest;
public class MockPutProductFunctionTests : FunctionTest<Function>
{
[Fact]
public async Task PutProduct_WithSuccsfulInsert_Should_Return201()
{
// arrange
var product = default(Product);
var dto = new ProductDTO("testid", "test product", 10);
var request = new ApiRequestBuilder()
.WithHttpMethod(HttpMethod.Put)
.WithBody(dto)
.WithPathParameter("id", dto.Id)
.Build();
var fakeProductDao = A.Fake<IProductsDAO>();
A.CallTo(() => fakeProductDao.PutProduct(A<Product>._, A<CancellationToken>._))
.Invokes(ctx => product = ctx.Arguments.Get<Product>(0))
.Returns(Task.FromResult(UpsertResult.Inserted));
var function = new Function(fakeProductDao, Logger, JsonOptions);
// act
var response = await function.FunctionHandler(request, new TestLambdaContext());
// assert
Assert.Multiple(
() => response.StatusCode.Should().Be(201),
() => response.Headers["Location"].Should().Be("https://localhost/dev/testid"),
() => product.Should().BeEquivalentTo(dto)
);
}
[Fact]
public async Task PutProduct_WithSuccsfulUpdate_Should_Return200()
{
// arrange
var product = default(Product);
var dto = new ProductDTO("testid", "test product", 10);
var request = new ApiRequestBuilder()
.WithHttpMethod(HttpMethod.Put)
.WithBody(dto)
.WithPathParameter("id", dto.Id)
.Build();
var fakeProductDao = A.Fake<IProductsDAO>();
A.CallTo(() => fakeProductDao.PutProduct(A<Product>._, A<CancellationToken>._))
.Invokes(ctx => product = ctx.Arguments.Get<Product>(0))
.Returns(Task.FromResult(UpsertResult.Updated));
var function = new Function(fakeProductDao, Logger, JsonOptions);
// act
var response = await function.FunctionHandler(request, new TestLambdaContext());
// assert
response.StatusCode.Should().Be(200);
product.Should().BeEquivalentTo(dto);
}
[Fact]
public async Task PutProduct_With_EmptyBody_Should_ReturnBadRequest()
{
// arrange
var product = new ProductDTO("testid", "test product", 10);
var request = new ApiRequestBuilder()
.WithHttpMethod(HttpMethod.Put)
.WithPathParameter("id", product.Id)
.Build();
var fakeProductDao = A.Fake<IProductsDAO>();
var function = new Function(fakeProductDao, Logger, JsonOptions);
// act
var response = await function.FunctionHandler(request, new TestLambdaContext());
// assert
response.StatusCode.Should().Be(400);
A.CallTo(() => fakeProductDao.PutProduct(A<Product>._, A<CancellationToken>._)).MustNotHaveHappened();
}
[Fact]
public async Task PutProduct_With_MismatchingIds_Should_ReturnBadRequest()
{
// arrange
var product = new ProductDTO("testid", "test product", 10);
var request = new ApiRequestBuilder()
.WithHttpMethod(HttpMethod.Put)
.WithPathParameter("id", "adifferentid")
.WithBody(product)
.Build();
var fakeProductDao = A.Fake<IProductsDAO>();
var function = new Function(fakeProductDao, Logger, JsonOptions);
// act
var response = await function.FunctionHandler(request, new TestLambdaContext());
// assert
response.StatusCode.Should().Be(400);
response.Body.Should().Be("Product ID in the body does not match path parameter");
A.CallTo(() => fakeProductDao.PutProduct(A<Product>._, A<CancellationToken>._)).MustNotHaveHappened();
}
[Theory]
[InlineData("POST")]
[InlineData("GET")]
[InlineData("DELETE")]
public async Task TestLambdaHandler_With_NonPutRequests_Should_Return405(string httpMethod)
{
// arrange
var request = new ApiRequestBuilder()
.WithHttpMethod(httpMethod)
.Build();
var fakeProductDao = A.Fake<IProductsDAO>();
var function = new Function(fakeProductDao, Logger, JsonOptions);
// act
var response = await function.FunctionHandler(request, new TestLambdaContext());
// assert
response.StatusCode.Should().Be(405);
}
[Fact]
public async Task PutProduct_With_ErrorInDataAccess_Should_Return500()
{
// arrange
var product = new ProductDTO("testid", "test product", 10);
var request = new ApiRequestBuilder()
.WithHttpMethod(HttpMethod.Put)
.WithPathParameter("id", product.Id)
.WithBody(product)
.Build();
var fakeProductDao = A.Fake<IProductsDAO>();
A.CallTo(() => fakeProductDao.PutProduct(A<Product>._, A<CancellationToken>._))
.ThrowsAsync(new NullReferenceException());
var function = new Function(fakeProductDao, Logger, JsonOptions);
// act
var response = await function.FunctionHandler(request, new TestLambdaContext());
// assert
response.StatusCode.Should().Be(500);
}
[Fact]
public async Task PutProduct_With_TimeOut_Should_Return503()
{
// arrange
var product = new ProductDTO("testid", "test product", 10);
var request = new ApiRequestBuilder()
.WithHttpMethod(HttpMethod.Put)
.WithPathParameter("id", product.Id)
.WithBody(product)
.Build();
var fakeProductDao = A.Fake<IProductsDAO>();
A.CallTo(() => fakeProductDao.PutProduct(A<Product>._, A<CancellationToken>._))
.ThrowsAsync(new TaskCanceledException());
var function = new Function(fakeProductDao, Logger, JsonOptions);
// act
var response = await function.FunctionHandler(request, new TestLambdaContext());
// assert
response.StatusCode.Should().Be(503);
}
}