* initial esm conversion Signed-off-by: Brian DeHamer <bdehamer@github.com> * esm'ify jest tests Signed-off-by: Brian DeHamer <bdehamer@github.com> * lint issues Signed-off-by: Brian DeHamer <bdehamer@github.com> * debug mock Signed-off-by: Brian DeHamer <bdehamer@github.com> * glob updated Signed-off-by: Brian DeHamer <bdehamer@github.com> * async all file functions Signed-off-by: Brian DeHamer <bdehamer@github.com> * update @actions/github Signed-off-by: Brian DeHamer <bdehamer@github.com> * update @actions/attest Signed-off-by: Brian DeHamer <bdehamer@github.com> * rebuild package-lock.json Signed-off-by: Brian DeHamer <bdehamer@github.com> * use experimental flag for jest in ci Signed-off-by: Brian DeHamer <bdehamer@github.com> * remove stray istanbul ignore Signed-off-by: Brian DeHamer <bdehamer@github.com> * Optimize getSubjectFromPath to avoid concurrent stat calls Co-authored-by: bdehamer <398027+bdehamer@users.noreply.github.com> * Fix boundary condition for MAX_SUBJECT_COUNT check Co-authored-by: bdehamer <398027+bdehamer@users.noreply.github.com> * Improve error message clarity for subject count limit Co-authored-by: bdehamer <398027+bdehamer@users.noreply.github.com> * Update test to match new error message format Co-authored-by: bdehamer <398027+bdehamer@users.noreply.github.com> * rebuild dist Signed-off-by: Brian DeHamer <bdehamer@github.com> * Fix parseSBOMFromPath to check file size before reading Co-authored-by: bdehamer <398027+bdehamer@users.noreply.github.com> * Build package with updated changes Co-authored-by: bdehamer <398027+bdehamer@users.noreply.github.com> --------- Signed-off-by: Brian DeHamer <bdehamer@github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bdehamer <398027+bdehamer@users.noreply.github.com>
36 lines
773 B
TypeScript
36 lines
773 B
TypeScript
/**
|
|
* Unit tests for the action's entrypoint, src/index.ts
|
|
*/
|
|
import { jest } from '@jest/globals'
|
|
|
|
// Mock functions
|
|
const mockRun = jest.fn()
|
|
const mockGetInput = jest.fn()
|
|
const mockGetBooleanInput = jest.fn()
|
|
|
|
// Mock @actions/core
|
|
jest.unstable_mockModule('@actions/core', () => ({
|
|
getInput: mockGetInput,
|
|
getBooleanInput: mockGetBooleanInput
|
|
}))
|
|
|
|
// Mock ../src/main
|
|
jest.unstable_mockModule('../src/main', () => ({
|
|
run: mockRun
|
|
}))
|
|
|
|
describe('index', () => {
|
|
beforeEach(() => {
|
|
jest.clearAllMocks()
|
|
mockGetBooleanInput.mockReturnValue(false)
|
|
mockGetInput.mockReturnValue('')
|
|
})
|
|
|
|
it('calls run when imported', async () => {
|
|
// Dynamic import after mocking
|
|
await import('../src/index')
|
|
|
|
expect(mockRun).toHaveBeenCalled()
|
|
})
|
|
})
|