FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-lambda/nodejs4.3/run/awslambda-mock.js at build-java8 · sdscgithub/docker-lambda · GitHub
sdscgithub
/
docker-lambda
Public
forked from
lambci/docker-lambda
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-lambda
/
nodejs4.3
/
run
/
awslambda-mock.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
157 lines (137 loc) · 4.96 KB
Breadcrumbs
docker-lambda
/
nodejs4.3
/
run
/
awslambda-mock.js
Copy path
File metadata and controls
157 lines (137 loc) · 4.96 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
var
fs
=
require
(
'fs'
)
var
crypto
=
require
(
'crypto'
)
var
HANDLER
=
process
.
argv
[
2
]
||
process
.
env
.
AWS_LAMBDA_FUNCTION_HANDLER
||
process
.
env
.
_HANDLER
||
'index.handler'
var
EVENT_BODY
=
process
.
argv
[
3
]
||
process
.
env
.
AWS_LAMBDA_EVENT_BODY
||
(
process
.
env
.
DOCKER_LAMBDA_USE_STDIN
&&
fs
.
readFileSync
(
'/dev/stdin'
,
'utf8'
)
)
||
'{}'
var
FN_NAME
=
process
.
env
.
AWS_LAMBDA_FUNCTION_NAME
||
'test'
var
VERSION
=
process
.
env
.
AWS_LAMBDA_FUNCTION_VERSION
||
'$LATEST'
var
MEM_SIZE
=
process
.
env
.
AWS_LAMBDA_FUNCTION_MEMORY_SIZE
||
'1536'
var
TIMEOUT
=
process
.
env
.
AWS_LAMBDA_FUNCTION_TIMEOUT
||
'300'
var
REGION
=
process
.
env
.
AWS_REGION
||
process
.
env
.
AWS_DEFAULT_REGION
||
'us-east-1'
var
ACCOUNT_ID
=
process
.
env
.
AWS_ACCOUNT_ID
||
randomAccountId
(
)
var
ACCESS_KEY_ID
=
process
.
env
.
AWS_ACCESS_KEY_ID
||
'SOME_ACCESS_KEY_ID'
var
SECRET_ACCESS_KEY
=
process
.
env
.
AWS_SECRET_ACCESS_KEY
||
'SOME_SECRET_ACCESS_KEY'
var
SESSION_TOKEN
=
process
.
env
.
AWS_SESSION_TOKEN
var
INVOKED_ARN
=
process
.
env
.
AWS_LAMBDA_FUNCTION_INVOKED_ARN
||
arn
(
REGION
,
ACCOUNT_ID
,
FN_NAME
)
function
consoleLog
(
str
)
{
process
.
stderr
.
write
(
formatConsole
(
str
)
)
}
function
systemLog
(
str
)
{
process
.
stderr
.
write
(
formatSystem
(
str
)
+
'\n'
)
}
function
systemErr
(
str
)
{
process
.
stderr
.
write
(
formatErr
(
str
)
+
'\n'
)
}
function
handleResult
(
resultStr
,
cb
)
{
if
(
!
process
.
stdout
.
write
(
'\n'
+
resultStr
+
'\n'
)
)
{
process
.
stdout
.
once
(
'drain'
,
cb
)
}
else
{
process
.
nextTick
(
cb
)
}
}
// Don't think this can be done in the Docker image
process
.
umask
(
2
)
process
.
env
.
AWS_LAMBDA_FUNCTION_NAME
=
FN_NAME
process
.
env
.
AWS_LAMBDA_FUNCTION_VERSION
=
VERSION
process
.
env
.
AWS_LAMBDA_FUNCTION_MEMORY_SIZE
=
MEM_SIZE
process
.
env
.
AWS_LAMBDA_LOG_GROUP_NAME
=
'/aws/lambda/'
+
FN_NAME
process
.
env
.
AWS_LAMBDA_LOG_STREAM_NAME
=
new
Date
(
)
.
toISOString
(
)
.
slice
(
0
,
10
)
.
replace
(
/
-
/
g
,
'/'
)
+
'/['
+
VERSION
+
']'
+
crypto
.
randomBytes
(
16
)
.
toString
(
'hex'
)
process
.
env
.
AWS_REGION
=
REGION
process
.
env
.
AWS_DEFAULT_REGION
=
REGION
process
.
env
.
_HANDLER
=
HANDLER
var
OPTIONS
=
{
initInvokeId
:
uuid
(
)
,
invokeId
:
uuid
(
)
,
handler
:
HANDLER
,
suppressInit
:
true
,
credentials
:
{
key
:
ACCESS_KEY_ID
,
secret
:
SECRET_ACCESS_KEY
,
session
:
SESSION_TOKEN
,
}
,
eventBody
:
EVENT_BODY
,
contextObjects
:
{
// clientContext: '{}',
// cognitoIdentityId: undefined,
// cognitoPoolId: undefined,
}
,
invokedFunctionArn
:
INVOKED_ARN
,
}
// Some weird spelling error in the source?
OPTIONS
.
invokeid
=
OPTIONS
.
invokeId
var
invoked
=
false
var
errored
=
false
var
start
=
null
module
.
exports
=
{
initRuntime
:
function
(
)
{
return
OPTIONS
}
,
waitForInvoke
:
function
(
fn
)
{
if
(
invoked
)
return
systemLog
(
'START RequestId: '
+
OPTIONS
.
invokeId
+
' Version: '
+
VERSION
)
start
=
process
.
hrtime
(
)
invoked
=
true
fn
(
OPTIONS
)
}
,
reportRunning
:
function
(
invokeId
)
{
}
,
// eslint-disable-line no-unused-vars
reportDone
:
function
(
invokeId
,
errType
,
resultStr
)
{
if
(
!
invoked
)
return
var
diffMs
=
hrTimeMs
(
process
.
hrtime
(
start
)
)
var
billedMs
=
Math
.
min
(
100
*
(
Math
.
floor
(
diffMs
/
100
)
+
1
)
,
TIMEOUT
*
1000
)
systemLog
(
'END RequestId: '
+
invokeId
)
systemLog
(
[
'REPORT RequestId: '
+
invokeId
,
'Duration: '
+
diffMs
.
toFixed
(
2
)
+
' ms'
,
'Billed Duration: '
+
billedMs
+
' ms'
,
'Memory Size: '
+
MEM_SIZE
+
' MB'
,
'Max Memory Used: '
+
Math
.
round
(
process
.
memoryUsage
(
)
.
rss
/
(
1024
*
1024
)
)
+
' MB'
,
''
,
]
.
join
(
'\t'
)
)
var
exitCode
=
errored
||
errType
?
1
:
0
if
(
typeof
resultStr
===
'string'
)
{
handleResult
(
resultStr
,
function
(
)
{
process
.
exit
(
exitCode
)
}
)
}
else
{
process
.
exit
(
exitCode
)
}
}
,
reportFault
:
function
(
invokeId
,
msg
,
errName
,
errStack
)
{
errored
=
true
systemErr
(
msg
+
(
errName
?
': '
+
errName
:
''
)
)
if
(
errStack
)
systemErr
(
errStack
)
}
,
reportUserInitStart
:
function
(
)
{
}
,
reportUserInitEnd
:
function
(
)
{
}
,
reportUserInvokeStart
:
function
(
)
{
}
,
reportUserInvokeEnd
:
function
(
)
{
}
,
reportException
:
function
(
)
{
}
,
getRemainingTime
:
function
(
)
{
return
(
TIMEOUT
*
1000
)
-
Math
.
floor
(
hrTimeMs
(
process
.
hrtime
(
start
)
)
)
}
,
sendConsoleLogs
:
consoleLog
,
maxLoggerErrorSize
:
256
*
1024
,
}
function
formatConsole
(
str
)
{
return
str
.
replace
(
/
^
[
0
-
9
T
Z
:
.
-
]
+
\t
[
0
-
9
a
-
f
-
]
+
\t
/
,
'\u001b[34m$&\u001b[0m'
)
}
function
formatSystem
(
str
)
{
return
'\u001b[32m'
+
str
+
'\u001b[0m'
}
function
formatErr
(
str
)
{
return
'\u001b[31m'
+
str
+
'\u001b[0m'
}
function
hrTimeMs
(
hrtime
)
{
return
(
hrtime
[
0
]
*
1e9
+
hrtime
[
1
]
)
/
1e6
}
// Approximates the look of a v1 UUID
function
uuid
(
)
{
return
crypto
.
randomBytes
(
4
)
.
toString
(
'hex'
)
+
'-'
+
crypto
.
randomBytes
(
2
)
.
toString
(
'hex'
)
+
'-'
+
crypto
.
randomBytes
(
2
)
.
toString
(
'hex'
)
.
replace
(
/
^
.
/
,
'1'
)
+
'-'
+
crypto
.
randomBytes
(
2
)
.
toString
(
'hex'
)
+
'-'
+
crypto
.
randomBytes
(
6
)
.
toString
(
'hex'
)
}
function
randomAccountId
(
)
{
return
String
(
0x100000000
*
Math
.
random
(
)
)
}
function
arn
(
region
,
accountId
,
fnName
)
{
return
'arn:aws:lambda:'
+
region
+
':'
+
accountId
.
replace
(
/
[
^
\d
]
/
g
,
''
)
+
':function:'
+
fnName
}
Back
|
FazBrowse Home
|
New Git URL