generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #315 from github/commit-time-checks
Commit Time Checks 🔒 🕐
- Loading branch information
Showing
7 changed files
with
534 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import {commitSafetyChecks} from '../../src/functions/commit-safety-checks' | ||
import * as core from '@actions/core' | ||
|
||
const debugMock = jest.spyOn(core, 'debug').mockImplementation(() => {}) | ||
|
||
var data | ||
var context | ||
beforeEach(() => { | ||
jest.clearAllMocks() | ||
jest.spyOn(core, 'debug').mockImplementation(() => {}) | ||
|
||
context = { | ||
payload: { | ||
comment: { | ||
created_at: '2024-10-15T12:00:00Z' | ||
} | ||
} | ||
} | ||
|
||
data = { | ||
commit: { | ||
author: { | ||
date: '2024-10-15T11:00:00Z' | ||
} | ||
} | ||
} | ||
}) | ||
|
||
test('checks a commit and finds that it is safe (date)', async () => { | ||
expect(await commitSafetyChecks(context, data)).toStrictEqual({ | ||
message: 'success', | ||
status: true | ||
}) | ||
expect(debugMock).toHaveBeenCalledWith( | ||
'2024-10-15T12:00:00Z is not older than 2024-10-15T11:00:00Z' | ||
) | ||
}) | ||
|
||
test('checks a commit and finds that it is not safe (date)', async () => { | ||
data.commit.author.date = '2024-10-15T12:00:01Z' | ||
|
||
expect(await commitSafetyChecks(context, data)).toStrictEqual({ | ||
message: | ||
'### ⚠️ Cannot proceed with deployment\n\nThe latest commit is not safe for deployment. It was authored after the trigger comment was created.', | ||
status: false | ||
}) | ||
expect(debugMock).toHaveBeenCalledWith( | ||
'2024-10-15T12:00:00Z is older than 2024-10-15T12:00:01Z' | ||
) | ||
}) | ||
|
||
test('raises an error if the date format is invalid', async () => { | ||
data.commit.author.date = '2024-10-15T12:00:uhoh' | ||
await expect(commitSafetyChecks(context, data)).rejects.toThrow( | ||
'Invalid date format. Please ensure the dates are valid UTC timestamps.' | ||
) | ||
}) |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.