-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: add a way of unit testing lambda quickly and fix the lowercase logical error #600
Merged
+3,995
−2
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
const lambdaLocal = require('lambda-local'); | ||
const zlib = require("zlib"); | ||
|
||
/* | ||
remove the skip to run the test | ||
*/ | ||
test.skip('Investigate OpsGenie send function for SNS SEV1', async () => { | ||
const result = await lambdaLocal.execute({ | ||
event: { | ||
Records: [ | ||
{ | ||
Sns: { | ||
Message: JSON.stringify({ | ||
AlarmName: 'test-alarm-SEV1', | ||
AlarmDescription: 'test-alarm-description', | ||
NewStateValue: 'ALARM', | ||
NewStateReason: 'test-alarm-reason', | ||
StateChangeTime: '2023-07-13T13:48:30.151Z', | ||
Region: 'us-west-2', | ||
}), | ||
}, | ||
}, | ||
], | ||
}, | ||
lambdaPath: 'notify_slack.js' | ||
}); | ||
}); | ||
|
||
|
||
/* | ||
remove the skip to run the test | ||
CloudWatch Logs are delivered to the subscribed Lambda function as a list that is gzip-compressed and base64-encoded. | ||
|
||
*/ | ||
test.skip('Investigate OpsGenie send function for Cloud Watch Log with severity=1', async () => { | ||
const logData = JSON.stringify({ | ||
"messageType": "DATA_MESSAGE", | ||
"owner": "123456789123", | ||
"logGroup": "testLogGroup", | ||
"logStream": "testLogStream", | ||
"subscriptionFilters": [ | ||
"testFilter" | ||
], | ||
"logEvents": [ | ||
{ | ||
"id": "eventId1", | ||
"timestamp": 1440442987000, | ||
"message": `{ | ||
"level": "error", | ||
"severity": 1, | ||
"msg": "User clcqov5tv000689x5aib9uelt performed GrantFormAccess on Form clfsi1lva008789xagkeouz3w\\nAccess granted to bee@cds-snc.ca" | ||
}` | ||
|
||
} | ||
] | ||
}); | ||
const encodedData = compressAndEncode(logData); | ||
|
||
console.log(encodedData); | ||
|
||
const result = await lambdaLocal.execute({ | ||
event: { | ||
"awslogs": { | ||
"data": `${encodedData}` | ||
} | ||
}, | ||
lambdaPath: 'notify_slack.js' | ||
}); | ||
}); | ||
|
||
function compressAndEncode(data) { | ||
// Compress the data using zlib | ||
const compressedData = zlib.gzipSync(data); | ||
// Encode the compressed data using base64 | ||
const encodedData = compressedData.toString('base64'); | ||
return encodedData; | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably another bug that we missed... The lowercase action below would have made it impossible to detect this string
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably why we did not see any reset notification in Slack for a while