2026-03-24 13:46:19 -04:00
|
|
|
import {vi, describe, test, expect, afterEach} from 'vitest'
|
|
|
|
|
import * as path from 'path'
|
|
|
|
|
|
|
|
|
|
// Mock os module
|
|
|
|
|
vi.mock('os', async (importOriginal) => {
|
|
|
|
|
const actual = await importOriginal<typeof import('os')>()
|
|
|
|
|
return {
|
|
|
|
|
...actual,
|
|
|
|
|
platform: vi.fn(),
|
|
|
|
|
arch: vi.fn()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Mock fs module
|
|
|
|
|
vi.mock('fs', async (importOriginal) => {
|
|
|
|
|
const actual = await importOriginal<typeof import('fs')>()
|
|
|
|
|
return {
|
|
|
|
|
...actual,
|
|
|
|
|
readdirSync: vi.fn(),
|
|
|
|
|
statSync: vi.fn(),
|
|
|
|
|
chmodSync: vi.fn(),
|
2026-06-24 05:07:39 +09:00
|
|
|
readFileSync: vi.fn(),
|
|
|
|
|
existsSync: vi.fn()
|
2026-03-24 13:46:19 -04:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Mock @actions/core
|
|
|
|
|
vi.mock('@actions/core', async (importOriginal) => {
|
|
|
|
|
const actual = await importOriginal<typeof import('@actions/core')>()
|
|
|
|
|
return {
|
|
|
|
|
...actual,
|
|
|
|
|
getInput: vi.fn(),
|
|
|
|
|
info: vi.fn(),
|
|
|
|
|
debug: vi.fn(),
|
|
|
|
|
warning: vi.fn(),
|
|
|
|
|
startGroup: vi.fn(),
|
|
|
|
|
endGroup: vi.fn(),
|
|
|
|
|
addPath: vi.fn(),
|
|
|
|
|
setOutput: vi.fn(),
|
|
|
|
|
setFailed: vi.fn()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Mock @actions/tool-cache
|
|
|
|
|
vi.mock('@actions/tool-cache', async (importOriginal) => {
|
|
|
|
|
const actual = await importOriginal<typeof import('@actions/tool-cache')>()
|
|
|
|
|
return {
|
|
|
|
|
...actual,
|
|
|
|
|
find: vi.fn(),
|
|
|
|
|
downloadTool: vi.fn(),
|
|
|
|
|
extractZip: vi.fn(),
|
|
|
|
|
extractTar: vi.fn(),
|
|
|
|
|
cacheDir: vi.fn()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
import * as run from './run.js'
|
2022-06-27 15:27:44 -07:00
|
|
|
import * as os from 'os'
|
|
|
|
|
import * as toolCache from '@actions/tool-cache'
|
|
|
|
|
import * as fs from 'fs'
|
|
|
|
|
import * as core from '@actions/core'
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
describe('run.ts', () => {
|
2024-04-12 21:46:47 +02:00
|
|
|
const downloadBaseURL = 'https://test.tld'
|
|
|
|
|
|
|
|
|
|
// Cleanup mocks after each test to ensure that subsequent tests are not affected by the mocks.
|
|
|
|
|
afterEach(() => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.restoreAllMocks()
|
2024-04-12 21:46:47 +02:00
|
|
|
})
|
|
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('getExecutableExtension() - return .exe when os is Windows', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
expect(run.getExecutableExtension()).toBe('.exe')
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(os.platform).toHaveBeenCalled()
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('getExecutableExtension() - return empty string for non-windows OS', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('darwin')
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
expect(run.getExecutableExtension()).toBe('')
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(os.platform).toHaveBeenCalled()
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
test('getHelmDownloadURL() - return the URL to download helm for Linux amd64', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('linux')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('x64')
|
2024-04-12 21:46:47 +02:00
|
|
|
const expected = 'https://test.tld/helm-v3.8.0-linux-amd64.tar.gz'
|
2024-01-02 15:30:48 +01:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(run.getHelmDownloadURL(downloadBaseURL, 'v3.8.0')).toBe(expected)
|
|
|
|
|
expect(os.platform).toHaveBeenCalled()
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(os.arch).toHaveBeenCalled()
|
2024-04-12 21:46:47 +02:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
test('getHelmDownloadURL() - return the URL to download helm for Linux arm64', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('linux')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('arm64')
|
2024-04-12 21:46:47 +02:00
|
|
|
const expected = 'https://test.tld/helm-v3.8.0-linux-arm64.tar.gz'
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(run.getHelmDownloadURL(downloadBaseURL, 'v3.8.0')).toBe(expected)
|
|
|
|
|
expect(os.platform).toHaveBeenCalled()
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(os.arch).toHaveBeenCalled()
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
test('getHelmDownloadURL() - return the URL to download helm for Darwin x64', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('darwin')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('x64')
|
2024-04-12 21:46:47 +02:00
|
|
|
const expected = 'https://test.tld/helm-v3.8.0-darwin-amd64.tar.gz'
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(run.getHelmDownloadURL(downloadBaseURL, 'v3.8.0')).toBe(expected)
|
|
|
|
|
expect(os.platform).toHaveBeenCalled()
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(os.arch).toHaveBeenCalled()
|
2024-04-12 21:46:47 +02:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
test('getHelmDownloadURL() - return the URL to download helm for Darwin arm64', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('darwin')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('arm64')
|
2024-04-12 21:46:47 +02:00
|
|
|
const expected = 'https://test.tld/helm-v3.8.0-darwin-arm64.tar.gz'
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(run.getHelmDownloadURL(downloadBaseURL, 'v3.8.0')).toBe(expected)
|
|
|
|
|
expect(os.platform).toHaveBeenCalled()
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(os.arch).toHaveBeenCalled()
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2025-08-06 21:44:51 +02:00
|
|
|
test('getHelmDownloadURL() - return the URL to download helm for Windows x64', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('x64')
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
const expected = 'https://test.tld/helm-v3.8.0-windows-amd64.zip'
|
|
|
|
|
expect(run.getHelmDownloadURL(downloadBaseURL, 'v3.8.0')).toBe(expected)
|
|
|
|
|
expect(os.platform).toHaveBeenCalled()
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2025-08-06 21:44:51 +02:00
|
|
|
test('getHelmDownloadURL() - return the URL to download helm for Windows arm64', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('arm64')
|
2025-08-06 21:44:51 +02:00
|
|
|
|
|
|
|
|
const expected = 'https://test.tld/helm-v3.8.0-windows-arm64.zip'
|
|
|
|
|
expect(run.getHelmDownloadURL(downloadBaseURL, 'v3.8.0')).toBe(expected)
|
|
|
|
|
expect(os.platform).toHaveBeenCalled()
|
|
|
|
|
})
|
|
|
|
|
|
2024-03-01 17:15:56 +01:00
|
|
|
test('getLatestHelmVersion() - return the latest version of HELM', async () => {
|
|
|
|
|
const res = {
|
|
|
|
|
status: 200,
|
|
|
|
|
text: async () => 'v9.99.999'
|
|
|
|
|
} as Response
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.stubGlobal('fetch', vi.fn().mockReturnValue(res))
|
2024-03-01 17:15:56 +01:00
|
|
|
expect(await run.getLatestHelmVersion()).toBe('v9.99.999')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('getLatestHelmVersion() - return the stable version of HELM when simulating a network error', async () => {
|
|
|
|
|
const errorMessage: string = 'Network Error'
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.stubGlobal(
|
|
|
|
|
'fetch',
|
|
|
|
|
vi.fn().mockRejectedValueOnce(new Error(errorMessage))
|
|
|
|
|
)
|
2025-08-06 21:44:51 +02:00
|
|
|
expect(await run.getLatestHelmVersion()).toBe(run.stableHelmVersion)
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
test('getValidVersion() - return version with v prepended', () => {
|
|
|
|
|
expect(run.getValidVersion('3.8.0')).toBe('v3.8.0')
|
|
|
|
|
})
|
|
|
|
|
|
2026-06-24 05:07:39 +09:00
|
|
|
test('parseToolVersions() - return the helm version from .tool-versions content', () => {
|
|
|
|
|
const content = ['nodejs 20.11.0', 'helm 3.14.0', 'terraform 1.7.0'].join(
|
|
|
|
|
'\n'
|
|
|
|
|
)
|
|
|
|
|
expect(run.parseToolVersions(content)).toBe('3.14.0')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('parseToolVersions() - ignore comments and blank lines', () => {
|
|
|
|
|
const content = ['# tools', '', ' helm 3.15.2 ', ''].join('\n')
|
|
|
|
|
expect(run.parseToolVersions(content)).toBe('3.15.2')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('parseToolVersions() - return the first version when several are listed', () => {
|
|
|
|
|
expect(run.parseToolVersions('helm 3.14.0 3.13.0')).toBe('3.14.0')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('parseToolVersions() - return empty string when helm is not declared', () => {
|
|
|
|
|
expect(run.parseToolVersions('nodejs 20.11.0')).toBe('')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('getVersionFromToolVersionsFile() - read the helm version from a file', () => {
|
|
|
|
|
vi.mocked(fs.existsSync).mockReturnValue(true)
|
|
|
|
|
vi.mocked(fs.readFileSync).mockReturnValue('helm 3.14.0')
|
|
|
|
|
|
|
|
|
|
expect(run.getVersionFromToolVersionsFile('.tool-versions')).toBe(
|
|
|
|
|
'3.14.0'
|
|
|
|
|
)
|
|
|
|
|
expect(fs.readFileSync).toHaveBeenCalledWith('.tool-versions', 'utf8')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('getVersionFromToolVersionsFile() - throw when the file does not exist', () => {
|
|
|
|
|
vi.mocked(fs.existsSync).mockReturnValue(false)
|
|
|
|
|
|
|
|
|
|
expect(() =>
|
|
|
|
|
run.getVersionFromToolVersionsFile('missing.tool-versions')
|
|
|
|
|
).toThrow("The version-file 'missing.tool-versions' does not exist")
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('getVersionFromToolVersionsFile() - throw when no helm version is present', () => {
|
|
|
|
|
vi.mocked(fs.existsSync).mockReturnValue(true)
|
|
|
|
|
vi.mocked(fs.readFileSync).mockReturnValue('nodejs 20.11.0')
|
|
|
|
|
|
|
|
|
|
expect(() =>
|
|
|
|
|
run.getVersionFromToolVersionsFile('.tool-versions')
|
|
|
|
|
).toThrow("No helm version found in '.tool-versions'")
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('getVersionFromToolVersionsFile() - throw when the helm version is not semver-shaped', () => {
|
|
|
|
|
vi.mocked(fs.existsSync).mockReturnValue(true)
|
|
|
|
|
vi.mocked(fs.readFileSync).mockReturnValue('helm latest')
|
|
|
|
|
|
|
|
|
|
expect(() =>
|
|
|
|
|
run.getVersionFromToolVersionsFile('.tool-versions')
|
|
|
|
|
).toThrow(
|
|
|
|
|
"The helm version 'latest' in '.tool-versions' is not a valid semantic version"
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('isSemVerShaped() - accept semver-shaped versions with or without a v prefix', () => {
|
|
|
|
|
expect(run.isSemVerShaped('3.14.0')).toBe(true)
|
|
|
|
|
expect(run.isSemVerShaped('v3.14.0')).toBe(true)
|
|
|
|
|
expect(run.isSemVerShaped('3.14.0-rc.1')).toBe(true)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('isSemVerShaped() - reject values that are not semver-shaped', () => {
|
|
|
|
|
expect(run.isSemVerShaped('latest')).toBe(false)
|
|
|
|
|
expect(run.isSemVerShaped('3.14')).toBe(false)
|
|
|
|
|
expect(run.isSemVerShaped('abc')).toBe(false)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Stubs the download chain so run() resolves to a cached helm binary,
|
|
|
|
|
// letting these tests focus on version-vs-version-file resolution.
|
|
|
|
|
const stubDownloadChain = () => {
|
|
|
|
|
vi.mocked(os.platform).mockReturnValue('linux')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('x64')
|
|
|
|
|
vi.mocked(toolCache.find).mockReturnValue('pathToCachedDir')
|
|
|
|
|
vi.mocked(fs.chmodSync).mockImplementation(() => {})
|
|
|
|
|
vi.mocked(fs.readdirSync).mockReturnValue([
|
|
|
|
|
'helm' as unknown as fs.Dirent<NonSharedBuffer>
|
|
|
|
|
])
|
|
|
|
|
vi.mocked(fs.statSync).mockReturnValue({
|
|
|
|
|
isDirectory: () => false
|
|
|
|
|
} as fs.Stats)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const inputs = (version: string, versionFile: string) =>
|
|
|
|
|
vi.mocked(core.getInput).mockImplementation((name: string) => {
|
|
|
|
|
if (name === 'version') return version
|
|
|
|
|
if (name === 'version-file') return versionFile
|
|
|
|
|
if (name === 'downloadBaseURL') return downloadBaseURL
|
|
|
|
|
return ''
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('run() - resolve the version from version-file when version is not set', async () => {
|
|
|
|
|
stubDownloadChain()
|
|
|
|
|
inputs('', '.tool-versions')
|
|
|
|
|
vi.mocked(fs.existsSync).mockReturnValue(true)
|
|
|
|
|
vi.mocked(fs.readFileSync).mockReturnValue('helm 3.14.0')
|
|
|
|
|
|
|
|
|
|
await run.run()
|
|
|
|
|
|
|
|
|
|
expect(core.warning).not.toHaveBeenCalled()
|
|
|
|
|
expect(toolCache.find).toHaveBeenCalledWith('helm', 'v3.14.0')
|
|
|
|
|
expect(core.setOutput).toHaveBeenCalledWith(
|
|
|
|
|
'helm-path',
|
|
|
|
|
path.join('pathToCachedDir', 'helm')
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('run() - resolve the version from version-file when version is left at the latest default', async () => {
|
|
|
|
|
stubDownloadChain()
|
|
|
|
|
inputs('latest', '.tool-versions')
|
|
|
|
|
vi.mocked(fs.existsSync).mockReturnValue(true)
|
|
|
|
|
vi.mocked(fs.readFileSync).mockReturnValue('helm 3.14.0')
|
|
|
|
|
|
|
|
|
|
await run.run()
|
|
|
|
|
|
|
|
|
|
expect(core.warning).not.toHaveBeenCalled()
|
|
|
|
|
expect(toolCache.find).toHaveBeenCalledWith('helm', 'v3.14.0')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
test('run() - warn and prefer version over version-file when both are set', async () => {
|
|
|
|
|
stubDownloadChain()
|
|
|
|
|
inputs('3.5.0', '.tool-versions')
|
|
|
|
|
|
|
|
|
|
await run.run()
|
|
|
|
|
|
|
|
|
|
expect(core.warning).toHaveBeenCalledWith(
|
|
|
|
|
`Both 'version' and 'version-file' inputs are specified, only 'version' will be used.`
|
|
|
|
|
)
|
|
|
|
|
expect(fs.readFileSync).not.toHaveBeenCalled()
|
|
|
|
|
expect(toolCache.find).toHaveBeenCalledWith('helm', 'v3.5.0')
|
|
|
|
|
})
|
|
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('walkSync() - return path to the all files matching fileToFind in dir', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.readdirSync).mockImplementation((file, _?) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
if (file == 'mainFolder')
|
|
|
|
|
return [
|
2025-11-19 08:07:39 +13:00
|
|
|
'file1' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'file2' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'folder1' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'folder2' as unknown as fs.Dirent<NonSharedBuffer>
|
2022-06-27 15:27:44 -07:00
|
|
|
]
|
|
|
|
|
if (file == path.join('mainFolder', 'folder1'))
|
|
|
|
|
return [
|
2025-11-19 08:07:39 +13:00
|
|
|
'file11' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'file12' as unknown as fs.Dirent<NonSharedBuffer>
|
2022-06-27 15:27:44 -07:00
|
|
|
]
|
|
|
|
|
if (file == path.join('mainFolder', 'folder2'))
|
|
|
|
|
return [
|
2025-11-19 08:07:39 +13:00
|
|
|
'file21' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'file22' as unknown as fs.Dirent<NonSharedBuffer>
|
2022-06-27 15:27:44 -07:00
|
|
|
]
|
2024-04-12 21:46:47 +02:00
|
|
|
return []
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.statSync).mockImplementation((file) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
const isDirectory =
|
|
|
|
|
(file as string).toLowerCase().indexOf('file') == -1 ? true : false
|
|
|
|
|
return {isDirectory: () => isDirectory} as fs.Stats
|
|
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
expect(run.walkSync('mainFolder', null, 'file21')).toEqual([
|
|
|
|
|
path.join('mainFolder', 'folder2', 'file21')
|
|
|
|
|
])
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(fs.readdirSync).toHaveBeenCalledTimes(3)
|
|
|
|
|
expect(fs.statSync).toHaveBeenCalledTimes(8)
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('walkSync() - return empty array if no file with name fileToFind exists', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.readdirSync).mockImplementation((file, _?) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
if (file == 'mainFolder')
|
|
|
|
|
return [
|
2025-11-19 08:07:39 +13:00
|
|
|
'file1' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'file2' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'folder1' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'folder2' as unknown as fs.Dirent<NonSharedBuffer>
|
2022-06-27 15:27:44 -07:00
|
|
|
]
|
|
|
|
|
if (file == path.join('mainFolder', 'folder1'))
|
|
|
|
|
return [
|
2025-11-19 08:07:39 +13:00
|
|
|
'file11' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'file12' as unknown as fs.Dirent<NonSharedBuffer>
|
2022-06-27 15:27:44 -07:00
|
|
|
]
|
|
|
|
|
if (file == path.join('mainFolder', 'folder2'))
|
|
|
|
|
return [
|
2025-11-19 08:07:39 +13:00
|
|
|
'file21' as unknown as fs.Dirent<NonSharedBuffer>,
|
|
|
|
|
'file22' as unknown as fs.Dirent<NonSharedBuffer>
|
2022-06-27 15:27:44 -07:00
|
|
|
]
|
2024-04-12 21:46:47 +02:00
|
|
|
return []
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.statSync).mockImplementation((file) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
const isDirectory =
|
|
|
|
|
(file as string).toLowerCase().indexOf('file') == -1 ? true : false
|
|
|
|
|
return {isDirectory: () => isDirectory} as fs.Stats
|
|
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
expect(run.walkSync('mainFolder', null, 'helm.exe')).toEqual([])
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(fs.readdirSync).toHaveBeenCalledTimes(3)
|
|
|
|
|
expect(fs.statSync).toHaveBeenCalledTimes(8)
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('findHelm() - change access permissions and find the helm in given directory', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.chmodSync).mockImplementation(() => {})
|
|
|
|
|
vi.mocked(fs.readdirSync).mockImplementation((file, _?) => {
|
2025-05-14 07:19:00 +12:00
|
|
|
if (file == 'mainFolder')
|
2025-11-19 08:07:39 +13:00
|
|
|
return ['helm.exe' as unknown as fs.Dirent<NonSharedBuffer>]
|
2024-04-12 21:46:47 +02:00
|
|
|
return []
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.statSync).mockImplementation((file) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
const isDirectory =
|
|
|
|
|
(file as string).indexOf('folder') == -1 ? false : true
|
|
|
|
|
return {isDirectory: () => isDirectory} as fs.Stats
|
|
|
|
|
})
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
expect(run.findHelm('mainFolder')).toBe(
|
|
|
|
|
path.join('mainFolder', 'helm.exe')
|
|
|
|
|
)
|
|
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('findHelm() - throw error if executable not found', () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.chmodSync).mockImplementation(() => {})
|
|
|
|
|
vi.mocked(fs.readdirSync).mockImplementation((file, _?) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
if (file == 'mainFolder') return []
|
2024-04-12 21:46:47 +02:00
|
|
|
return []
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.statSync).mockImplementation((file) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
return {isDirectory: () => true} as fs.Stats
|
|
|
|
|
})
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
2024-04-12 21:46:47 +02:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
expect(() => run.findHelm('mainFolder')).toThrow(
|
|
|
|
|
'Helm executable not found in path mainFolder'
|
|
|
|
|
)
|
|
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('downloadHelm() - download helm and return path to it', async () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(toolCache.find).mockReturnValue('')
|
|
|
|
|
vi.mocked(toolCache.downloadTool).mockResolvedValue('pathToTool')
|
2022-06-27 15:27:44 -07:00
|
|
|
const response = JSON.stringify([{tag_name: 'v4.0.0'}])
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(fs.readFileSync).mockReturnValue(response)
|
|
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('x64')
|
|
|
|
|
vi.mocked(fs.chmodSync).mockImplementation(() => {})
|
|
|
|
|
vi.mocked(toolCache.extractZip).mockResolvedValue('extractedPath')
|
|
|
|
|
vi.mocked(toolCache.cacheDir).mockResolvedValue('pathToCachedDir')
|
|
|
|
|
vi.mocked(fs.readdirSync).mockImplementation((file, _?) => [
|
|
|
|
|
'helm.exe' as unknown as fs.Dirent<NonSharedBuffer>
|
|
|
|
|
])
|
|
|
|
|
vi.mocked(fs.statSync).mockImplementation((file) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
const isDirectory =
|
|
|
|
|
(file as string).indexOf('folder') == -1 ? false : true
|
|
|
|
|
return {isDirectory: () => isDirectory} as fs.Stats
|
|
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(await run.downloadHelm(downloadBaseURL, 'v4.0.0')).toBe(
|
2022-06-27 15:27:44 -07:00
|
|
|
path.join('pathToCachedDir', 'helm.exe')
|
|
|
|
|
)
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(toolCache.find).toHaveBeenCalledWith('helm', 'v4.0.0')
|
|
|
|
|
expect(toolCache.downloadTool).toHaveBeenCalledWith(
|
2024-01-02 15:30:48 +01:00
|
|
|
'https://test.tld/helm-v4.0.0-windows-amd64.zip'
|
2022-06-27 15:27:44 -07:00
|
|
|
)
|
2026-06-04 19:25:36 -04:00
|
|
|
expect(fs.chmodSync).toHaveBeenCalledWith('pathToTool', '755')
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(toolCache.extractZip).toHaveBeenCalledWith('pathToTool')
|
|
|
|
|
expect(fs.chmodSync).toHaveBeenCalledWith(
|
2022-06-27 15:27:44 -07:00
|
|
|
path.join('pathToCachedDir', 'helm.exe'),
|
2026-06-04 19:25:36 -04:00
|
|
|
'755'
|
2022-06-27 15:27:44 -07:00
|
|
|
)
|
|
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('downloadHelm() - throw error if unable to download', async () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(toolCache.find).mockReturnValue('')
|
|
|
|
|
vi.mocked(toolCache.downloadTool).mockImplementation(async () => {
|
2022-06-27 15:27:44 -07:00
|
|
|
throw 'Unable to download'
|
|
|
|
|
})
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('x64')
|
2024-01-02 15:30:48 +01:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
const downloadUrl = 'https://test.tld/helm-v3.2.1-windows-amd64.zip'
|
|
|
|
|
await expect(run.downloadHelm(downloadBaseURL, 'v3.2.1')).rejects.toThrow(
|
|
|
|
|
`Failed to download Helm from location ${downloadUrl}`
|
2022-06-27 15:27:44 -07:00
|
|
|
)
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(toolCache.find).toHaveBeenCalledWith('helm', 'v3.2.1')
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(toolCache.downloadTool).toHaveBeenCalledWith(`${downloadUrl}`)
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('downloadHelm() - return path to helm tool with same version from toolCache', async () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(toolCache.find).mockReturnValue('pathToCachedDir')
|
|
|
|
|
vi.mocked(toolCache.cacheDir).mockResolvedValue('pathToCachedDir')
|
|
|
|
|
vi.mocked(toolCache.downloadTool).mockResolvedValue('pathToTool')
|
|
|
|
|
vi.mocked(toolCache.extractZip).mockResolvedValue('extractedPath')
|
|
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('x64')
|
|
|
|
|
vi.mocked(fs.chmodSync).mockImplementation(() => {})
|
|
|
|
|
vi.mocked(fs.readdirSync).mockReturnValue([
|
|
|
|
|
'helm.exe' as unknown as fs.Dirent<NonSharedBuffer>
|
|
|
|
|
])
|
|
|
|
|
vi.mocked(fs.statSync).mockImplementation((file) => {
|
2024-04-12 21:46:47 +02:00
|
|
|
const isDirectory =
|
|
|
|
|
(file as string).indexOf('folder') == -1 ? false : true
|
|
|
|
|
return {isDirectory: () => isDirectory} as fs.Stats
|
|
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
expect(await run.downloadHelm(downloadBaseURL, 'v3.2.1')).toBe(
|
2022-06-27 15:27:44 -07:00
|
|
|
path.join('pathToCachedDir', 'helm.exe')
|
|
|
|
|
)
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(toolCache.find).toHaveBeenCalledWith('helm', 'v3.2.1')
|
|
|
|
|
expect(fs.chmodSync).toHaveBeenCalledWith(
|
2022-06-27 15:27:44 -07:00
|
|
|
path.join('pathToCachedDir', 'helm.exe'),
|
2026-06-04 19:25:36 -04:00
|
|
|
'755'
|
2022-06-27 15:27:44 -07:00
|
|
|
)
|
|
|
|
|
})
|
2022-02-04 09:45:03 -05:00
|
|
|
|
2022-06-27 15:27:44 -07:00
|
|
|
test('downloadHelm() - throw error is helm is not found in path', async () => {
|
2026-03-24 13:46:19 -04:00
|
|
|
vi.mocked(toolCache.find).mockReturnValue('')
|
|
|
|
|
vi.mocked(toolCache.downloadTool).mockResolvedValue('pathToTool')
|
|
|
|
|
vi.mocked(toolCache.cacheDir).mockResolvedValue('pathToCachedDir')
|
|
|
|
|
vi.mocked(toolCache.downloadTool).mockResolvedValue('pathToTool')
|
|
|
|
|
vi.mocked(toolCache.extractZip).mockResolvedValue('extractedPath')
|
|
|
|
|
vi.mocked(os.platform).mockReturnValue('win32')
|
|
|
|
|
vi.mocked(os.arch).mockReturnValue('x64')
|
|
|
|
|
vi.mocked(fs.chmodSync).mockImplementation(() => {})
|
|
|
|
|
vi.mocked(fs.readdirSync).mockImplementation((file, _?) => [])
|
|
|
|
|
vi.mocked(fs.statSync).mockImplementation((file) => {
|
2022-06-27 15:27:44 -07:00
|
|
|
const isDirectory =
|
|
|
|
|
(file as string).indexOf('folder') == -1 ? false : true
|
|
|
|
|
return {isDirectory: () => isDirectory} as fs.Stats
|
|
|
|
|
})
|
|
|
|
|
|
2024-04-12 21:46:47 +02:00
|
|
|
await expect(run.downloadHelm(downloadBaseURL, 'v3.2.1')).rejects.toThrow(
|
2022-06-27 15:27:44 -07:00
|
|
|
'Helm executable not found in path pathToCachedDir'
|
|
|
|
|
)
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(toolCache.find).toHaveBeenCalledWith('helm', 'v3.2.1')
|
|
|
|
|
expect(toolCache.downloadTool).toHaveBeenCalledWith(
|
2024-01-02 15:30:48 +01:00
|
|
|
'https://test.tld/helm-v3.2.1-windows-amd64.zip'
|
2022-06-27 15:27:44 -07:00
|
|
|
)
|
2026-06-04 19:25:36 -04:00
|
|
|
expect(fs.chmodSync).toHaveBeenCalledWith('pathToTool', '755')
|
2024-02-08 19:49:56 +01:00
|
|
|
expect(toolCache.extractZip).toHaveBeenCalledWith('pathToTool')
|
2022-06-27 15:27:44 -07:00
|
|
|
})
|
|
|
|
|
})
|