| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | import * as core from '@actions/core'; | 
					
						
							| 
									
										
										
										
											2020-03-10 11:51:57 -04:00
										 |  |  | import * as io from '@actions/io'; | 
					
						
							|  |  |  | import * as tc from '@actions/tool-cache'; | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  | import * as httpm from '@actions/http-client'; | 
					
						
							| 
									
										
										
										
											2022-07-01 01:27:37 +02:00
										 |  |  | import * as exec from '@actions/exec'; | 
					
						
							| 
									
										
										
										
											2022-03-31 21:10:37 +02:00
										 |  |  | import * as cache from '@actions/cache'; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | import fs from 'fs'; | 
					
						
							|  |  |  | import cp from 'child_process'; | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  | import osm from 'os'; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | import path from 'path'; | 
					
						
							|  |  |  | import * as main from '../src/main'; | 
					
						
							|  |  |  | import * as auth from '../src/authutil'; | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  | import OfficialBuilds from '../src/distributions/official_builds/official_builds'; | 
					
						
							|  |  |  | import {INodeVersion} from '../src/distributions/base-models'; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  | const nodeTestManifest = require('./data/versions-manifest.json'); | 
					
						
							|  |  |  | const nodeTestDist = require('./data/node-dist-index.json'); | 
					
						
							|  |  |  | const nodeTestDistNightly = require('./data/node-nightly-index.json'); | 
					
						
							|  |  |  | const nodeTestDistRc = require('./data/node-rc-index.json'); | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  | const nodeV8CanaryTestDist = require('./data/v8-canary-dist-index.json'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | describe('setup-node', () => { | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |   let build: OfficialBuilds; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |   let inputs = {} as any; | 
					
						
							|  |  |  |   let os = {} as any; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   let inSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let findSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  |   let findAllVersionsSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |   let cnSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let logSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |   let warningSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |   let getManifestSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let platSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let archSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let dlSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let exSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let cacheSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let dbgSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let whichSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let existsSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2021-11-29 14:48:31 +05:30
										 |  |  |   let readFileSyncSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |   let mkdirpSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let execSpy: jest.SpyInstance; | 
					
						
							|  |  |  |   let authSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2022-03-31 21:10:37 +02:00
										 |  |  |   let isCacheActionAvailable: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2022-07-01 01:27:37 +02:00
										 |  |  |   let getExecOutputSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  |   let getJsonSpy: jest.SpyInstance; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   beforeEach(() => { | 
					
						
							|  |  |  |     // @actions/core
 | 
					
						
							| 
									
										
										
										
											2020-10-01 12:03:22 -04:00
										 |  |  |     console.log('::stop-commands::stoptoken'); // Disable executing of runner commands when running tests in actions
 | 
					
						
							|  |  |  |     process.env['GITHUB_PATH'] = ''; // Stub out ENV file functionality so we can verify it writes to standard out
 | 
					
						
							| 
									
										
										
										
											2022-10-13 11:11:08 +01:00
										 |  |  |     process.env['GITHUB_OUTPUT'] = ''; // Stub out ENV file functionality so we can verify it writes to standard out
 | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     inputs = {}; | 
					
						
							|  |  |  |     inSpy = jest.spyOn(core, 'getInput'); | 
					
						
							|  |  |  |     inSpy.mockImplementation(name => inputs[name]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // node
 | 
					
						
							|  |  |  |     os = {}; | 
					
						
							|  |  |  |     platSpy = jest.spyOn(osm, 'platform'); | 
					
						
							|  |  |  |     platSpy.mockImplementation(() => os['platform']); | 
					
						
							|  |  |  |     archSpy = jest.spyOn(osm, 'arch'); | 
					
						
							|  |  |  |     archSpy.mockImplementation(() => os['arch']); | 
					
						
							|  |  |  |     execSpy = jest.spyOn(cp, 'execSync'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // @actions/tool-cache
 | 
					
						
							|  |  |  |     findSpy = jest.spyOn(tc, 'find'); | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  |     findAllVersionsSpy = jest.spyOn(tc, 'findAllVersions'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     dlSpy = jest.spyOn(tc, 'downloadTool'); | 
					
						
							|  |  |  |     exSpy = jest.spyOn(tc, 'extractTar'); | 
					
						
							|  |  |  |     cacheSpy = jest.spyOn(tc, 'cacheDir'); | 
					
						
							|  |  |  |     getManifestSpy = jest.spyOn(tc, 'getManifestFromRepo'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  |     // http-client
 | 
					
						
							|  |  |  |     getJsonSpy = jest.spyOn(httpm.HttpClient.prototype, 'getJson'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     // io
 | 
					
						
							|  |  |  |     whichSpy = jest.spyOn(io, 'which'); | 
					
						
							|  |  |  |     existsSpy = jest.spyOn(fs, 'existsSync'); | 
					
						
							|  |  |  |     mkdirpSpy = jest.spyOn(io, 'mkdirP'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-31 21:10:37 +02:00
										 |  |  |     // @actions/tool-cache
 | 
					
						
							|  |  |  |     isCacheActionAvailable = jest.spyOn(cache, 'isFeatureAvailable'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     // disable authentication portion for installer tests
 | 
					
						
							|  |  |  |     authSpy = jest.spyOn(auth, 'configAuthentication'); | 
					
						
							|  |  |  |     authSpy.mockImplementation(() => {}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // gets
 | 
					
						
							|  |  |  |     getManifestSpy.mockImplementation( | 
					
						
							|  |  |  |       () => <tc.IToolRelease[]>nodeTestManifest | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     getJsonSpy.mockImplementation(url => { | 
					
						
							|  |  |  |       let res: any; | 
					
						
							|  |  |  |       if (url.includes('/rc')) { | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |         res = <INodeVersion>nodeTestDistRc; | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  |       } else if (url.includes('/nightly')) { | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |         res = <INodeVersion>nodeTestDistNightly; | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  |       } else { | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |         res = <INodeVersion>nodeTestDist; | 
					
						
							| 
									
										
										
										
											2022-11-17 14:35:58 +01:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       return {result: res}; | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // writes
 | 
					
						
							|  |  |  |     cnSpy = jest.spyOn(process.stdout, 'write'); | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |     logSpy = jest.spyOn(core, 'info'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     dbgSpy = jest.spyOn(core, 'debug'); | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |     warningSpy = jest.spyOn(core, 'warning'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     cnSpy.mockImplementation(line => { | 
					
						
							|  |  |  |       // uncomment to debug
 | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |       process.stderr.write('write:' + line + '\n'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     }); | 
					
						
							|  |  |  |     logSpy.mockImplementation(line => { | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |       //   uncomment to debug
 | 
					
						
							|  |  |  |       process.stderr.write('log:' + line + '\n'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     }); | 
					
						
							|  |  |  |     dbgSpy.mockImplementation(msg => { | 
					
						
							|  |  |  |       // uncomment to see debug output
 | 
					
						
							|  |  |  |       // process.stderr.write(msg + '\n');
 | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-11-29 14:48:31 +05:30
										 |  |  |     warningSpy.mockImplementation(msg => { | 
					
						
							|  |  |  |       // uncomment to debug
 | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |       // process.stderr.write('log:' + msg + '\n');
 | 
					
						
							| 
									
										
										
										
											2021-11-29 14:48:31 +05:30
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2022-07-01 01:27:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // @actions/exec
 | 
					
						
							|  |  |  |     getExecOutputSpy = jest.spyOn(exec, 'getExecOutput'); | 
					
						
							| 
									
										
										
										
											2022-07-01 01:30:18 +02:00
										 |  |  |     getExecOutputSpy.mockImplementation(() => 'v16.15.0'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   afterEach(() => { | 
					
						
							|  |  |  |     jest.resetAllMocks(); | 
					
						
							|  |  |  |     jest.clearAllMocks(); | 
					
						
							|  |  |  |     //jest.restoreAllMocks();
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-01 12:03:22 -04:00
										 |  |  |   afterAll(async () => { | 
					
						
							|  |  |  |     console.log('::stoptoken::'); // Re-enable executing of runner commands when running tests in actions
 | 
					
						
							| 
									
										
										
										
											2021-11-29 14:48:31 +05:30
										 |  |  |     jest.restoreAllMocks(); | 
					
						
							| 
									
										
										
										
											2020-10-01 12:03:22 -04:00
										 |  |  |   }, 100000); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   //--------------------------------------------------
 | 
					
						
							|  |  |  |   // Manifest find tests
 | 
					
						
							|  |  |  |   //--------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2022-05-18 00:50:05 -07:00
										 |  |  |   it.each([ | 
					
						
							|  |  |  |     ['12.16.2', 'darwin', '12.16.2', 'Erbium'], | 
					
						
							|  |  |  |     ['12', 'linux', '12.16.2', 'Erbium'], | 
					
						
							|  |  |  |     ['10', 'win32', '10.20.1', 'Dubnium'], | 
					
						
							|  |  |  |     ['*', 'linux', '14.0.0', 'Fermium'] | 
					
						
							|  |  |  |   ])( | 
					
						
							|  |  |  |     'can find %s from manifest on %s', | 
					
						
							|  |  |  |     async (versionSpec, platform, expectedVersion, expectedLts) => { | 
					
						
							|  |  |  |       os.platform = platform; | 
					
						
							|  |  |  |       os.arch = 'x64'; | 
					
						
							|  |  |  |       let versions: tc.IToolRelease[] | null = await tc.getManifestFromRepo( | 
					
						
							|  |  |  |         'actions', | 
					
						
							|  |  |  |         'node-versions', | 
					
						
							|  |  |  |         'mocktoken' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(versions).toBeDefined(); | 
					
						
							|  |  |  |       let match = await tc.findFromManifest(versionSpec, true, versions); | 
					
						
							|  |  |  |       expect(match).toBeDefined(); | 
					
						
							|  |  |  |       expect(match?.version).toBe(expectedVersion); | 
					
						
							|  |  |  |       expect((match as any).lts).toBe(expectedLts); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   ); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |   //--------------------------------------------------
 | 
					
						
							|  |  |  |   // Found in cache tests
 | 
					
						
							|  |  |  |   //--------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-04 17:00:35 +03:00
										 |  |  |   it('finds version in cache with stable true', async () => { | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     inputs['node-version'] = '12'; | 
					
						
							|  |  |  |     inputs.stable = 'true'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let toolPath = path.normalize('/cache/node/12.16.1/x64'); | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => toolPath); | 
					
						
							|  |  |  |     await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(logSpy).toHaveBeenCalledWith(`Found in cache @ ${toolPath}`); | 
					
						
							| 
									
										
										
										
											2019-08-03 21:49:54 -04:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-04 17:00:35 +03:00
										 |  |  |   it('finds version in cache with stable not supplied', async () => { | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     inputs['node-version'] = '12'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     inSpy.mockImplementation(name => inputs[name]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let toolPath = path.normalize('/cache/node/12.16.1/x64'); | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => toolPath); | 
					
						
							|  |  |  |     await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(logSpy).toHaveBeenCalledWith(`Found in cache @ ${toolPath}`); | 
					
						
							| 
									
										
										
										
											2019-08-03 21:49:54 -04:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-04 17:00:35 +03:00
										 |  |  |   it('finds version in cache and adds it to the path', async () => { | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     inputs['node-version'] = '12'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     inSpy.mockImplementation(name => inputs[name]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let toolPath = path.normalize('/cache/node/12.16.1/x64'); | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => toolPath); | 
					
						
							|  |  |  |     await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let expPath = path.join(toolPath, 'bin'); | 
					
						
							|  |  |  |     expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`); | 
					
						
							| 
									
										
										
										
											2019-08-03 21:49:54 -04:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |   it('handles unhandled find error and reports error', async () => { | 
					
						
							|  |  |  |     let errMsg = 'unhandled error message'; | 
					
						
							|  |  |  |     inputs['node-version'] = '12'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => { | 
					
						
							|  |  |  |       throw new Error(errMsg); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(cnSpy).toHaveBeenCalledWith('::error::' + errMsg + osm.EOL); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-17 17:51:02 +02:00
										 |  |  |   //--------------------------------------------------
 | 
					
						
							|  |  |  |   // Manifest tests
 | 
					
						
							|  |  |  |   //--------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |   it('downloads a version from a manifest match', async () => { | 
					
						
							|  |  |  |     os.platform = 'linux'; | 
					
						
							|  |  |  |     os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // a version which is in the manifest
 | 
					
						
							|  |  |  |     let versionSpec = '12.16.2'; | 
					
						
							|  |  |  |     let resolvedVersion = versionSpec; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     inputs['node-version'] = versionSpec; | 
					
						
							|  |  |  |     inputs['always-auth'] = false; | 
					
						
							|  |  |  |     inputs['token'] = 'faketoken'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let expectedUrl = | 
					
						
							| 
									
										
										
										
											2022-06-02 03:30:33 -07:00
										 |  |  |       'https://github.com/actions/node-versions/releases/download/12.16.2-20200507.95/node-12.16.2-linux-x64.tar.gz'; | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // ... but not in the local cache
 | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dlSpy.mockImplementation(async () => '/some/temp/path'); | 
					
						
							|  |  |  |     let toolPath = path.normalize('/cache/node/12.16.2/x64'); | 
					
						
							|  |  |  |     exSpy.mockImplementation(async () => '/some/other/temp/path'); | 
					
						
							|  |  |  |     cacheSpy.mockImplementation(async () => toolPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let expPath = path.join(toolPath, 'bin'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 17:02:04 +03:00
										 |  |  |     expect(getExecOutputSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |       'node', | 
					
						
							|  |  |  |       ['--version'], | 
					
						
							|  |  |  |       expect.anything() | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     expect(getExecOutputSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |       'npm', | 
					
						
							|  |  |  |       ['--version'], | 
					
						
							|  |  |  |       expect.anything() | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     expect(getExecOutputSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |       'yarn', | 
					
						
							|  |  |  |       ['--version'], | 
					
						
							|  |  |  |       expect.anything() | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     expect(dlSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |     expect(exSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |     expect(logSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2020-09-03 07:50:29 -05:00
										 |  |  |       `Acquiring ${resolvedVersion} - ${os.arch} from ${expectedUrl}` | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     ); | 
					
						
							|  |  |  |     expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |       `Attempting to download ${versionSpec}...` | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('falls back to a version from node dist', async () => { | 
					
						
							|  |  |  |     os.platform = 'linux'; | 
					
						
							|  |  |  |     os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // a version which is not in the manifest but is in node dist
 | 
					
						
							|  |  |  |     let versionSpec = '11.15.0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     inputs['node-version'] = versionSpec; | 
					
						
							|  |  |  |     inputs['always-auth'] = false; | 
					
						
							|  |  |  |     inputs['token'] = 'faketoken'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // ... but not in the local cache
 | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dlSpy.mockImplementation(async () => '/some/temp/path'); | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |     const toolPath = path.normalize('/cache/node/11.15.0/x64'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     exSpy.mockImplementation(async () => '/some/other/temp/path'); | 
					
						
							|  |  |  |     cacheSpy.mockImplementation(async () => toolPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |     const expPath = path.join(toolPath, 'bin'); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |     expect(getManifestSpy).toHaveBeenCalled(); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     expect(logSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |       `Attempting to download ${versionSpec}...` | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     ); | 
					
						
							|  |  |  |     expect(logSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |       'Not found in manifest. Falling back to download directly from Node' | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     ); | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |     expect(dlSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |     expect(exSpy).toHaveBeenCalled(); | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('does not find a version that does not exist', async () => { | 
					
						
							|  |  |  |     os.platform = 'linux'; | 
					
						
							|  |  |  |     os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     let versionSpec = '9.99.9'; | 
					
						
							|  |  |  |     inputs['node-version'] = versionSpec; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  |     await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(logSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |       'Not found in manifest. Falling back to download directly from Node' | 
					
						
							| 
									
										
										
										
											2020-05-19 09:25:54 -04:00
										 |  |  |     ); | 
					
						
							|  |  |  |     expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |       `Attempting to download ${versionSpec}...` | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     expect(cnSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |       `::error::Unable to find Node version '${versionSpec}' for platform ${os.platform} and architecture ${os.arch}.${osm.EOL}` | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('reports a failed download', async () => { | 
					
						
							|  |  |  |     let errMsg = 'unhandled download message'; | 
					
						
							|  |  |  |     os.platform = 'linux'; | 
					
						
							|  |  |  |     os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // a version which is in the manifest
 | 
					
						
							|  |  |  |     let versionSpec = '12.16.2'; | 
					
						
							|  |  |  |     let resolvedVersion = versionSpec; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     inputs['node-version'] = versionSpec; | 
					
						
							|  |  |  |     inputs['always-auth'] = false; | 
					
						
							|  |  |  |     inputs['token'] = 'faketoken'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  |     dlSpy.mockImplementation(() => { | 
					
						
							|  |  |  |       throw new Error(errMsg); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect(cnSpy).toHaveBeenCalledWith(`::error::${errMsg}${osm.EOL}`); | 
					
						
							| 
									
										
										
										
											2019-08-03 21:49:54 -04:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 14:48:31 +05:30
										 |  |  |   it('acquires specified architecture of node', async () => { | 
					
						
							| 
									
										
										
										
											2020-09-03 10:15:28 -05:00
										 |  |  |     for (const {arch, version, osSpec} of [ | 
					
						
							|  |  |  |       {arch: 'x86', version: '12.16.2', osSpec: 'win32'}, | 
					
						
							|  |  |  |       {arch: 'x86', version: '14.0.0', osSpec: 'win32'} | 
					
						
							| 
									
										
										
										
											2020-09-03 08:47:25 -05:00
										 |  |  |     ]) { | 
					
						
							| 
									
										
										
										
											2020-09-03 10:15:28 -05:00
										 |  |  |       os.platform = osSpec; | 
					
						
							|  |  |  |       os.arch = arch; | 
					
						
							|  |  |  |       const fileExtension = os.platform === 'win32' ? '7z' : 'tar.gz'; | 
					
						
							| 
									
										
										
										
											2020-09-03 08:47:25 -05:00
										 |  |  |       const platform = { | 
					
						
							|  |  |  |         linux: 'linux', | 
					
						
							|  |  |  |         darwin: 'darwin', | 
					
						
							|  |  |  |         win32: 'win' | 
					
						
							| 
									
										
										
										
											2020-09-03 10:15:28 -05:00
										 |  |  |       }[os.platform]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       inputs['node-version'] = version; | 
					
						
							| 
									
										
										
										
											2020-12-08 16:15:38 -06:00
										 |  |  |       inputs['architecture'] = arch; | 
					
						
							| 
									
										
										
										
											2020-09-03 10:15:28 -05:00
										 |  |  |       inputs['always-auth'] = false; | 
					
						
							|  |  |  |       inputs['token'] = 'faketoken'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       let expectedUrl = | 
					
						
							|  |  |  |         arch === 'x64' | 
					
						
							|  |  |  |           ? `https://github.com/actions/node-versions/releases/download/${version}/node-${version}-${platform}-${arch}.zip` | 
					
						
							|  |  |  |           : `https://nodejs.org/dist/v${version}/node-v${version}-${platform}-${arch}.${fileExtension}`; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // ... but not in the local cache
 | 
					
						
							|  |  |  |       findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       dlSpy.mockImplementation(async () => '/some/temp/path'); | 
					
						
							|  |  |  |       let toolPath = path.normalize(`/cache/node/${version}/${arch}`); | 
					
						
							|  |  |  |       exSpy.mockImplementation(async () => '/some/other/temp/path'); | 
					
						
							|  |  |  |       cacheSpy.mockImplementation(async () => toolPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  |       expect(dlSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         `Acquiring ${version} - ${arch} from ${expectedUrl}` | 
					
						
							|  |  |  |       ); | 
					
						
							| 
									
										
										
										
											2020-09-03 08:47:25 -05:00
										 |  |  |     } | 
					
						
							|  |  |  |   }, 100000); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |   describe('check-latest flag', () => { | 
					
						
							| 
									
										
										
										
											2021-08-04 17:00:35 +03:00
										 |  |  |     it('use local version and dont check manifest if check-latest is not specified', async () => { | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |       os.platform = 'linux'; | 
					
						
							|  |  |  |       os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       inputs['node-version'] = '12'; | 
					
						
							|  |  |  |       inputs['check-latest'] = 'false'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       const toolPath = path.normalize('/cache/node/12.16.1/x64'); | 
					
						
							|  |  |  |       findSpy.mockReturnValue(toolPath); | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith(`Found in cache @ ${toolPath}`); | 
					
						
							|  |  |  |       expect(logSpy).not.toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Attempt to resolve the latest version from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							| 
									
										
										
										
											2021-06-22 17:52:06 +02:00
										 |  |  |       expect(dbgSpy).not.toHaveBeenCalledWith('No manifest cached'); | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       expect(dbgSpy).not.toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2021-06-22 17:52:06 +02:00
										 |  |  |         'Getting manifest from actions/node-versions@main' | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       ); | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-04 17:00:35 +03:00
										 |  |  |     it('check latest version and resolve it from local cache', async () => { | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |       os.platform = 'linux'; | 
					
						
							|  |  |  |       os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       inputs['node-version'] = '12'; | 
					
						
							|  |  |  |       inputs['check-latest'] = 'true'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       const toolPath = path.normalize('/cache/node/12.16.2/x64'); | 
					
						
							|  |  |  |       findSpy.mockReturnValue(toolPath); | 
					
						
							|  |  |  |       dlSpy.mockImplementation(async () => '/some/temp/path'); | 
					
						
							|  |  |  |       exSpy.mockImplementation(async () => '/some/other/temp/path'); | 
					
						
							|  |  |  |       cacheSpy.mockImplementation(async () => toolPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Attempt to resolve the latest version from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							| 
									
										
										
										
											2021-06-22 17:52:06 +02:00
										 |  |  |       expect(dbgSpy).toHaveBeenCalledWith('No manifest cached'); | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2021-06-22 17:52:06 +02:00
										 |  |  |         'Getting manifest from actions/node-versions@main' | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       ); | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |       expect(logSpy).toHaveBeenCalledWith("Resolved as '12.16.2'"); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith(`Found in cache @ ${toolPath}`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('check latest version and install it from manifest', async () => { | 
					
						
							|  |  |  |       os.platform = 'linux'; | 
					
						
							|  |  |  |       os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       inputs['node-version'] = '12'; | 
					
						
							|  |  |  |       inputs['check-latest'] = 'true'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  |       dlSpy.mockImplementation(async () => '/some/temp/path'); | 
					
						
							|  |  |  |       const toolPath = path.normalize('/cache/node/12.16.2/x64'); | 
					
						
							|  |  |  |       exSpy.mockImplementation(async () => '/some/other/temp/path'); | 
					
						
							|  |  |  |       cacheSpy.mockImplementation(async () => toolPath); | 
					
						
							|  |  |  |       const expectedUrl = | 
					
						
							| 
									
										
										
										
											2022-06-02 03:30:33 -07:00
										 |  |  |         'https://github.com/actions/node-versions/releases/download/12.16.2-20200507.95/node-12.16.2-linux-x64.tar.gz'; | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Attempt to resolve the latest version from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							| 
									
										
										
										
											2021-06-22 17:52:06 +02:00
										 |  |  |       expect(dbgSpy).toHaveBeenCalledWith('No manifest cached'); | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2021-06-22 17:52:06 +02:00
										 |  |  |         'Getting manifest from actions/node-versions@main' | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       ); | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |       expect(logSpy).toHaveBeenCalledWith("Resolved as '12.16.2'"); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2020-09-03 07:50:29 -05:00
										 |  |  |         `Acquiring 12.16.2 - ${os.arch} from ${expectedUrl}` | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |       ); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith('Extracting ...'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('fallback to dist if version if not found in manifest', async () => { | 
					
						
							|  |  |  |       os.platform = 'linux'; | 
					
						
							|  |  |  |       os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // a version which is not in the manifest but is in node dist
 | 
					
						
							|  |  |  |       let versionSpec = '11'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       inputs['node-version'] = versionSpec; | 
					
						
							|  |  |  |       inputs['check-latest'] = 'true'; | 
					
						
							|  |  |  |       inputs['always-auth'] = false; | 
					
						
							|  |  |  |       inputs['token'] = 'faketoken'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // ... but not in the local cache
 | 
					
						
							|  |  |  |       findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       dlSpy.mockImplementation(async () => '/some/temp/path'); | 
					
						
							|  |  |  |       let toolPath = path.normalize('/cache/node/11.11.0/x64'); | 
					
						
							|  |  |  |       exSpy.mockImplementation(async () => '/some/other/temp/path'); | 
					
						
							|  |  |  |       cacheSpy.mockImplementation(async () => toolPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       let expPath = path.join(toolPath, 'bin'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(dlSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |       expect(exSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Attempt to resolve the latest version from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							| 
									
										
										
										
											2021-06-22 17:52:06 +02:00
										 |  |  |       expect(dbgSpy).toHaveBeenCalledWith('No manifest cached'); | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2021-06-22 17:52:06 +02:00
										 |  |  |         'Getting manifest from actions/node-versions@main' | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       ); | 
					
						
							| 
									
										
										
										
											2020-06-29 21:56:37 +03:00
										 |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         `Failed to resolve version ${versionSpec} from manifest` | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         `Attempting to download ${versionSpec}...` | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('fallback to dist if manifest is not available', async () => { | 
					
						
							|  |  |  |       os.platform = 'linux'; | 
					
						
							|  |  |  |       os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // a version which is not in the manifest but is in node dist
 | 
					
						
							|  |  |  |       let versionSpec = '12'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       inputs['node-version'] = versionSpec; | 
					
						
							|  |  |  |       inputs['check-latest'] = 'true'; | 
					
						
							|  |  |  |       inputs['always-auth'] = false; | 
					
						
							|  |  |  |       inputs['token'] = 'faketoken'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // ... but not in the local cache
 | 
					
						
							|  |  |  |       findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  |       getManifestSpy.mockImplementation(() => { | 
					
						
							|  |  |  |         throw new Error('Unable to download manifest'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       dlSpy.mockImplementation(async () => '/some/temp/path'); | 
					
						
							|  |  |  |       let toolPath = path.normalize('/cache/node/12.11.0/x64'); | 
					
						
							|  |  |  |       exSpy.mockImplementation(async () => '/some/other/temp/path'); | 
					
						
							|  |  |  |       cacheSpy.mockImplementation(async () => toolPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       let expPath = path.join(toolPath, 'bin'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(dlSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |       expect(exSpy).toHaveBeenCalled(); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Attempt to resolve the latest version from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Unable to resolve version from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         `Failed to resolve version ${versionSpec} from manifest` | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         `Attempting to download ${versionSpec}...` | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(cnSpy).toHaveBeenCalledWith(`::add-path::${expPath}${osm.EOL}`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-06-17 17:51:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   describe('LTS version', () => { | 
					
						
							| 
									
										
										
										
											2021-06-30 09:27:49 +02:00
										 |  |  |     beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2021-06-17 17:51:02 +02:00
										 |  |  |       os.platform = 'linux'; | 
					
						
							|  |  |  |       os.arch = 'x64'; | 
					
						
							| 
									
										
										
										
											2021-06-30 09:27:49 +02:00
										 |  |  |       inputs.stable = 'true'; | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-06-17 17:51:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-02 03:30:33 -07:00
										 |  |  |     it.each([ | 
					
						
							|  |  |  |       ['erbium', '12.16.2'], | 
					
						
							|  |  |  |       ['*', '14.0.0'], | 
					
						
							|  |  |  |       ['-1', '12.16.2'] | 
					
						
							|  |  |  |     ])( | 
					
						
							|  |  |  |       'find latest LTS version and resolve it from local cache (lts/%s)', | 
					
						
							|  |  |  |       async (lts, expectedVersion) => { | 
					
						
							|  |  |  |         // arrange
 | 
					
						
							|  |  |  |         inputs['node-version'] = `lts/${lts}`; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const toolPath = path.normalize(`/cache/node/${expectedVersion}/x64`); | 
					
						
							|  |  |  |         findSpy.mockReturnValue(toolPath); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // act
 | 
					
						
							|  |  |  |         await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // assert
 | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           'Attempt to resolve LTS alias from manifest...' | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           'Getting manifest from actions/node-versions@main' | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(dbgSpy).not.toHaveBeenCalledWith('No manifest cached'); | 
					
						
							|  |  |  |         expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           `LTS alias '${lts}' for Node version 'lts/${lts}'` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           `Found LTS release '${expectedVersion}' for Node version 'lts/${lts}'` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith(`Found in cache @ ${toolPath}`); | 
					
						
							|  |  |  |         expect(cnSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           `::add-path::${path.join(toolPath, 'bin')}${osm.EOL}` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2021-06-17 18:34:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-02 03:30:33 -07:00
										 |  |  |     it.each([ | 
					
						
							|  |  |  |       [ | 
					
						
							|  |  |  |         'erbium', | 
					
						
							|  |  |  |         '12.16.2', | 
					
						
							|  |  |  |         'https://github.com/actions/node-versions/releases/download/12.16.2-20200507.95/node-12.16.2-linux-x64.tar.gz' | 
					
						
							|  |  |  |       ], | 
					
						
							|  |  |  |       [ | 
					
						
							|  |  |  |         '*', | 
					
						
							|  |  |  |         '14.0.0', | 
					
						
							|  |  |  |         'https://github.com/actions/node-versions/releases/download/14.0.0-20200507.99/node-14.0.0-linux-x64.tar.gz' | 
					
						
							|  |  |  |       ], | 
					
						
							|  |  |  |       [ | 
					
						
							|  |  |  |         '-1', | 
					
						
							|  |  |  |         '12.16.2', | 
					
						
							|  |  |  |         'https://github.com/actions/node-versions/releases/download/12.16.2-20200507.95/node-12.16.2-linux-x64.tar.gz' | 
					
						
							|  |  |  |       ] | 
					
						
							|  |  |  |     ])( | 
					
						
							|  |  |  |       'find latest LTS version and install it from manifest (lts/%s)', | 
					
						
							|  |  |  |       async (lts, expectedVersion, expectedUrl) => { | 
					
						
							|  |  |  |         // arrange
 | 
					
						
							|  |  |  |         inputs['node-version'] = `lts/${lts}`; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const toolPath = path.normalize(`/cache/node/${expectedVersion}/x64`); | 
					
						
							|  |  |  |         findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  |         dlSpy.mockImplementation(async () => '/some/temp/path'); | 
					
						
							|  |  |  |         exSpy.mockImplementation(async () => '/some/other/temp/path'); | 
					
						
							|  |  |  |         cacheSpy.mockImplementation(async () => toolPath); | 
					
						
							|  |  |  |         const expectedMajor = expectedVersion.split('.')[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // act
 | 
					
						
							|  |  |  |         await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // assert
 | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           'Attempt to resolve LTS alias from manifest...' | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           'Getting manifest from actions/node-versions@main' | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(dbgSpy).not.toHaveBeenCalledWith('No manifest cached'); | 
					
						
							|  |  |  |         expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           `LTS alias '${lts}' for Node version 'lts/${lts}'` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           `Found LTS release '${expectedVersion}' for Node version 'lts/${lts}'` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           `Attempting to download ${expectedMajor}...` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           `Acquiring ${expectedVersion} - ${os.arch} from ${expectedUrl}` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith('Extracting ...'); | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith('Adding to the cache ...'); | 
					
						
							|  |  |  |         expect(cnSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |           `::add-path::${path.join(toolPath, 'bin')}${osm.EOL}` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2021-06-17 18:53:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-30 09:34:42 +02:00
										 |  |  |     it('fail with unable to parse LTS alias (lts/)', async () => { | 
					
						
							| 
									
										
										
										
											2021-06-17 18:53:38 +02:00
										 |  |  |       // arrange
 | 
					
						
							|  |  |  |       inputs['node-version'] = 'lts/'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // act
 | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // assert
 | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Attempt to resolve LTS alias from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Getting manifest from actions/node-versions@main' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(cnSpy).toHaveBeenCalledWith( | 
					
						
							| 
									
										
										
										
											2021-06-30 09:34:42 +02:00
										 |  |  |         `::error::Unable to parse LTS alias for Node version 'lts/'${osm.EOL}` | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       ); | 
					
						
							| 
									
										
										
										
											2021-06-17 18:53:38 +02:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('fail to find LTS version (lts/unknown)', async () => { | 
					
						
							|  |  |  |       // arrange
 | 
					
						
							|  |  |  |       inputs['node-version'] = 'lts/unknown'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // act
 | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // assert
 | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Attempt to resolve LTS alias from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Getting manifest from actions/node-versions@main' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         `LTS alias 'unknown' for Node version 'lts/unknown'` | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(cnSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         `::error::Unable to find LTS release 'unknown' for Node version 'lts/unknown'.${osm.EOL}` | 
					
						
							|  |  |  |       ); | 
					
						
							| 
									
										
										
										
											2021-06-17 18:53:38 +02:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-06-22 15:45:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('fail if manifest is not available', async () => { | 
					
						
							|  |  |  |       // arrange
 | 
					
						
							|  |  |  |       inputs['node-version'] = 'lts/erbium'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // ... but not in the local cache
 | 
					
						
							|  |  |  |       findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  |       getManifestSpy.mockImplementation(() => { | 
					
						
							|  |  |  |         throw new Error('Unable to download manifest'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // act
 | 
					
						
							|  |  |  |       await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // assert
 | 
					
						
							| 
									
										
										
										
											2021-06-22 16:11:44 +02:00
										 |  |  |       expect(logSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Attempt to resolve LTS alias from manifest...' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(dbgSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         'Getting manifest from actions/node-versions@main' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       expect(cnSpy).toHaveBeenCalledWith( | 
					
						
							|  |  |  |         `::error::Unable to download manifest${osm.EOL}` | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2022-05-12 17:26:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   describe('latest alias syntax', () => { | 
					
						
							|  |  |  |     it.each(['latest', 'current', 'node'])( | 
					
						
							|  |  |  |       'download the %s version if alias is provided', | 
					
						
							|  |  |  |       async inputVersion => { | 
					
						
							|  |  |  |         // Arrange
 | 
					
						
							|  |  |  |         inputs['node-version'] = inputVersion; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         os.platform = 'darwin'; | 
					
						
							|  |  |  |         os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         findSpy.mockImplementation(() => ''); | 
					
						
							|  |  |  |         getManifestSpy.mockImplementation(() => { | 
					
						
							|  |  |  |           throw new Error('Unable to download manifest'); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Act
 | 
					
						
							|  |  |  |         await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // assert
 | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith('Unable to download manifest'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith('getting latest node version...'); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2022-05-19 17:33:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   describe('latest alias syntax from cache', () => { | 
					
						
							|  |  |  |     it.each(['latest', 'current', 'node'])( | 
					
						
							|  |  |  |       'download the %s version if alias is provided', | 
					
						
							|  |  |  |       async inputVersion => { | 
					
						
							|  |  |  |         // Arrange
 | 
					
						
							|  |  |  |         inputs['node-version'] = inputVersion; | 
					
						
							|  |  |  |         const expectedVersion = nodeTestDist[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         os.platform = 'darwin'; | 
					
						
							|  |  |  |         os.arch = 'x64'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         const toolPath = path.normalize( | 
					
						
							|  |  |  |           `/cache/node/${expectedVersion.version}/x64` | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |         findSpy.mockImplementation(() => toolPath); | 
					
						
							| 
									
										
										
										
											2022-05-19 17:33:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Act
 | 
					
						
							|  |  |  |         await main.run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // assert
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(logSpy).toHaveBeenCalledWith('getting latest node version...'); | 
					
						
							| 
									
										
										
										
											2023-01-05 13:16:21 +01:00
										 |  |  |         expect(logSpy).toHaveBeenCalledWith(`Found in cache @ ${toolPath}`); | 
					
						
							| 
									
										
										
										
											2022-05-19 17:33:13 +02:00
										 |  |  |       } | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2019-08-03 21:49:54 -04:00
										 |  |  | }); |