2014-12-01 23:47:22 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Thomas Müller
|
|
|
|
* @copyright 2014 Thomas Müller deepdiver@owncloud.com
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\App;
|
|
|
|
|
|
|
|
use OC;
|
|
|
|
use OC\App\Platform;
|
|
|
|
use OCP\IL10N;
|
|
|
|
|
|
|
|
class DependencyAnalyzer extends \PHPUnit_Framework_TestCase {
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
/** @var Platform */
|
2014-12-01 23:47:22 +03:00
|
|
|
private $platformMock;
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
/** @var IL10N */
|
2014-12-01 23:47:22 +03:00
|
|
|
private $l10nMock;
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
/** @var \OC\App\DependencyAnalyzer */
|
|
|
|
private $analyser;
|
|
|
|
|
2014-12-01 23:47:22 +03:00
|
|
|
public function setUp() {
|
|
|
|
$this->platformMock = $this->getMockBuilder('\OC\App\Platform')
|
2014-12-02 01:43:27 +03:00
|
|
|
->disableOriginalConstructor()
|
2014-12-01 23:47:22 +03:00
|
|
|
->getMock();
|
|
|
|
$this->platformMock->expects($this->any())
|
|
|
|
->method('getPhpVersion')
|
|
|
|
->will( $this->returnValue('5.4.3'));
|
2014-12-02 01:43:27 +03:00
|
|
|
$this->platformMock->expects($this->any())
|
|
|
|
->method('getDatabase')
|
|
|
|
->will( $this->returnValue('mysql'));
|
2014-12-04 19:04:35 +03:00
|
|
|
$this->platformMock->expects($this->any())
|
|
|
|
->method('getOS')
|
|
|
|
->will( $this->returnValue('Linux'));
|
|
|
|
$this->platformMock->expects($this->any())
|
|
|
|
->method('isCommandKnown')
|
|
|
|
->will( $this->returnCallback(function($command) {
|
|
|
|
return ($command === 'grep');
|
|
|
|
}));
|
2014-12-05 15:52:51 +03:00
|
|
|
$this->platformMock->expects($this->any())
|
|
|
|
->method('getLibraryVersion')
|
|
|
|
->will( $this->returnCallback(function($lib) {
|
|
|
|
if ($lib === 'curl') {
|
|
|
|
return "2.3.4";
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}));
|
2014-12-05 17:28:33 +03:00
|
|
|
$this->platformMock->expects($this->any())
|
|
|
|
->method('getOcVersion')
|
2015-02-26 13:23:08 +03:00
|
|
|
->will( $this->returnValue('8.0.2'));
|
2014-12-04 19:04:35 +03:00
|
|
|
|
2014-12-01 23:47:22 +03:00
|
|
|
$this->l10nMock = $this->getMockBuilder('\OCP\IL10N')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$this->l10nMock->expects($this->any())
|
|
|
|
->method('t')
|
|
|
|
->will($this->returnCallback(function($text, $parameters = array()) {
|
|
|
|
return vsprintf($text, $parameters);
|
|
|
|
}));
|
2014-12-12 14:34:53 +03:00
|
|
|
|
|
|
|
$this->analyser = new \OC\App\DependencyAnalyzer($this->platformMock, $this->l10nMock);
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providesPhpVersion
|
2015-07-02 17:34:18 +03:00
|
|
|
*
|
|
|
|
* @param string $expectedMissing
|
|
|
|
* @param string $minVersion
|
|
|
|
* @param string $maxVersion
|
2014-12-01 23:47:22 +03:00
|
|
|
*/
|
|
|
|
public function testPhpVersion($expectedMissing, $minVersion, $maxVersion) {
|
|
|
|
$app = array(
|
|
|
|
'dependencies' => array(
|
|
|
|
'php' => array()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if (!is_null($minVersion)) {
|
2014-12-02 13:49:31 +03:00
|
|
|
$app['dependencies']['php']['@attributes']['min-version'] = $minVersion;
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|
|
|
|
if (!is_null($maxVersion)) {
|
2014-12-02 13:49:31 +03:00
|
|
|
$app['dependencies']['php']['@attributes']['max-version'] = $maxVersion;
|
2014-12-01 23:47:22 +03:00
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing = $this->analyser->analyze($app);
|
2014-12-01 23:47:22 +03:00
|
|
|
|
|
|
|
$this->assertTrue(is_array($missing));
|
|
|
|
$this->assertEquals($expectedMissing, $missing);
|
|
|
|
}
|
|
|
|
|
2014-12-02 01:43:27 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider providesDatabases
|
|
|
|
*/
|
|
|
|
public function testDatabases($expectedMissing, $databases) {
|
|
|
|
$app = array(
|
|
|
|
'dependencies' => array(
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if (!is_null($databases)) {
|
2014-12-02 17:14:48 +03:00
|
|
|
$app['dependencies']['database'] = $databases;
|
2014-12-02 01:43:27 +03:00
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing = $this->analyser->analyze($app);
|
2014-12-02 01:43:27 +03:00
|
|
|
|
|
|
|
$this->assertTrue(is_array($missing));
|
|
|
|
$this->assertEquals($expectedMissing, $missing);
|
|
|
|
}
|
|
|
|
|
2014-12-04 19:04:35 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider providesCommands
|
2015-07-02 17:34:18 +03:00
|
|
|
*
|
|
|
|
* @param string $expectedMissing
|
|
|
|
* @param string|null $commands
|
2014-12-04 19:04:35 +03:00
|
|
|
*/
|
|
|
|
public function testCommand($expectedMissing, $commands) {
|
|
|
|
$app = array(
|
|
|
|
'dependencies' => array(
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if (!is_null($commands)) {
|
|
|
|
$app['dependencies']['command'] = $commands;
|
|
|
|
}
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing = $this->analyser->analyze($app);
|
2014-12-04 19:04:35 +03:00
|
|
|
|
|
|
|
$this->assertTrue(is_array($missing));
|
|
|
|
$this->assertEquals($expectedMissing, $missing);
|
|
|
|
}
|
|
|
|
|
2014-12-05 15:52:51 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider providesLibs
|
|
|
|
* @param $expectedMissing
|
|
|
|
* @param $libs
|
|
|
|
*/
|
|
|
|
function testLibs($expectedMissing, $libs) {
|
|
|
|
$app = array(
|
|
|
|
'dependencies' => array(
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if (!is_null($libs)) {
|
|
|
|
$app['dependencies']['lib'] = $libs;
|
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing = $this->analyser->analyze($app);
|
2014-12-05 15:52:51 +03:00
|
|
|
|
|
|
|
$this->assertTrue(is_array($missing));
|
|
|
|
$this->assertEquals($expectedMissing, $missing);
|
|
|
|
}
|
|
|
|
|
2014-12-05 16:51:41 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider providesOS
|
|
|
|
* @param $expectedMissing
|
|
|
|
* @param $oss
|
|
|
|
*/
|
|
|
|
function testOS($expectedMissing, $oss) {
|
|
|
|
$app = array(
|
|
|
|
'dependencies' => array()
|
|
|
|
);
|
|
|
|
if (!is_null($oss)) {
|
|
|
|
$app['dependencies']['os'] = $oss;
|
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing = $this->analyser->analyze($app);
|
2014-12-05 16:51:41 +03:00
|
|
|
|
|
|
|
$this->assertTrue(is_array($missing));
|
|
|
|
$this->assertEquals($expectedMissing, $missing);
|
|
|
|
}
|
|
|
|
|
2014-12-05 17:28:33 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider providesOC
|
|
|
|
* @param $expectedMissing
|
|
|
|
* @param $oc
|
|
|
|
*/
|
|
|
|
function testOC($expectedMissing, $oc) {
|
|
|
|
$app = array(
|
|
|
|
'dependencies' => array()
|
|
|
|
);
|
|
|
|
if (!is_null($oc)) {
|
2014-12-11 17:37:45 +03:00
|
|
|
$app['dependencies']['owncloud'] = $oc;
|
2014-12-05 17:28:33 +03:00
|
|
|
}
|
|
|
|
|
2014-12-12 14:34:53 +03:00
|
|
|
$missing = $this->analyser->analyze($app);
|
2014-12-05 17:28:33 +03:00
|
|
|
|
|
|
|
$this->assertTrue(is_array($missing));
|
|
|
|
$this->assertEquals($expectedMissing, $missing);
|
|
|
|
}
|
|
|
|
|
2015-07-02 17:34:18 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-12-05 17:28:33 +03:00
|
|
|
function providesOC() {
|
|
|
|
return array(
|
|
|
|
// no version -> no missing dependency
|
|
|
|
array(array(), null),
|
2015-02-26 13:23:08 +03:00
|
|
|
array(array(), array('@attributes' => array('min-version' => '8', 'max-version' => '8'))),
|
|
|
|
array(array(), array('@attributes' => array('min-version' => '8.0', 'max-version' => '8.0'))),
|
|
|
|
array(array(), array('@attributes' => array('min-version' => '8.0.2', 'max-version' => '8.0.2'))),
|
|
|
|
array(array('ownCloud 8.0.3 or higher is required.'), array('@attributes' => array('min-version' => '8.0.3'))),
|
2014-12-05 17:28:33 +03:00
|
|
|
array(array('ownCloud 9 or higher is required.'), array('@attributes' => array('min-version' => '9'))),
|
2015-07-03 11:28:37 +03:00
|
|
|
[['ownCloud 8.0.1 or lower is required.'], ['@attributes' => ['max-version' => '8.0.1']]],
|
2014-12-05 17:28:33 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-02 17:34:18 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-12-05 16:51:41 +03:00
|
|
|
function providesOS() {
|
|
|
|
return array(
|
|
|
|
array(array(), null),
|
|
|
|
array(array(), array()),
|
2014-12-11 17:37:45 +03:00
|
|
|
array(array('Following platforms are supported: ANDROID'), 'ANDROID'),
|
2014-12-05 16:51:41 +03:00
|
|
|
array(array('Following platforms are supported: WINNT'), array('WINNT'))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-02 17:34:18 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-12-05 15:52:51 +03:00
|
|
|
function providesLibs() {
|
|
|
|
return array(
|
|
|
|
// we expect curl to exist
|
2014-12-11 17:37:45 +03:00
|
|
|
array(array(), 'curl'),
|
2014-12-05 15:52:51 +03:00
|
|
|
// we expect abcde to exist
|
|
|
|
array(array('The library abcde is not available.'), array('abcde')),
|
|
|
|
// curl in version 100.0 does not exist
|
|
|
|
array(array('Library curl with a version higher than 100.0 is required - available version 2.3.4.'),
|
|
|
|
array(array('@attributes' => array('min-version' => '100.0'), '@value' => 'curl'))),
|
|
|
|
// curl in version 100.0 does not exist
|
|
|
|
array(array('Library curl with a version lower than 1.0.0 is required - available version 2.3.4.'),
|
2015-02-26 13:23:08 +03:00
|
|
|
array(array('@attributes' => array('max-version' => '1.0.0'), '@value' => 'curl'))),
|
|
|
|
array(array('Library curl with a version lower than 2.3.3 is required - available version 2.3.4.'),
|
|
|
|
array(array('@attributes' => array('max-version' => '2.3.3'), '@value' => 'curl'))),
|
|
|
|
array(array('Library curl with a version higher than 2.3.5 is required - available version 2.3.4.'),
|
|
|
|
array(array('@attributes' => array('min-version' => '2.3.5'), '@value' => 'curl'))),
|
|
|
|
array(array(),
|
|
|
|
array(array('@attributes' => array('min-version' => '2.3.4', 'max-version' => '2.3.4'), '@value' => 'curl'))),
|
|
|
|
array(array(),
|
|
|
|
array(array('@attributes' => array('min-version' => '2.3', 'max-version' => '2.3'), '@value' => 'curl'))),
|
|
|
|
array(array(),
|
|
|
|
array(array('@attributes' => array('min-version' => '2', 'max-version' => '2'), '@value' => 'curl'))),
|
2014-12-05 15:52:51 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-02 17:34:18 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-12-04 19:04:35 +03:00
|
|
|
function providesCommands() {
|
|
|
|
return array(
|
|
|
|
array(array(), null),
|
|
|
|
// grep is known on linux
|
|
|
|
array(array(), array(array('@attributes' => array('os' => 'Linux'), '@value' => 'grep'))),
|
|
|
|
// grepp is not known on linux
|
|
|
|
array(array('The command line tool grepp could not be found'), array(array('@attributes' => array('os' => 'Linux'), '@value' => 'grepp'))),
|
|
|
|
// we don't care about tools on Windows - we are on Linux
|
|
|
|
array(array(), array(array('@attributes' => array('os' => 'Windows'), '@value' => 'grepp'))),
|
|
|
|
// grep is known on all systems
|
2014-12-11 17:37:45 +03:00
|
|
|
array(array(), 'grep'),
|
2014-12-04 19:04:35 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-02 17:34:18 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-12-02 01:43:27 +03:00
|
|
|
function providesDatabases() {
|
|
|
|
return array(
|
|
|
|
// non BC - in case on databases are defined -> all are supported
|
|
|
|
array(array(), null),
|
|
|
|
array(array(), array()),
|
2014-12-11 17:37:45 +03:00
|
|
|
array(array('Following databases are supported: mongodb'), 'mongodb'),
|
2014-12-02 13:49:31 +03:00
|
|
|
array(array('Following databases are supported: sqlite, postgres'), array('sqlite', array('@value' => 'postgres'))),
|
2014-12-02 01:43:27 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-02 17:34:18 +03:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-12-01 23:47:22 +03:00
|
|
|
function providesPhpVersion() {
|
|
|
|
return array(
|
|
|
|
array(array(), null, null),
|
|
|
|
array(array(), '5.4', null),
|
|
|
|
array(array(), null, '5.5'),
|
|
|
|
array(array(), '5.4', '5.5'),
|
|
|
|
array(array('PHP 5.4.4 or higher is required.'), '5.4.4', null),
|
2014-12-05 15:52:51 +03:00
|
|
|
array(array('PHP with a version lower than 5.4.2 is required.'), null, '5.4.2'),
|
2015-02-26 13:23:08 +03:00
|
|
|
array(array(), '5.4', '5.4'),
|
2014-12-01 23:47:22 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|