mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
165 lines
6.3 KiB
TypeScript
165 lines
6.3 KiB
TypeScript
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 : '';
|
|
})
|
|
}));
|
|
|
|
async function cleanup(path: string): Promise<void> {
|
|
fs.unlink(path, error => {
|
|
if (error) {
|
|
console.log(error);
|
|
}
|
|
});
|
|
}
|
|
|
|
describe('Utils tests', () => {
|
|
it('checking getInput', async () => {
|
|
process.env['test'] = 'setup-php';
|
|
process.env['undefined'] = '';
|
|
expect(await utils.getInput('test', false)).toBe('setup-php');
|
|
expect(await utils.getInput('undefined', false)).toBe('');
|
|
expect(await utils.getInput('setup-php', false)).toBe('setup-php');
|
|
expect(await utils.getInput('DoesNotExist', false)).toBe('');
|
|
});
|
|
|
|
it('checking asyncForEach', async () => {
|
|
const array: Array<string> = ['a', 'b', 'c'];
|
|
let concat = '';
|
|
await utils.asyncForEach(array, async function(str: string): Promise<void> {
|
|
concat += str;
|
|
});
|
|
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');
|
|
});
|
|
|
|
it('checking readScripts', async () => {
|
|
const darwin: string = fs.readFileSync(
|
|
path.join(__dirname, '../src/scripts/darwin.sh'),
|
|
'utf8'
|
|
);
|
|
const linux: string = fs.readFileSync(
|
|
path.join(__dirname, '../src/scripts/linux.sh'),
|
|
'utf8'
|
|
);
|
|
const win32: string = fs.readFileSync(
|
|
path.join(__dirname, '../src/scripts/win32.ps1'),
|
|
'utf8'
|
|
);
|
|
expect(await utils.readScript('darwin.sh', '7.4', 'darwin')).toBe(darwin);
|
|
expect(await utils.readScript('darwin.sh', '7.3', 'darwin')).toBe(darwin);
|
|
expect(await utils.readScript('linux.sh', '7.4', 'linux')).toBe(linux);
|
|
expect(await utils.readScript('linux.sh', '7.3', 'linux')).toBe(linux);
|
|
expect(await utils.readScript('win32.ps1', '7.4', 'win32')).toBe(win32);
|
|
expect(await utils.readScript('win32.ps1', '7.3', 'win32')).toBe(win32);
|
|
});
|
|
|
|
it('checking writeScripts', async () => {
|
|
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');
|
|
await utils.writeScript('test.sh', testString);
|
|
await fs.readFile(script_path, function(error: Error | null, data: Buffer) {
|
|
expect(testString).toBe(data.toString());
|
|
});
|
|
await cleanup(script_path);
|
|
});
|
|
|
|
it('checking extensionArray', async () => {
|
|
expect(await utils.extensionArray('a, b, php_c, php-d')).toEqual([
|
|
'a',
|
|
'b',
|
|
'c',
|
|
'd'
|
|
]);
|
|
|
|
expect(await utils.extensionArray('')).toEqual([]);
|
|
expect(await utils.extensionArray(' ')).toEqual([]);
|
|
});
|
|
|
|
it('checking INIArray', async () => {
|
|
expect(await utils.CSVArray('a=1, b=2, c=3')).toEqual([
|
|
'a=1',
|
|
'b=2',
|
|
'c=3'
|
|
]);
|
|
expect(await utils.CSVArray('')).toEqual([]);
|
|
expect(await utils.CSVArray(' ')).toEqual([]);
|
|
});
|
|
|
|
it('checking log', async () => {
|
|
const message = 'Test message';
|
|
|
|
let warning_log: string = await utils.log(message, 'win32', 'warning');
|
|
expect(warning_log).toEqual('printf "\\033[33;1m' + message + ' \\033[0m"');
|
|
warning_log = await utils.log(message, 'linux', 'warning');
|
|
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');
|
|
expect(error_log).toEqual('printf "\\033[31;1m' + message + ' \\033[0m"');
|
|
error_log = await utils.log(message, 'linux', 'error');
|
|
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');
|
|
expect(success_log).toEqual('printf "\\033[32;1m' + message + ' \\033[0m"');
|
|
success_log = await utils.log(message, 'linux', 'success');
|
|
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"');
|
|
|
|
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, 'fedora');
|
|
expect(step_log).toContain('Platform fedora is not supported');
|
|
|
|
let add_log: string = await utils.addLog(
|
|
'tick',
|
|
'xdebug',
|
|
'enabled',
|
|
'win32'
|
|
);
|
|
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', 'fedora');
|
|
expect(add_log).toContain('Platform fedora is not supported');
|
|
});
|
|
|
|
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');
|
|
expect(await utils.getExtensionPrefix('opcache')).toEqual('zend_extension');
|
|
});
|
|
|
|
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('fedora')).toContain(
|
|
'Platform fedora is not supported'
|
|
);
|
|
});
|
|
});
|