Files
shields/services/php-eye/php-eye-php-version.tester.js
Caleb Cartwright 855c9cd261 Remove dev dep imports in production code (#2937)
Fixes #2876 with @paulmelnikow's suggestion 

Moved imports of `ServiceTester` and `createServiceTester` to a separate file so that dev dependencies are not imported by service classes.
2019-02-05 21:51:55 -05:00

29 lines
856 B
JavaScript

'use strict'
const Joi = require('joi')
const { ServiceTester } = require('../tester')
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' })