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.
29 lines
856 B
JavaScript
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' })
|