mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 11:51:07 +07:00
7f1cfc01ec
Update Node.js dependencies Migrate eslint config to a mjs file Fix imports in tests Bump to Node.js 20.x in workflows
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import * as packagist from '../src/packagist';
|
|
import nock from 'nock';
|
|
|
|
describe('search function', () => {
|
|
const mockResponse = {
|
|
packages: {
|
|
'test-package': [
|
|
{
|
|
require: {
|
|
php: '8.0.0'
|
|
},
|
|
version: '1.0.0'
|
|
},
|
|
{
|
|
version: '2.0.0'
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
test('should return the version if matching php version is found', async () => {
|
|
nock('https://repo.packagist.org')
|
|
.get('/p2/test-package.json')
|
|
.reply(200, mockResponse);
|
|
const result = await packagist.search('test-package', '8.0');
|
|
expect(result).toBe('1.0.0');
|
|
});
|
|
|
|
test('should return null if no matching php version is found', async () => {
|
|
nock('https://repo.packagist.org')
|
|
.get('/p2/test-package.json')
|
|
.reply(200, mockResponse);
|
|
const result = await packagist.search('test-package', '5.6');
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
test('should return null if fetch fails', async () => {
|
|
nock('https://repo.packagist.org').get('/p2/test-package.json').reply(404);
|
|
const result = await packagist.search('test-package', '8.0');
|
|
expect(result).toBeNull();
|
|
});
|
|
|
|
test('should return null if the response is empty', async () => {
|
|
nock('https://repo.packagist.org')
|
|
.get('/p2/test-package.json')
|
|
.reply(200, {error: true, data: '[]'});
|
|
const result = await packagist.search('test-package', '8.0');
|
|
expect(result).toBeNull();
|
|
});
|
|
});
|