setup-php/__tests__/utils.test.ts

235 lines
8.6 KiB
TypeScript
Raw Normal View History

2019-09-20 09:41:20 +07:00
import * as fs from 'fs';
import * as path from 'path';
import * as utils from '../src/utils';
jest.mock('@actions/core', () => ({
getInput: jest.fn().mockImplementation(key => {
return ['setup-php'].indexOf(key) !== -1 ? key : '';
})
}));
2019-09-20 09:41:20 +07:00
async function cleanup(path: string): Promise<void> {
fs.unlink(path, error => {
if (error) {
console.log(error);
}
});
}
describe('Utils tests', () => {
2020-10-03 03:09:43 +07:00
it('checking readEnv', async () => {
process.env['test'] = 'setup-php';
expect(await utils.readEnv('test')).toBe('setup-php');
expect(await utils.readEnv('undefined')).toBe('');
});
2019-09-20 09:41:20 +07:00
it('checking getInput', async () => {
process.env['test'] = 'setup-php';
expect(await utils.getInput('test', false)).toBe('setup-php');
expect(await utils.getInput('setup-php', false)).toBe('setup-php');
2019-09-20 09:41:20 +07:00
expect(await utils.getInput('DoesNotExist', false)).toBe('');
2020-10-03 03:09:43 +07:00
expect(async () => {
await utils.getInput('DoesNotExist', true);
}).rejects.toThrow('Input required and not supplied: DoesNotExist');
2019-09-20 09:41:20 +07:00
});
2020-10-02 16:21:40 +07:00
it('checking parseVersion', async () => {
expect(await utils.parseVersion('7')).toBe('7.0');
expect(await utils.parseVersion('7.4')).toBe('7.4');
2020-11-28 06:46:22 +07:00
expect(await utils.parseVersion('latest')).toBe('8.0');
2020-10-02 16:21:40 +07:00
});
2019-09-20 09:41:20 +07:00
it('checking asyncForEach', async () => {
2019-11-24 03:34:12 +07:00
const array: Array<string> = ['a', 'b', 'c'];
let concat = '';
2020-11-27 01:36:27 +07:00
await utils.asyncForEach(
array,
async function (str: string): Promise<void> {
concat += str;
}
);
2019-11-24 03:34:12 +07:00
expect(concat).toBe('abc');
});
it('checking asyncForEach', async () => {
expect(await utils.color('error')).toBe('31');
expect(await utils.color('success')).toBe('32');
expect(await utils.color('any')).toBe('32');
expect(await utils.color('warning')).toBe('33');
2019-09-20 09:41:20 +07:00
});
it('checking readScripts', async () => {
2019-11-24 03:34:12 +07:00
const darwin: string = fs.readFileSync(
path.join(__dirname, '../src/scripts/darwin.sh'),
2019-09-20 09:41:20 +07:00
'utf8'
);
2019-11-24 03:34:12 +07:00
const linux: string = fs.readFileSync(
path.join(__dirname, '../src/scripts/linux.sh'),
2019-09-20 09:41:20 +07:00
'utf8'
);
2019-11-24 03:34:12 +07:00
const win32: string = fs.readFileSync(
path.join(__dirname, '../src/scripts/win32.ps1'),
2019-09-20 09:41:20 +07:00
'utf8'
);
2020-03-12 09:27:40 +07:00
expect(await utils.readScript('darwin.sh')).toBe(darwin);
expect(await utils.readScript('darwin.sh')).toBe(darwin);
expect(await utils.readScript('linux.sh')).toBe(linux);
expect(await utils.readScript('linux.sh')).toBe(linux);
expect(await utils.readScript('win32.ps1')).toBe(win32);
expect(await utils.readScript('win32.ps1')).toBe(win32);
2019-09-20 09:41:20 +07:00
});
it('checking writeScripts', async () => {
2019-11-24 03:34:12 +07:00
const testString = 'sudo apt-get install php';
const runner_dir: string = process.env['RUNNER_TOOL_CACHE'] || '';
const script_path: string = path.join(runner_dir, 'test.sh');
2019-10-27 07:12:49 +07:00
await utils.writeScript('test.sh', testString);
2020-11-27 01:36:27 +07:00
await fs.readFile(
script_path,
function (error: Error | null, data: Buffer) {
expect(testString).toBe(data.toString());
}
);
2019-10-27 07:12:49 +07:00
await cleanup(script_path);
2019-09-20 09:41:20 +07:00
});
it('checking extensionArray', async () => {
expect(await utils.extensionArray('a, b, php_c, php-d')).toEqual([
'a',
'b',
'c',
'd'
]);
2019-10-08 19:42:54 +07:00
expect(await utils.extensionArray('')).toEqual([]);
expect(await utils.extensionArray(' ')).toEqual([]);
2019-09-20 09:41:20 +07:00
});
it('checking INIArray', async () => {
2019-12-27 08:26:49 +07:00
expect(await utils.CSVArray('a=1, b=2, c=3')).toEqual([
2019-09-20 09:41:20 +07:00
'a=1',
'b=2',
'c=3'
]);
2019-12-27 08:26:49 +07:00
expect(await utils.CSVArray('')).toEqual([]);
expect(await utils.CSVArray(' ')).toEqual([]);
2019-09-20 09:41:20 +07:00
});
it('checking log', async () => {
2019-11-24 03:34:12 +07:00
const message = 'Test message';
let warning_log: string = await utils.log(message, 'win32', 'warning');
2019-10-17 03:11:13 +07:00
expect(warning_log).toEqual('printf "\\033[33;1m' + message + ' \\033[0m"');
warning_log = await utils.log(message, 'linux', 'warning');
2019-09-28 04:36:41 +07:00
expect(warning_log).toEqual('echo "\\033[33;1m' + message + '\\033[0m"');
warning_log = await utils.log(message, 'darwin', 'warning');
expect(warning_log).toEqual('echo "\\033[33;1m' + message + '\\033[0m"');
let error_log: string = await utils.log(message, 'win32', 'error');
2019-10-17 03:11:13 +07:00
expect(error_log).toEqual('printf "\\033[31;1m' + message + ' \\033[0m"');
error_log = await utils.log(message, 'linux', 'error');
2019-09-28 04:36:41 +07:00
expect(error_log).toEqual('echo "\\033[31;1m' + message + '\\033[0m"');
error_log = await utils.log(message, 'darwin', 'error');
expect(error_log).toEqual('echo "\\033[31;1m' + message + '\\033[0m"');
let success_log: string = await utils.log(message, 'win32', 'success');
2019-10-17 03:11:13 +07:00
expect(success_log).toEqual('printf "\\033[32;1m' + message + ' \\033[0m"');
success_log = await utils.log(message, 'linux', 'success');
2019-09-28 04:36:41 +07:00
expect(success_log).toEqual('echo "\\033[32;1m' + message + '\\033[0m"');
success_log = await utils.log(message, 'darwin', 'success');
expect(success_log).toEqual('echo "\\033[32;1m' + message + '\\033[0m"');
2019-10-17 03:11:13 +07:00
let step_log: string = await utils.stepLog(message, 'win32');
expect(step_log).toEqual('Step-Log "Test message"');
step_log = await utils.stepLog(message, 'linux');
expect(step_log).toEqual('step_log "Test message"');
step_log = await utils.stepLog(message, 'darwin');
expect(step_log).toEqual('step_log "Test message"');
step_log = await utils.stepLog(message, 'openbsd');
expect(step_log).toContain('Platform openbsd is not supported');
2019-10-17 03:11:13 +07:00
let add_log: string = await utils.addLog(
'tick',
'xdebug',
'enabled',
'win32'
);
2019-10-17 03:11:13 +07:00
expect(add_log).toEqual('Add-Log "tick" "xdebug" "enabled"');
add_log = await utils.addLog('tick', 'xdebug', 'enabled', 'linux');
expect(add_log).toEqual('add_log "tick" "xdebug" "enabled"');
add_log = await utils.addLog('tick', 'xdebug', 'enabled', 'darwin');
expect(add_log).toEqual('add_log "tick" "xdebug" "enabled"');
add_log = await utils.addLog('tick', 'xdebug', 'enabled', 'openbsd');
expect(add_log).toContain('Platform openbsd is not supported');
});
2019-09-28 10:19:11 +07:00
it('checking getExtensionPrefix', async () => {
expect(await utils.getExtensionPrefix('extensionDoesNotExist')).toEqual(
'extension'
);
expect(await utils.getExtensionPrefix('xsl')).toEqual('extension');
expect(await utils.getExtensionPrefix('xdebug')).toEqual('zend_extension');
2020-06-20 07:55:19 +07:00
expect(await utils.getExtensionPrefix('xdebug3')).toEqual('zend_extension');
2019-09-28 10:19:11 +07:00
expect(await utils.getExtensionPrefix('opcache')).toEqual('zend_extension');
});
2019-10-17 03:11:13 +07:00
it('checking suppressOutput', async () => {
expect(await utils.suppressOutput('win32')).toEqual(' >$null 2>&1');
expect(await utils.suppressOutput('linux')).toEqual(' >/dev/null 2>&1');
expect(await utils.suppressOutput('darwin')).toEqual(' >/dev/null 2>&1');
expect(await utils.suppressOutput('openbsd')).toContain(
'Platform openbsd is not supported'
2019-10-17 03:11:13 +07:00
);
});
2020-07-24 11:58:48 +07:00
it('checking getUnsupportedLog', async () => {
expect(await utils.getUnsupportedLog('ext', '5.6', 'linux')).toContain(
'add_log "$cross" "ext" "ext is not supported on PHP 5.6"'
);
});
2020-08-06 17:03:58 +07:00
it('checking getCommand', async () => {
expect(await utils.getCommand('linux', 'tool')).toBe('add_tool ');
expect(await utils.getCommand('darwin', 'tool')).toBe('add_tool ');
expect(await utils.getCommand('win32', 'tool')).toBe('Add-Tool ');
expect(await utils.getCommand('openbsd', 'tool')).toContain(
'Platform openbsd is not supported'
2020-08-06 17:03:58 +07:00
);
});
2020-07-24 11:58:48 +07:00
it('checking joins', async () => {
expect(await utils.joins('a', 'b', 'c')).toBe('a b c');
});
it('checking scriptExtension', async () => {
expect(await utils.scriptExtension('linux')).toBe('.sh');
expect(await utils.scriptExtension('darwin')).toBe('.sh');
expect(await utils.scriptExtension('win32')).toBe('.ps1');
expect(await utils.scriptExtension('openbsd')).toContain(
'Platform openbsd is not supported'
);
});
2020-08-06 17:03:58 +07:00
2020-10-04 18:33:02 +07:00
it('checking scriptTool', async () => {
expect(await utils.scriptTool('linux')).toBe('bash');
expect(await utils.scriptTool('darwin')).toBe('bash');
expect(await utils.scriptTool('win32')).toBe('pwsh');
expect(await utils.scriptTool('openbsd')).toContain(
'Platform openbsd is not supported'
);
});
2020-08-06 17:03:58 +07:00
it('checking customPackage', async () => {
const script_path: string = path.join('ext', 'pkg.sh');
expect(await utils.customPackage('pkg', 'ext', '1.2.3', 'linux')).toContain(
script_path + '\nadd_pkg 1.2.3'
);
expect(
await utils.customPackage('pdo_pkg', 'ext', '1.2.3', 'linux')
).toContain(script_path + '\nadd_pkg 1.2.3');
expect(
await utils.customPackage('pkg8', 'ext', '1.2.3', 'linux')
).toContain(script_path + '\nadd_pkg 1.2.3');
});
2019-09-28 10:19:11 +07:00
});