30 lines
860 B
JavaScript
30 lines
860 B
JavaScript
'use strict'
|
|
|
|
const Joi = require('joi')
|
|
const ServiceTester = require('../service-tester')
|
|
const { isPhpVersionReduction } = require('../test-validators')
|
|
|
|
const t = new ServiceTester({
|
|
id: 'php-eye',
|
|
title: 'PHP version from PHP-Eye',
|
|
})
|
|
module.exports = t
|
|
|
|
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' })
|