Continue to implement #2698: - Add `core/base-service/index.js` (but hold off on moving the things it imports) - Add shortcuts in `services/index.js` for Base*Service, errors, and deprecatedService. This file will be streamlined later to avoid cluttering it with rarely used bits. - Apply consistent ordering of imports and use of `module.exports` in testers. - Remove some renaming of imports. - Remove obsolete tests here and there.
29 lines
849 B
JavaScript
29 lines
849 B
JavaScript
'use strict'
|
|
|
|
const Joi = require('joi')
|
|
const { ServiceTester } = require('..')
|
|
const { isPhpVersionReduction } = require('../test-validators')
|
|
|
|
const t = (module.exports = new ServiceTester({
|
|
id: 'php-eye',
|
|
title: 'PHP version from PHP-Eye',
|
|
}))
|
|
|
|
t.create('gets the package version of symfony')
|
|
.get('/symfony/symfony.json')
|
|
.expectJSONTypes(
|
|
Joi.object().keys({ name: 'php tested', value: isPhpVersionReduction })
|
|
)
|
|
|
|
t.create('gets the package version of symfony 2.8')
|
|
.get('/symfony/symfony/v2.8.0.json')
|
|
.expectJSON({ name: 'php tested', value: '5.3 - 7.0, HHVM' })
|
|
|
|
t.create('gets the package version of yii')
|
|
.get('/yiisoft/yii.json')
|
|
.expectJSON({ name: 'php tested', value: '5.3 - 7.1' })
|
|
|
|
t.create('invalid package name')
|
|
.get('/frodo/is-not-a-package.json')
|
|
.expectJSON({ name: 'php tested', value: 'invalid' })
|