mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-23 04:59:26 +08:00
6ecb006985
* Add missing API switch for GHES (#200) * Vidya reddy/prettier code (#203) * Add node modules and compiled JavaScript from main Co-authored-by: nv35 <76777923+nv35@users.noreply.github.com> Co-authored-by: Vidya <59590642+Vidya2606@users.noreply.github.com> Co-authored-by: Oliver King <oking3@uncc.edu>
62 lines
2.2 KiB
TypeScript
62 lines
2.2 KiB
TypeScript
import * as core from '@actions/core'
|
|
import {ExecOutput} from '@actions/exec'
|
|
import {checkForErrors} from './kubectlUtils'
|
|
|
|
describe('Kubectl utils', () => {
|
|
it('checks for errors', () => {
|
|
const success: ExecOutput = {stderr: '', stdout: 'success', exitCode: 0}
|
|
const successWithStderr: ExecOutput = {
|
|
stderr: 'error',
|
|
stdout: '',
|
|
exitCode: 0
|
|
}
|
|
const failWithExitCode: ExecOutput = {
|
|
stderr: '',
|
|
stdout: '',
|
|
exitCode: 1
|
|
}
|
|
const failWithExitWithStderr: ExecOutput = {
|
|
stderr: 'error',
|
|
stdout: '',
|
|
exitCode: 2
|
|
}
|
|
|
|
// with throw behavior
|
|
expect(() => checkForErrors([success])).not.toThrow()
|
|
expect(() => checkForErrors([successWithStderr])).not.toThrow()
|
|
expect(() => checkForErrors([success, successWithStderr])).not.toThrow()
|
|
expect(() => checkForErrors([failWithExitCode])).toThrow()
|
|
expect(() => checkForErrors([failWithExitWithStderr])).toThrow()
|
|
expect(() => checkForErrors([success, failWithExitCode])).toThrow()
|
|
expect(() =>
|
|
checkForErrors([successWithStderr, failWithExitCode])
|
|
).toThrow()
|
|
expect(() =>
|
|
checkForErrors([success, successWithStderr, failWithExitCode])
|
|
).toThrow()
|
|
expect(() =>
|
|
checkForErrors([success, successWithStderr, failWithExitWithStderr])
|
|
).toThrow()
|
|
|
|
// with warn behavior
|
|
jest.spyOn(core, 'warning').mockImplementation(() => {})
|
|
let warningCalls = 0
|
|
expect(() => checkForErrors([success], true)).not.toThrow()
|
|
expect(core.warning).toBeCalledTimes(warningCalls)
|
|
|
|
expect(() => checkForErrors([successWithStderr], true)).not.toThrow()
|
|
expect(core.warning).toBeCalledTimes(++warningCalls)
|
|
|
|
expect(() =>
|
|
checkForErrors([success, successWithStderr], true)
|
|
).not.toThrow()
|
|
expect(core.warning).toBeCalledTimes(++warningCalls)
|
|
|
|
expect(() => checkForErrors([failWithExitCode], true)).not.toThrow()
|
|
expect(core.warning).toBeCalledTimes(++warningCalls)
|
|
|
|
expect(() => checkForErrors([failWithExitWithStderr], true)).not.toThrow()
|
|
expect(core.warning).toBeCalledTimes(++warningCalls)
|
|
})
|
|
})
|