mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-26 13:23:05 +07:00
79 lines
3.0 KiB
TypeScript
79 lines
3.0 KiB
TypeScript
import * as tools from '../src/tools';
|
|
|
|
describe('Tools tests', () => {
|
|
it('checking getToolCommand', async () => {
|
|
expect(await tools.getToolCommand('linux')).toBe('add_tool ');
|
|
expect(await tools.getToolCommand('darwin')).toBe('add_tool ');
|
|
expect(await tools.getToolCommand('win32')).toBe('Add-Tool ');
|
|
expect(await tools.getToolCommand('fedora')).toContain(
|
|
'Platform fedora is not supported'
|
|
);
|
|
});
|
|
|
|
it('checking getPECLCommand', async () => {
|
|
expect(await tools.getPECLCommand('linux')).toBe('add_pecl ');
|
|
expect(await tools.getPECLCommand('darwin')).toBe('add_pecl ');
|
|
expect(await tools.getPECLCommand('win32')).toBe('Add-PECL ');
|
|
expect(await tools.getPECLCommand('fedora')).toContain(
|
|
'Platform fedora is not supported'
|
|
);
|
|
});
|
|
|
|
it('checking addTools', async () => {
|
|
let script: string = await tools.addTools(
|
|
'php-cs-fixer, phpstan, phpunit, pecl, phinx',
|
|
'linux'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://github.com/composer/composer/releases/latest/download/composer.phar composer'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/latest/download/php-cs-fixer.phar php-cs-fixer'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://github.com/phpstan/phpstan/releases/latest/download/phpstan.phar phpstan'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://phar.phpunit.de/phpunit.phar phpunit'
|
|
);
|
|
expect(script).toContain('add_pecl');
|
|
expect(script).toContain('composer global require robmorgan/phinx');
|
|
|
|
script = await tools.addTools(
|
|
'phpcs, phpcbf, phpcpd, phpmd, psalm',
|
|
'darwin'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://github.com/composer/composer/releases/latest/download/composer.phar composer'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://github.com/squizlabs/PHP_CodeSniffer/releases/latest/download/phpcs.phar phpcs'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://github.com/squizlabs/PHP_CodeSniffer/releases/latest/download/phpcbf.phar phpcbf'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://github.com/sebastianbergmann/phpcpd/releases/latest/download/phpcpd.phar phpcpd'
|
|
);
|
|
expect(script).toContain(
|
|
'add_tool https://github.com/phpmd/phpmd/releases/latest/download/phpmd.phar phpmd'
|
|
);
|
|
expect(script).toContain(
|
|
'https://github.com/vimeo/psalm/releases/latest/download/psalm.phar psalm'
|
|
);
|
|
|
|
script = await tools.addTools(
|
|
'codeception, deployer, prestissimo, phpmd, does_not_exit',
|
|
'win32'
|
|
);
|
|
expect(script).toContain(
|
|
'Add-Tool https://github.com/composer/composer/releases/latest/download/composer.phar composer'
|
|
);
|
|
expect(script).toContain(
|
|
'Add-Tool https://deployer.org/deployer.phar deployer'
|
|
);
|
|
expect(script).toContain('composer global require hirak/prestissimo');
|
|
expect(script).toContain('Tool does_not_exit is not supported');
|
|
});
|
|
});
|