Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
checkout/__test__/retry-helper.test.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
87 lines (76 sloc)
2.33 KB
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
import * as core from '@actions/core' | |
import {RetryHelper} from '../lib/retry-helper' | |
let info: string[] | |
let retryHelper: any | |
describe('retry-helper tests', () => { | |
beforeAll(() => { | |
// Mock @actions/core info() | |
jest.spyOn(core, 'info').mockImplementation((message: string) => { | |
info.push(message) | |
}) | |
retryHelper = new RetryHelper(3, 0, 0) | |
}) | |
beforeEach(() => { | |
// Reset info | |
info = [] | |
}) | |
afterAll(() => { | |
// Restore | |
jest.restoreAllMocks() | |
}) | |
it('first attempt succeeds', async () => { | |
const actual = await retryHelper.execute(async () => { | |
return 'some result' | |
}) | |
expect(actual).toBe('some result') | |
expect(info).toHaveLength(0) | |
}) | |
it('second attempt succeeds', async () => { | |
let attempts = 0 | |
const actual = await retryHelper.execute(() => { | |
if (++attempts == 1) { | |
throw new Error('some error') | |
} | |
return Promise.resolve('some result') | |
}) | |
expect(attempts).toBe(2) | |
expect(actual).toBe('some result') | |
expect(info).toHaveLength(2) | |
expect(info[0]).toBe('some error') | |
expect(info[1]).toMatch(/Waiting .+ seconds before trying again/) | |
}) | |
it('third attempt succeeds', async () => { | |
let attempts = 0 | |
const actual = await retryHelper.execute(() => { | |
if (++attempts < 3) { | |
throw new Error(`some error ${attempts}`) | |
} | |
return Promise.resolve('some result') | |
}) | |
expect(attempts).toBe(3) | |
expect(actual).toBe('some result') | |
expect(info).toHaveLength(4) | |
expect(info[0]).toBe('some error 1') | |
expect(info[1]).toMatch(/Waiting .+ seconds before trying again/) | |
expect(info[2]).toBe('some error 2') | |
expect(info[3]).toMatch(/Waiting .+ seconds before trying again/) | |
}) | |
it('all attempts fail succeeds', async () => { | |
let attempts = 0 | |
let error: Error = null as unknown as Error | |
try { | |
await retryHelper.execute(() => { | |
throw new Error(`some error ${++attempts}`) | |
}) | |
} catch (err) { | |
error = err as Error | |
} | |
expect(error.message).toBe('some error 3') | |
expect(attempts).toBe(3) | |
expect(info).toHaveLength(4) | |
expect(info[0]).toBe('some error 1') | |
expect(info[1]).toMatch(/Waiting .+ seconds before trying again/) | |
expect(info[2]).toBe('some error 2') | |
expect(info[3]).toMatch(/Waiting .+ seconds before trying again/) | |
}) | |
}) |