-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultipleHandlersSupport.test.scala
218 lines (176 loc) · 5.78 KB
/
MultipleHandlersSupport.test.scala
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
package org.encalmo.lambda
import org.encalmo.utils.JsonUtils.*
import ujson.Value
import upickle.default.*
import java.time.Instant
class Foo
class MultipleHandlersSupportSpec extends munit.FunSuite {
override def munitFixtures = List(lambdaService)
val lambdaService = new LambdaServiceFixture()
test("Execute generic event handler") {
assertEquals(
lambdaRuntime.test("""{"functionName":"TestMe","foo":"bar"}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"function":"TestMe","foo":"bar"}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"handler":"TestMe","foo":"bar"}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"handlerName":"TestMe","foo":"bar"}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"foo":"bar"}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"bar":"foo"}"""),
"""{"success":false,"timestamp":"""
+ Instant.now().getEpochSecond()
+ ""","error":"UnsupportedEventError","errorMessage":"{\"bar\":\"foo\"}"}""".stripMargin
)
}
test("Execute generic event handler using function name") {
assertEquals(
lambdaRuntime.test("""{"function":"TestMe", "foo":"bar"}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"functionName":"TestMe", "functionInput": {"foo":"bar"}}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"handler":"TestMe", "functionInputParts": {"foo":"bar"}}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"handlerName":"TestMe", "handlerInputParts": [{"foo":"bar"}]}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"function":"TestMe", "functionInputParts": [{"foo":"bar"},{"bar":"foo"}]}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"function":"TestMe", "functionInputParts": [{"bar":"foo"},{"foo":"bar"}]}"""),
"bar"
)
assertEquals(
lambdaRuntime.test("""{"function":"TestMe","bar":"foo"}"""),
"""{"success":false,"timestamp":"""
+ Instant.now().getEpochSecond()
+ ""","error":"UnsupportedEventError","errorMessage":"{\"function\":\"TestMe\",\"bar\":\"foo\"}"}""".stripMargin
)
assertEquals(
lambdaRuntime.test("""{"function":"TestMe","functionInput":{"bar":"foo"}}"""),
"""{"success":false,"timestamp":"""
+ Instant.now().getEpochSecond()
+ ""","error":"UnsupportedEventError","errorMessage":"{\"function\":\"TestMe\",\"functionInput\":{\"bar\":\"foo\"}}"}""".stripMargin
)
}
test("Execute sqs event handler") {
val event = SqsEvent(
Seq(
SqsEvent.Record(
messageId = "foo",
body = """{"foo":"bar"}""",
attributes = Map.empty,
eventSource = "bar",
eventSourceARN = "zoo"
)
)
).writeAsString
assertEquals(
lambdaRuntime.test(event),
""
)
}
test("Execute sqs event handler using function name") {
val event = SqsEvent(
Seq(
SqsEvent.Record(
messageId = "foo",
body = """{"function":"TestMe","foo":"bar"}""",
attributes = Map.empty,
eventSource = "bar",
eventSourceARN = "zoo"
)
)
).writeAsString
assertEquals(
lambdaRuntime.test(event),
""
)
}
test("Execute sqs event handler using functionName and functionInput") {
val event = SqsEvent(
Seq(
SqsEvent.Record(
messageId = "foo",
body = """{"functionName":"TestMe", "functionInput":{"foo":"bar"}}""",
attributes = Map.empty,
eventSource = "bar",
eventSourceARN = "zoo"
)
)
).writeAsString
assertEquals(
lambdaRuntime.test(event),
""
)
}
test("getEventHandlerTag") {
assertEquals(lambdaRuntime.getEventHandlerTag("""{"function":"TestMe","foo":"bar"}"""), Some("TestMe"))
assertEquals(lambdaRuntime.getEventHandlerTag("""{"functionName":"TestMe","foo":"bar"}"""), Some("TestMe"))
assertEquals(lambdaRuntime.getEventHandlerTag("""{"handler":"TestMe","foo":"bar"}"""), Some("TestMe"))
assertEquals(lambdaRuntime.getEventHandlerTag("""{"handlerName":"TestMe","foo":"bar"}"""), None)
}
override def afterAll(): Unit =
lambdaService.close()
def lambdaRuntime =
new LambdaRuntime with MultipleHandlersSupport {
override type ApplicationContext = Foo
override def initialize(using environment: LambdaEnvironment) = {
environment.info(
s"Initializing lambda ${environment.getFunctionName()} ..."
)
new Foo
}
override def apiGatewayRequestHandlers = Seq(new TestApiGatewayRequestHandler)
override def sqsEventHandlers = Seq(new TestSqsEventHandler)
override def genericEventHandlers = Seq(new TestGenericEventHandler)
}
}
class TestGenericEventHandler extends GenericEventHandler[Foo] {
override def functionName: Option[String] = Some("TestMe")
override def handleEvent(event: Value)(using
LambdaContext,
Foo
): Option[String] = event.maybeString("foo")
}
class TestSqsEventHandler extends SqsEventHandler[Foo] {
override def functionName: Option[String] = Some("TestMe")
override def handleRecord(record: SqsEvent.Record)(using
LambdaContext,
Foo
): Option[String] =
record.maybeParseBodyAsJson.flatMap(_.maybeString("foo"))
}
class TestApiGatewayRequestHandler extends ApiGatewayRequestHandler[Foo] {
override def handleRequest(request: ApiGatewayRequest)(using LambdaContext, Foo): Option[ApiGatewayResponse] =
request.body.maybeReadAsJson
.flatMap(_.maybeString("foo"))
.map(foo =>
ApiGatewayResponse(
body = foo,
statusCode = 200,
headers = Map.empty,
isBase64Encoded = false
)
)
}