| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  | import io = require('@actions/io'); | 
					
						
							|  |  |  | import fs = require('fs'); | 
					
						
							|  |  |  | import path = require('path'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const toolDir = path.join( | 
					
						
							|  |  |  |   __dirname, | 
					
						
							|  |  |  |   'runner', | 
					
						
							| 
									
										
										
										
											2020-03-26 16:39:48 +01:00
										 |  |  |   path.join(Math.random().toString(36).substring(7)), | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  |   'tools' | 
					
						
							|  |  |  | ); | 
					
						
							|  |  |  | const tempDir = path.join( | 
					
						
							|  |  |  |   __dirname, | 
					
						
							|  |  |  |   'runner', | 
					
						
							| 
									
										
										
										
											2020-03-26 16:39:48 +01:00
										 |  |  |   path.join(Math.random().toString(36).substring(7)), | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  |   'temp' | 
					
						
							|  |  |  | ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | process.env['RUNNER_TOOL_CACHE'] = toolDir; | 
					
						
							|  |  |  | process.env['RUNNER_TEMP'] = tempDir; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-29 20:57:02 +03:00
										 |  |  | import * as tc from '@actions/tool-cache'; | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  | import * as finder from '../src/find-python'; | 
					
						
							| 
									
										
										
										
											2020-04-29 20:57:02 +03:00
										 |  |  | import * as installer from '../src/install-python'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-17 12:58:03 +03:00
										 |  |  | const manifestData = require('./data/versions-manifest.json'); | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | describe('Finder tests', () => { | 
					
						
							| 
									
										
										
										
											2020-04-29 20:57:02 +03:00
										 |  |  |   afterEach(() => { | 
					
						
							|  |  |  |     jest.resetAllMocks(); | 
					
						
							|  |  |  |     jest.clearAllMocks(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  |   it('Finds Python if it is installed', async () => { | 
					
						
							|  |  |  |     const pythonDir: string = path.join(toolDir, 'Python', '3.0.0', 'x64'); | 
					
						
							|  |  |  |     await io.mkdirP(pythonDir); | 
					
						
							|  |  |  |     fs.writeFileSync(`${pythonDir}.complete`, 'hello'); | 
					
						
							| 
									
										
										
										
											2020-04-29 20:57:02 +03:00
										 |  |  |     // This will throw if it doesn't find it in the cache and in the manifest (because no such version exists)
 | 
					
						
							| 
									
										
										
										
											2022-02-28 10:19:48 +03:00
										 |  |  |     await finder.useCpythonVersion('3.x', 'x64'); | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-17 12:58:03 +03:00
										 |  |  |   it('Finds stable Python version if it is not installed, but exists in the manifest', async () => { | 
					
						
							|  |  |  |     const findSpy: jest.SpyInstance = jest.spyOn(tc, 'getManifestFromRepo'); | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => <tc.IToolRelease[]>manifestData); | 
					
						
							| 
									
										
										
										
											2020-04-29 20:57:02 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const installSpy: jest.SpyInstance = jest.spyOn( | 
					
						
							|  |  |  |       installer, | 
					
						
							|  |  |  |       'installCpythonFromRelease' | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     installSpy.mockImplementation(async () => { | 
					
						
							|  |  |  |       const pythonDir: string = path.join(toolDir, 'Python', '1.2.3', 'x64'); | 
					
						
							|  |  |  |       await io.mkdirP(pythonDir); | 
					
						
							|  |  |  |       fs.writeFileSync(`${pythonDir}.complete`, 'hello'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     // This will throw if it doesn't find it in the cache and in the manifest (because no such version exists)
 | 
					
						
							| 
									
										
										
										
											2022-02-28 10:19:48 +03:00
										 |  |  |     await finder.useCpythonVersion('1.2.3', 'x64'); | 
					
						
							| 
									
										
										
										
											2020-04-29 20:57:02 +03:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-17 12:58:03 +03:00
										 |  |  |   it('Finds pre-release Python version in the manifest', async () => { | 
					
						
							|  |  |  |     const findSpy: jest.SpyInstance = jest.spyOn(tc, 'getManifestFromRepo'); | 
					
						
							|  |  |  |     findSpy.mockImplementation(() => <tc.IToolRelease[]>manifestData); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const installSpy: jest.SpyInstance = jest.spyOn( | 
					
						
							|  |  |  |       installer, | 
					
						
							|  |  |  |       'installCpythonFromRelease' | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     installSpy.mockImplementation(async () => { | 
					
						
							|  |  |  |       const pythonDir: string = path.join( | 
					
						
							|  |  |  |         toolDir, | 
					
						
							|  |  |  |         'Python', | 
					
						
							|  |  |  |         '1.2.3-beta.2', | 
					
						
							|  |  |  |         'x64' | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |       await io.mkdirP(pythonDir); | 
					
						
							|  |  |  |       fs.writeFileSync(`${pythonDir}.complete`, 'hello'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     // This will throw if it doesn't find it in the manifest (because no such version exists)
 | 
					
						
							| 
									
										
										
										
											2022-02-28 10:19:48 +03:00
										 |  |  |     await finder.useCpythonVersion('1.2.3-beta.2', 'x64'); | 
					
						
							| 
									
										
										
										
											2020-07-17 12:58:03 +03:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  |   it('Errors if Python is not installed', async () => { | 
					
						
							| 
									
										
										
										
											2020-04-29 20:57:02 +03:00
										 |  |  |     // This will throw if it doesn't find it in the cache and in the manifest (because no such version exists)
 | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  |     let thrown = false; | 
					
						
							|  |  |  |     try { | 
					
						
							| 
									
										
										
										
											2022-02-28 10:19:48 +03:00
										 |  |  |       await finder.useCpythonVersion('3.300000', 'x64'); | 
					
						
							| 
									
										
										
										
											2019-08-20 10:27:52 -04:00
										 |  |  |     } catch { | 
					
						
							|  |  |  |       thrown = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     expect(thrown).toBeTruthy(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }); |