|
| 1 | +import fs from 'fs'; |
| 2 | + |
| 3 | +import * as utils from '../src/utils'; |
| 4 | +import {HttpClient} from '@actions/http-client'; |
| 5 | +import * as ifm from '@actions/http-client/interfaces'; |
| 6 | +import * as tc from '@actions/tool-cache'; |
| 7 | +import * as exec from '@actions/exec'; |
| 8 | + |
| 9 | +import * as path from 'path'; |
| 10 | +import * as semver from 'semver'; |
| 11 | + |
| 12 | +import * as finder from '../src/find-pypy'; |
| 13 | +import { |
| 14 | + IPyPyManifestRelease, |
| 15 | + IS_WINDOWS, |
| 16 | + validateVersion, |
| 17 | + getPyPyVersionFromPath |
| 18 | +} from '../src/utils'; |
| 19 | + |
| 20 | +const manifestData = require('./data/pypy.json'); |
| 21 | + |
| 22 | +let architecture: string; |
| 23 | + |
| 24 | +if (IS_WINDOWS) { |
| 25 | + architecture = 'x86'; |
| 26 | +} else { |
| 27 | + architecture = 'x64'; |
| 28 | +} |
| 29 | + |
| 30 | +const toolDir = path.join(__dirname, 'runner', 'tools'); |
| 31 | +const tempDir = path.join(__dirname, 'runner', 'temp'); |
| 32 | + |
| 33 | +describe('parsePyPyVersion', () => { |
| 34 | + it.each([ |
| 35 | + ['pypy-3.6-v7.3.3', {pythonVersion: '3.6', pypyVersion: 'v7.3.3'}], |
| 36 | + ['pypy-3.6-v7.3.x', {pythonVersion: '3.6', pypyVersion: 'v7.3.x'}], |
| 37 | + ['pypy-3.6-v7.x', {pythonVersion: '3.6', pypyVersion: 'v7.x'}], |
| 38 | + ['pypy-3.6', {pythonVersion: '3.6', pypyVersion: 'x'}], |
| 39 | + ['pypy-3.6-nightly', {pythonVersion: '3.6', pypyVersion: 'nightly'}], |
| 40 | + ['pypy-3.6-v7.3.3rc1', {pythonVersion: '3.6', pypyVersion: 'v7.3.3-rc.1'}] |
| 41 | + ])('%s -> %s', (input, expected) => { |
| 42 | + expect(finder.parsePyPyVersion(input)).toEqual(expected); |
| 43 | + }); |
| 44 | + |
| 45 | + it('throw on invalid input', () => { |
| 46 | + expect(() => finder.parsePyPyVersion('pypy-')).toThrowError( |
| 47 | + "Invalid 'version' property for PyPy. PyPy version should be specified as 'pypy-<python-version>'. See README for examples and documentation." |
| 48 | + ); |
| 49 | + }); |
| 50 | +}); |
| 51 | + |
| 52 | +describe('getPyPyVersionFromPath', () => { |
| 53 | + it('/fake/toolcache/PyPy/3.6.5/x64 -> 3.6.5', () => { |
| 54 | + expect(getPyPyVersionFromPath('/fake/toolcache/PyPy/3.6.5/x64')).toEqual( |
| 55 | + '3.6.5' |
| 56 | + ); |
| 57 | + }); |
| 58 | +}); |
| 59 | + |
| 60 | +describe('findPyPyToolCache', () => { |
| 61 | + const actualPythonVersion = '3.6.17'; |
| 62 | + const actualPyPyVersion = '7.5.4'; |
| 63 | + const pypyPath = path.join('PyPy', actualPythonVersion, architecture); |
| 64 | + let tcFind: jest.SpyInstance; |
| 65 | + let spyReadExactPyPyVersion: jest.SpyInstance; |
| 66 | + |
| 67 | + beforeEach(() => { |
| 68 | + tcFind = jest.spyOn(tc, 'find'); |
| 69 | + tcFind.mockImplementation((toolname: string, pythonVersion: string) => { |
| 70 | + const semverVersion = new semver.Range(pythonVersion); |
| 71 | + return semver.satisfies(actualPythonVersion, semverVersion) |
| 72 | + ? pypyPath |
| 73 | + : ''; |
| 74 | + }); |
| 75 | + |
| 76 | + spyReadExactPyPyVersion = jest.spyOn(utils, 'readExactPyPyVersionFile'); |
| 77 | + spyReadExactPyPyVersion.mockImplementation(() => actualPyPyVersion); |
| 78 | + }); |
| 79 | + |
| 80 | + afterEach(() => { |
| 81 | + jest.resetAllMocks(); |
| 82 | + jest.clearAllMocks(); |
| 83 | + jest.restoreAllMocks(); |
| 84 | + }); |
| 85 | + |
| 86 | + it('PyPy exists on the path and versions are satisfied', () => { |
| 87 | + expect(finder.findPyPyToolCache('3.6.17', 'v7.5.4', architecture)).toEqual({ |
| 88 | + installDir: pypyPath, |
| 89 | + resolvedPythonVersion: actualPythonVersion, |
| 90 | + resolvedPyPyVersion: actualPyPyVersion |
| 91 | + }); |
| 92 | + }); |
| 93 | + |
| 94 | + it('PyPy exists on the path and versions are satisfied with semver', () => { |
| 95 | + expect(finder.findPyPyToolCache('3.6', 'v7.5.x', architecture)).toEqual({ |
| 96 | + installDir: pypyPath, |
| 97 | + resolvedPythonVersion: actualPythonVersion, |
| 98 | + resolvedPyPyVersion: actualPyPyVersion |
| 99 | + }); |
| 100 | + }); |
| 101 | + |
| 102 | + it("PyPy exists on the path, but Python version doesn't match", () => { |
| 103 | + expect(finder.findPyPyToolCache('3.7', 'v7.5.4', architecture)).toEqual({ |
| 104 | + installDir: '', |
| 105 | + resolvedPythonVersion: '', |
| 106 | + resolvedPyPyVersion: '' |
| 107 | + }); |
| 108 | + }); |
| 109 | + |
| 110 | + it("PyPy exists on the path, but PyPy version doesn't match", () => { |
| 111 | + expect(finder.findPyPyToolCache('3.6', 'v7.5.1', architecture)).toEqual({ |
| 112 | + installDir: null, |
| 113 | + resolvedPythonVersion: '', |
| 114 | + resolvedPyPyVersion: '' |
| 115 | + }); |
| 116 | + }); |
| 117 | +}); |
| 118 | + |
| 119 | +describe('findPyPyVersion', () => { |
| 120 | + let tcFind: jest.SpyInstance; |
| 121 | + let spyExtractZip: jest.SpyInstance; |
| 122 | + let spyExtractTar: jest.SpyInstance; |
| 123 | + let spyHttpClient: jest.SpyInstance; |
| 124 | + let spyExistsSync: jest.SpyInstance; |
| 125 | + let spyExec: jest.SpyInstance; |
| 126 | + let spySymlinkSync: jest.SpyInstance; |
| 127 | + let spyDownloadTool: jest.SpyInstance; |
| 128 | + let spyReadExactPyPyVersion: jest.SpyInstance; |
| 129 | + let spyFsReadDir: jest.SpyInstance; |
| 130 | + let spyWriteExactPyPyVersionFile: jest.SpyInstance; |
| 131 | + let spyCacheDir: jest.SpyInstance; |
| 132 | + let spyChmodSync: jest.SpyInstance; |
| 133 | + |
| 134 | + beforeEach(() => { |
| 135 | + tcFind = jest.spyOn(tc, 'find'); |
| 136 | + tcFind.mockImplementation((tool: string, version: string) => { |
| 137 | + const semverRange = new semver.Range(version); |
| 138 | + let pypyPath = ''; |
| 139 | + if (semver.satisfies('3.6.12', semverRange)) { |
| 140 | + pypyPath = path.join(toolDir, 'PyPy', '3.6.12', architecture); |
| 141 | + } |
| 142 | + return pypyPath; |
| 143 | + }); |
| 144 | + |
| 145 | + spyWriteExactPyPyVersionFile = jest.spyOn( |
| 146 | + utils, |
| 147 | + 'writeExactPyPyVersionFile' |
| 148 | + ); |
| 149 | + spyWriteExactPyPyVersionFile.mockImplementation(() => null); |
| 150 | + |
| 151 | + spyReadExactPyPyVersion = jest.spyOn(utils, 'readExactPyPyVersionFile'); |
| 152 | + spyReadExactPyPyVersion.mockImplementation(() => '7.3.3'); |
| 153 | + |
| 154 | + spyDownloadTool = jest.spyOn(tc, 'downloadTool'); |
| 155 | + spyDownloadTool.mockImplementation(() => path.join(tempDir, 'PyPy')); |
| 156 | + |
| 157 | + spyExtractZip = jest.spyOn(tc, 'extractZip'); |
| 158 | + spyExtractZip.mockImplementation(() => tempDir); |
| 159 | + |
| 160 | + spyExtractTar = jest.spyOn(tc, 'extractTar'); |
| 161 | + spyExtractTar.mockImplementation(() => tempDir); |
| 162 | + |
| 163 | + spyFsReadDir = jest.spyOn(fs, 'readdirSync'); |
| 164 | + spyFsReadDir.mockImplementation((directory: string) => ['PyPyTest']); |
| 165 | + |
| 166 | + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); |
| 167 | + spyHttpClient.mockImplementation( |
| 168 | + async (): Promise<ifm.ITypedResponse<IPyPyManifestRelease[]>> => { |
| 169 | + const result = JSON.stringify(manifestData); |
| 170 | + return { |
| 171 | + statusCode: 200, |
| 172 | + headers: {}, |
| 173 | + result: JSON.parse(result) as IPyPyManifestRelease[] |
| 174 | + }; |
| 175 | + } |
| 176 | + ); |
| 177 | + |
| 178 | + spyExec = jest.spyOn(exec, 'exec'); |
| 179 | + spyExec.mockImplementation(() => undefined); |
| 180 | + |
| 181 | + spySymlinkSync = jest.spyOn(fs, 'symlinkSync'); |
| 182 | + spySymlinkSync.mockImplementation(() => undefined); |
| 183 | + |
| 184 | + spyExistsSync = jest.spyOn(fs, 'existsSync'); |
| 185 | + spyExistsSync.mockReturnValue(true); |
| 186 | + }); |
| 187 | + |
| 188 | + afterEach(() => { |
| 189 | + jest.resetAllMocks(); |
| 190 | + jest.clearAllMocks(); |
| 191 | + jest.restoreAllMocks(); |
| 192 | + }); |
| 193 | + |
| 194 | + it('found PyPy in toolcache', async () => { |
| 195 | + await expect( |
| 196 | + finder.findPyPyVersion('pypy-3.6-v7.3.x', architecture) |
| 197 | + ).resolves.toEqual({ |
| 198 | + resolvedPythonVersion: '3.6.12', |
| 199 | + resolvedPyPyVersion: '7.3.3' |
| 200 | + }); |
| 201 | + }); |
| 202 | + |
| 203 | + it('throw on invalid input format', async () => { |
| 204 | + await expect( |
| 205 | + finder.findPyPyVersion('pypy3.7-v7.3.x', architecture) |
| 206 | + ).rejects.toThrow(); |
| 207 | + }); |
| 208 | + |
| 209 | + it('throw on invalid input format pypy3.7-7.3.x', async () => { |
| 210 | + await expect( |
| 211 | + finder.findPyPyVersion('pypy3.7-v7.3.x', architecture) |
| 212 | + ).rejects.toThrow(); |
| 213 | + }); |
| 214 | + |
| 215 | + it('found and install successfully', async () => { |
| 216 | + spyCacheDir = jest.spyOn(tc, 'cacheDir'); |
| 217 | + spyCacheDir.mockImplementation(() => |
| 218 | + path.join(toolDir, 'PyPy', '3.7.7', architecture) |
| 219 | + ); |
| 220 | + spyChmodSync = jest.spyOn(fs, 'chmodSync'); |
| 221 | + spyChmodSync.mockImplementation(() => undefined); |
| 222 | + await expect( |
| 223 | + finder.findPyPyVersion('pypy-3.7-v7.3.x', architecture) |
| 224 | + ).resolves.toEqual({ |
| 225 | + resolvedPythonVersion: '3.7.9', |
| 226 | + resolvedPyPyVersion: '7.3.3' |
| 227 | + }); |
| 228 | + }); |
| 229 | + |
| 230 | + it('throw if release is not found', async () => { |
| 231 | + await expect( |
| 232 | + finder.findPyPyVersion('pypy-3.7-v7.5.x', architecture) |
| 233 | + ).rejects.toThrowError( |
| 234 | + `PyPy version 3.7 (v7.5.x) with arch ${architecture} not found` |
| 235 | + ); |
| 236 | + }); |
| 237 | +}); |
0 commit comments