mirror of
https://github.com/Azure/setup-kubectl.git
synced 2025-12-14 14:11:23 +00:00
initial
This commit is contained in:
parent
0d0e4c7f33
commit
b8db437677
1 changed files with 175 additions and 204 deletions
379
src/run.test.ts
379
src/run.test.ts
|
|
@ -12,172 +12,147 @@ import * as core from '@actions/core'
|
|||
import * as util from 'util'
|
||||
|
||||
describe('Testing all functions in run file.', () => {
|
||||
test('getExecutableExtension() - return .exe when os is Windows', () => {
|
||||
jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
|
||||
expect(getExecutableExtension()).toBe('.exe')
|
||||
expect(os.type).toBeCalled()
|
||||
})
|
||||
|
||||
test('getExecutableExtension() - return empty string for non-windows OS', () => {
|
||||
jest.spyOn(os, 'type').mockReturnValue('Darwin')
|
||||
|
||||
expect(getExecutableExtension()).toBe('')
|
||||
expect(os.type).toBeCalled()
|
||||
})
|
||||
|
||||
test.each([
|
||||
['arm', 'arm'],
|
||||
['arm64', 'arm64'],
|
||||
['x64', 'amd64']
|
||||
])(
|
||||
'getKubectlArch() - return on %s os arch %s kubectl arch',
|
||||
(osArch, kubectlArch) => {
|
||||
jest.spyOn(os, 'arch').mockReturnValue(osArch)
|
||||
|
||||
expect(getKubectlArch()).toBe(kubectlArch)
|
||||
expect(os.arch).toBeCalled()
|
||||
}
|
||||
)
|
||||
|
||||
test.each([['arm'], ['arm64'], ['amd64']])(
|
||||
'getkubectlDownloadURL() - return the URL to download %s kubectl for Linux',
|
||||
(arch) => {
|
||||
jest.spyOn(os, 'type').mockReturnValue('Linux')
|
||||
const kubectlLinuxUrl = util.format(
|
||||
'https://dl.k8s.io/release/v1.15.0/bin/linux/%s/kubectl',
|
||||
arch
|
||||
)
|
||||
|
||||
expect(getkubectlDownloadURL('v1.15.0', arch)).toBe(kubectlLinuxUrl)
|
||||
expect(os.type).toBeCalled()
|
||||
}
|
||||
)
|
||||
|
||||
test.each([['arm'], ['arm64'], ['amd64']])(
|
||||
'getkubectlDownloadURL() - return the URL to download %s kubectl for Darwin',
|
||||
(arch) => {
|
||||
jest.spyOn(os, 'type').mockReturnValue('Darwin')
|
||||
const kubectlDarwinUrl = util.format(
|
||||
'https://dl.k8s.io/release/v1.15.0/bin/darwin/%s/kubectl',
|
||||
arch
|
||||
)
|
||||
|
||||
expect(getkubectlDownloadURL('v1.15.0', arch)).toBe(kubectlDarwinUrl)
|
||||
expect(os.type).toBeCalled()
|
||||
}
|
||||
)
|
||||
|
||||
test.each([['arm'], ['arm64'], ['amd64']])(
|
||||
'getkubectlDownloadURL() - return the URL to download %s kubectl for Windows',
|
||||
(arch) => {
|
||||
jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
|
||||
const kubectlWindowsUrl = util.format(
|
||||
'https://dl.k8s.io/release/v1.15.0/bin/windows/%s/kubectl.exe',
|
||||
arch
|
||||
)
|
||||
expect(getkubectlDownloadURL('v1.15.0', arch)).toBe(kubectlWindowsUrl)
|
||||
expect(os.type).toBeCalled()
|
||||
}
|
||||
)
|
||||
|
||||
test('getStableKubectlVersion() - download stable version file, read version and return it', async () => {
|
||||
jest
|
||||
.spyOn(toolCache, 'downloadTool')
|
||||
.mockReturnValue(Promise.resolve('pathToTool'))
|
||||
jest.spyOn(fs, 'readFileSync').mockReturnValue('v1.20.4')
|
||||
|
||||
expect(await run.getStableKubectlVersion()).toBe('v1.20.4')
|
||||
expect(toolCache.downloadTool).toBeCalled()
|
||||
expect(fs.readFileSync).toHaveBeenCalledWith('pathToTool', 'utf8')
|
||||
})
|
||||
|
||||
test('getStableKubectlVersion() - return default v1.15.0 if version read is empty', async () => {
|
||||
jest
|
||||
.spyOn(toolCache, 'downloadTool')
|
||||
.mockReturnValue(Promise.resolve('pathToTool'))
|
||||
jest.spyOn(fs, 'readFileSync').mockReturnValue('')
|
||||
|
||||
expect(await run.getStableKubectlVersion()).toBe('v1.15.0')
|
||||
expect(toolCache.downloadTool).toBeCalled()
|
||||
expect(fs.readFileSync).toHaveBeenCalledWith('pathToTool', 'utf8')
|
||||
})
|
||||
|
||||
test('getStableKubectlVersion() - return default v1.15.0 if unable to download file', async () => {
|
||||
jest
|
||||
.spyOn(toolCache, 'downloadTool')
|
||||
.mockRejectedValue('Unable to download.')
|
||||
|
||||
expect(await run.getStableKubectlVersion()).toBe('v1.15.0')
|
||||
expect(toolCache.downloadTool).toBeCalled()
|
||||
})
|
||||
|
||||
test('downloadKubectl() - download kubectl, add it to toolCache and return path to it', async () => {
|
||||
jest.spyOn(toolCache, 'find').mockReturnValue('')
|
||||
jest
|
||||
.spyOn(toolCache, 'downloadTool')
|
||||
.mockReturnValue(Promise.resolve('pathToTool'))
|
||||
jest
|
||||
.spyOn(toolCache, 'cacheFile')
|
||||
.mockReturnValue(Promise.resolve('pathToCachedTool'))
|
||||
jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
jest.spyOn(fs, 'chmodSync').mockImplementation(() => {})
|
||||
|
||||
expect(await run.downloadKubectl('v1.15.0')).toBe(
|
||||
path.join('pathToCachedTool', 'kubectl.exe')
|
||||
)
|
||||
expect(toolCache.find).toHaveBeenCalledWith('kubectl', 'v1.15.0')
|
||||
expect(toolCache.downloadTool).toBeCalled()
|
||||
expect(toolCache.cacheFile).toBeCalled()
|
||||
expect(os.type).toBeCalled()
|
||||
expect(fs.chmodSync).toHaveBeenCalledWith(
|
||||
path.join('pathToCachedTool', 'kubectl.exe'),
|
||||
'775'
|
||||
)
|
||||
})
|
||||
|
||||
test('downloadKubectl() - throw DownloadKubectlFailed error when unable to download kubectl', async () => {
|
||||
jest.spyOn(toolCache, 'find').mockReturnValue('')
|
||||
jest
|
||||
.spyOn(toolCache, 'downloadTool')
|
||||
.mockRejectedValue('Unable to download kubectl.')
|
||||
|
||||
await expect(run.downloadKubectl('v1.15.0')).rejects.toThrow(
|
||||
'DownloadKubectlFailed'
|
||||
)
|
||||
expect(toolCache.find).toHaveBeenCalledWith('kubectl', 'v1.15.0')
|
||||
expect(toolCache.downloadTool).toBeCalled()
|
||||
})
|
||||
|
||||
test('downloadKubectl() - throw kubectl not found error when receive 404 response', async () => {
|
||||
const kubectlVersion = 'v1.15.0'
|
||||
const arch = 'arm128'
|
||||
|
||||
jest.spyOn(os, 'arch').mockReturnValue(arch)
|
||||
jest.spyOn(toolCache, 'find').mockReturnValue('')
|
||||
jest.spyOn(toolCache, 'downloadTool').mockImplementation((_) => {
|
||||
throw new toolCache.HTTPError(404)
|
||||
})
|
||||
|
||||
await expect(run.downloadKubectl(kubectlVersion)).rejects.toThrow(
|
||||
util.format(
|
||||
"Kubectl '%s' for '%s' arch not found.",
|
||||
kubectlVersion,
|
||||
arch
|
||||
)
|
||||
)
|
||||
expect(os.arch).toBeCalled()
|
||||
expect(toolCache.find).toHaveBeenCalledWith('kubectl', kubectlVersion)
|
||||
expect(toolCache.downloadTool).toBeCalled()
|
||||
})
|
||||
|
||||
jest.spyOn(core, 'getInput').mockReturnValue('v1.15.5')
|
||||
// test('getExecutableExtension() - return .exe when os is Windows', () => {
|
||||
// jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
// expect(getExecutableExtension()).toBe('.exe')
|
||||
// expect(os.type).toBeCalled()
|
||||
// })
|
||||
// test('getExecutableExtension() - return empty string for non-windows OS', () => {
|
||||
// jest.spyOn(os, 'type').mockReturnValue('Darwin')
|
||||
// expect(getExecutableExtension()).toBe('')
|
||||
// expect(os.type).toBeCalled()
|
||||
// })
|
||||
// test.each([
|
||||
// ['arm', 'arm'],
|
||||
// ['arm64', 'arm64'],
|
||||
// ['x64', 'amd64']
|
||||
// ])(
|
||||
// 'getKubectlArch() - return on %s os arch %s kubectl arch',
|
||||
// (osArch, kubectlArch) => {
|
||||
// jest.spyOn(os, 'arch').mockReturnValue(osArch)
|
||||
// expect(getKubectlArch()).toBe(kubectlArch)
|
||||
// expect(os.arch).toBeCalled()
|
||||
// }
|
||||
// )
|
||||
// test.each([['arm'], ['arm64'], ['amd64']])(
|
||||
// 'getkubectlDownloadURL() - return the URL to download %s kubectl for Linux',
|
||||
// (arch) => {
|
||||
// jest.spyOn(os, 'type').mockReturnValue('Linux')
|
||||
// const kubectlLinuxUrl = util.format(
|
||||
// 'https://dl.k8s.io/release/v1.15.0/bin/linux/%s/kubectl',
|
||||
// arch
|
||||
// )
|
||||
// expect(getkubectlDownloadURL('v1.15.0', arch)).toBe(kubectlLinuxUrl)
|
||||
// expect(os.type).toBeCalled()
|
||||
// }
|
||||
// )
|
||||
// test.each([['arm'], ['arm64'], ['amd64']])(
|
||||
// 'getkubectlDownloadURL() - return the URL to download %s kubectl for Darwin',
|
||||
// (arch) => {
|
||||
// jest.spyOn(os, 'type').mockReturnValue('Darwin')
|
||||
// const kubectlDarwinUrl = util.format(
|
||||
// 'https://dl.k8s.io/release/v1.15.0/bin/darwin/%s/kubectl',
|
||||
// arch
|
||||
// )
|
||||
// expect(getkubectlDownloadURL('v1.15.0', arch)).toBe(kubectlDarwinUrl)
|
||||
// expect(os.type).toBeCalled()
|
||||
// }
|
||||
// )
|
||||
// test.each([['arm'], ['arm64'], ['amd64']])(
|
||||
// 'getkubectlDownloadURL() - return the URL to download %s kubectl for Windows',
|
||||
// (arch) => {
|
||||
// jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
// const kubectlWindowsUrl = util.format(
|
||||
// 'https://dl.k8s.io/release/v1.15.0/bin/windows/%s/kubectl.exe',
|
||||
// arch
|
||||
// )
|
||||
// expect(getkubectlDownloadURL('v1.15.0', arch)).toBe(kubectlWindowsUrl)
|
||||
// expect(os.type).toBeCalled()
|
||||
// }
|
||||
// )
|
||||
// test('getStableKubectlVersion() - download stable version file, read version and return it', async () => {
|
||||
// jest
|
||||
// .spyOn(toolCache, 'downloadTool')
|
||||
// .mockReturnValue(Promise.resolve('pathToTool'))
|
||||
// jest.spyOn(fs, 'readFileSync').mockReturnValue('v1.20.4')
|
||||
// expect(await run.getStableKubectlVersion()).toBe('v1.20.4')
|
||||
// expect(toolCache.downloadTool).toBeCalled()
|
||||
// expect(fs.readFileSync).toHaveBeenCalledWith('pathToTool', 'utf8')
|
||||
// })
|
||||
// test('getStableKubectlVersion() - return default v1.15.0 if version read is empty', async () => {
|
||||
// jest
|
||||
// .spyOn(toolCache, 'downloadTool')
|
||||
// .mockReturnValue(Promise.resolve('pathToTool'))
|
||||
// jest.spyOn(fs, 'readFileSync').mockReturnValue('')
|
||||
// expect(await run.getStableKubectlVersion()).toBe('v1.15.0')
|
||||
// expect(toolCache.downloadTool).toBeCalled()
|
||||
// expect(fs.readFileSync).toHaveBeenCalledWith('pathToTool', 'utf8')
|
||||
// })
|
||||
// test('getStableKubectlVersion() - return default v1.15.0 if unable to download file', async () => {
|
||||
// jest
|
||||
// .spyOn(toolCache, 'downloadTool')
|
||||
// .mockRejectedValue('Unable to download.')
|
||||
// expect(await run.getStableKubectlVersion()).toBe('v1.15.0')
|
||||
// expect(toolCache.downloadTool).toBeCalled()
|
||||
// })
|
||||
// test('downloadKubectl() - download kubectl, add it to toolCache and return path to it', async () => {
|
||||
// jest.spyOn(toolCache, 'find').mockReturnValue('')
|
||||
// jest
|
||||
// .spyOn(toolCache, 'downloadTool')
|
||||
// .mockReturnValue(Promise.resolve('pathToTool'))
|
||||
// jest
|
||||
// .spyOn(toolCache, 'cacheFile')
|
||||
// .mockReturnValue(Promise.resolve('pathToCachedTool'))
|
||||
// jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
// jest.spyOn(fs, 'chmodSync').mockImplementation(() => {})
|
||||
// expect(await run.downloadKubectl('v1.15.0')).toBe(
|
||||
// path.join('pathToCachedTool', 'kubectl.exe')
|
||||
// )
|
||||
// expect(toolCache.find).toHaveBeenCalledWith('kubectl', 'v1.15.0')
|
||||
// expect(toolCache.downloadTool).toBeCalled()
|
||||
// expect(toolCache.cacheFile).toBeCalled()
|
||||
// expect(os.type).toBeCalled()
|
||||
// expect(fs.chmodSync).toHaveBeenCalledWith(
|
||||
// path.join('pathToCachedTool', 'kubectl.exe'),
|
||||
// '775'
|
||||
// )
|
||||
// })
|
||||
// test('downloadKubectl() - throw DownloadKubectlFailed error when unable to download kubectl', async () => {
|
||||
// jest.spyOn(toolCache, 'find').mockReturnValue('')
|
||||
// jest
|
||||
// .spyOn(toolCache, 'downloadTool')
|
||||
// .mockRejectedValue('Unable to download kubectl.')
|
||||
// await expect(run.downloadKubectl('v1.15.0')).rejects.toThrow(
|
||||
// 'DownloadKubectlFailed'
|
||||
// )
|
||||
// expect(toolCache.find).toHaveBeenCalledWith('kubectl', 'v1.15.0')
|
||||
// expect(toolCache.downloadTool).toBeCalled()
|
||||
// })
|
||||
// test('downloadKubectl() - throw kubectl not found error when receive 404 response', async () => {
|
||||
// const kubectlVersion = 'v1.15.0'
|
||||
// const arch = 'arm128'
|
||||
// jest.spyOn(os, 'arch').mockReturnValue(arch)
|
||||
// jest.spyOn(toolCache, 'find').mockReturnValue('')
|
||||
// jest.spyOn(toolCache, 'downloadTool').mockImplementation((_) => {
|
||||
// throw new toolCache.HTTPError(404)
|
||||
// })
|
||||
// await expect(run.downloadKubectl(kubectlVersion)).rejects.toThrow(
|
||||
// util.format(
|
||||
// "Kubectl '%s' for '%s' arch not found.",
|
||||
// kubectlVersion,
|
||||
// arch
|
||||
// )
|
||||
// )
|
||||
// expect(os.arch).toBeCalled()
|
||||
// expect(toolCache.find).toHaveBeenCalledWith('kubectl', kubectlVersion)
|
||||
// expect(toolCache.downloadTool).toBeCalled()
|
||||
// })
|
||||
test('downloadKubectl() - return path to existing cache of kubectl', async () => {
|
||||
jest.spyOn(toolCache, 'find').mockReturnValue('pathToCachedTool')
|
||||
jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
jest.spyOn(fs, 'chmodSync').mockImplementation(() => {})
|
||||
jest.spyOn(toolCache, 'downloadTool')
|
||||
|
||||
expect(await run.downloadKubectl('v1.15.0')).toBe(
|
||||
path.join('pathToCachedTool', 'kubectl.exe')
|
||||
)
|
||||
|
|
@ -189,47 +164,43 @@ describe('Testing all functions in run file.', () => {
|
|||
)
|
||||
expect(toolCache.downloadTool).not.toBeCalled()
|
||||
})
|
||||
|
||||
test('run() - download specified version and set output', async () => {
|
||||
jest.spyOn(core, 'getInput').mockReturnValue('v1.15.5')
|
||||
jest.spyOn(toolCache, 'find').mockReturnValue('pathToCachedTool')
|
||||
jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
jest.spyOn(fs, 'chmodSync').mockImplementation()
|
||||
jest.spyOn(core, 'addPath').mockImplementation()
|
||||
jest.spyOn(console, 'log').mockImplementation()
|
||||
jest.spyOn(core, 'setOutput').mockImplementation()
|
||||
|
||||
expect(await run.run()).toBeUndefined()
|
||||
expect(core.getInput).toHaveBeenCalledWith('version', {required: true})
|
||||
expect(core.addPath).toHaveBeenCalledWith('pathToCachedTool')
|
||||
expect(core.setOutput).toHaveBeenCalledWith(
|
||||
'kubectl-path',
|
||||
path.join('pathToCachedTool', 'kubectl.exe')
|
||||
)
|
||||
})
|
||||
|
||||
test('run() - get latest version, download it and set output', async () => {
|
||||
jest.spyOn(core, 'getInput').mockReturnValue('latest')
|
||||
jest
|
||||
.spyOn(toolCache, 'downloadTool')
|
||||
.mockReturnValue(Promise.resolve('pathToTool'))
|
||||
jest.spyOn(fs, 'readFileSync').mockReturnValue('v1.20.4')
|
||||
jest.spyOn(toolCache, 'find').mockReturnValue('pathToCachedTool')
|
||||
jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
jest.spyOn(fs, 'chmodSync').mockImplementation()
|
||||
jest.spyOn(core, 'addPath').mockImplementation()
|
||||
jest.spyOn(console, 'log').mockImplementation()
|
||||
jest.spyOn(core, 'setOutput').mockImplementation()
|
||||
|
||||
expect(await run.run()).toBeUndefined()
|
||||
expect(toolCache.downloadTool).toHaveBeenCalledWith(
|
||||
'https://storage.googleapis.com/kubernetes-release/release/stable.txt'
|
||||
)
|
||||
expect(core.getInput).toHaveBeenCalledWith('version', {required: true})
|
||||
expect(core.addPath).toHaveBeenCalledWith('pathToCachedTool')
|
||||
expect(core.setOutput).toHaveBeenCalledWith(
|
||||
'kubectl-path',
|
||||
path.join('pathToCachedTool', 'kubectl.exe')
|
||||
)
|
||||
})
|
||||
// test('run() - download specified version and set output', async () => {
|
||||
// jest.spyOn(core, 'getInput').mockReturnValue('v1.15.5')
|
||||
// jest.spyOn(toolCache, 'find').mockReturnValue('pathToCachedTool')
|
||||
// jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
// jest.spyOn(fs, 'chmodSync').mockImplementation()
|
||||
// jest.spyOn(core, 'addPath').mockImplementation()
|
||||
// jest.spyOn(console, 'log').mockImplementation()
|
||||
// jest.spyOn(core, 'setOutput').mockImplementation()
|
||||
// expect(await run.run()).toBeUndefined()
|
||||
// expect(core.getInput).toHaveBeenCalledWith('version', {required: true})
|
||||
// expect(core.addPath).toHaveBeenCalledWith('pathToCachedTool')
|
||||
// expect(core.setOutput).toHaveBeenCalledWith(
|
||||
// 'kubectl-path',
|
||||
// path.join('pathToCachedTool', 'kubectl.exe')
|
||||
// )
|
||||
// })
|
||||
// test('run() - get latest version, download it and set output', async () => {
|
||||
// jest.spyOn(core, 'getInput').mockReturnValue('latest')
|
||||
// jest
|
||||
// .spyOn(toolCache, 'downloadTool')
|
||||
// .mockReturnValue(Promise.resolve('pathToTool'))
|
||||
// jest.spyOn(fs, 'readFileSync').mockReturnValue('v1.20.4')
|
||||
// jest.spyOn(toolCache, 'find').mockReturnValue('pathToCachedTool')
|
||||
// jest.spyOn(os, 'type').mockReturnValue('Windows_NT')
|
||||
// jest.spyOn(fs, 'chmodSync').mockImplementation()
|
||||
// jest.spyOn(core, 'addPath').mockImplementation()
|
||||
// jest.spyOn(console, 'log').mockImplementation()
|
||||
// jest.spyOn(core, 'setOutput').mockImplementation()
|
||||
// expect(await run.run()).toBeUndefined()
|
||||
// expect(toolCache.downloadTool).toHaveBeenCalledWith(
|
||||
// 'https://storage.googleapis.com/kubernetes-release/release/stable.txt'
|
||||
// )
|
||||
// expect(core.getInput).toHaveBeenCalledWith('version', {required: true})
|
||||
// expect(core.addPath).toHaveBeenCalledWith('pathToCachedTool')
|
||||
// expect(core.setOutput).toHaveBeenCalledWith(
|
||||
// 'kubectl-path',
|
||||
// path.join('pathToCachedTool', 'kubectl.exe')
|
||||
// )
|
||||
// })
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue