Fix reading unquoted versions

This commit is contained in:
Shivam Mathur
2019-12-14 10:13:01 +05:30
parent 8f8207a1ca
commit 2b027bd9bc
5 changed files with 15 additions and 6 deletions

View File

@ -31,7 +31,8 @@ jest.mock('../src/install', () => ({
run: jest.fn().mockImplementation(
async (): Promise<string> => {
const os_version: string = process.env['RUNNER_OS'] || '';
const version: string = process.env['php-version'] || '';
let version: string = process.env['php-version'] || '';
version = version.length > 1 ? version : version + '.0';
let script = '';
switch (os_version) {
case 'darwin':
@ -85,10 +86,16 @@ function setEnv(
describe('Install', () => {
it('Test install on windows', async () => {
setEnv('7.3', 'win32', '', '', '', '');
setEnv('7.0', 'win32', '', '', '', '');
// @ts-ignore
let script: string = await install.run();
expect(script).toContain('initial script');
expect(script).toContain('pwsh script.ps1 -version 7.0 -dir ' + __dirname);
setEnv('7.3', 'win32', '', '', '', '');
// @ts-ignore
script = await install.run();
expect(script).toContain('initial script');
expect(script).toContain('pwsh script.ps1 -version 7.3 -dir ' + __dirname);
setEnv('7.3', 'win32', 'a, b', 'a=b', 'x', '');