123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- <?php
- /**
- * @author Thomas Müller
- * @author Lukas Reschke
- * @copyright 2014 Thomas Müller deepdiver@owncloud.com
- * @copyright 2016 Lukas Reschke <lukas@statuscode.ch>
- *
- * See the COPYING-README file.
- */
- namespace Test\App;
- use OC\App\DependencyAnalyzer;
- use OC\App\Platform;
- use OCP\IL10N;
- use Test\TestCase;
- class DependencyAnalyzerTest extends TestCase {
- /** @var Platform|\PHPUnit\Framework\MockObject\MockObject */
- private $platformMock;
- /** @var IL10N */
- private $l10nMock;
- /** @var DependencyAnalyzer */
- private $analyser;
- protected function setUp(): void {
- $this->platformMock = $this->getMockBuilder(Platform::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->platformMock->expects($this->any())
- ->method('getPhpVersion')
- ->willReturn('5.4.3');
- $this->platformMock->expects($this->any())
- ->method('getIntSize')
- ->willReturn(4);
- $this->platformMock->expects($this->any())
- ->method('getDatabase')
- ->willReturn('mysql');
- $this->platformMock->expects($this->any())
- ->method('getOS')
- ->willReturn('Linux');
- $this->platformMock->expects($this->any())
- ->method('isCommandKnown')
- ->willReturnCallback(function ($command) {
- return ($command === 'grep');
- });
- $this->platformMock->expects($this->any())
- ->method('getLibraryVersion')
- ->willReturnCallback(function ($lib) {
- if ($lib === 'curl') {
- return "2.3.4";
- }
- return null;
- });
- $this->platformMock->expects($this->any())
- ->method('getOcVersion')
- ->willReturn('8.0.2');
- $this->l10nMock = $this->getMockBuilder(IL10N::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->l10nMock->expects($this->any())
- ->method('t')
- ->willReturnCallback(function ($text, $parameters = []) {
- return vsprintf($text, $parameters);
- });
- $this->analyser = new DependencyAnalyzer($this->platformMock, $this->l10nMock);
- }
- /**
- * @dataProvider providesPhpVersion
- *
- * @param string $expectedMissing
- * @param string $minVersion
- * @param string $maxVersion
- * @param string $intSize
- */
- public function testPhpVersion($expectedMissing, $minVersion, $maxVersion, $intSize) {
- $app = [
- 'dependencies' => [
- 'php' => []
- ]
- ];
- if (!is_null($minVersion)) {
- $app['dependencies']['php']['@attributes']['min-version'] = $minVersion;
- }
- if (!is_null($maxVersion)) {
- $app['dependencies']['php']['@attributes']['max-version'] = $maxVersion;
- }
- if (!is_null($intSize)) {
- $app['dependencies']['php']['@attributes']['min-int-size'] = $intSize;
- }
- $missing = $this->analyser->analyze($app);
- $this->assertTrue(is_array($missing));
- $this->assertEquals($expectedMissing, $missing);
- }
- /**
- * @dataProvider providesDatabases
- * @param $expectedMissing
- * @param $databases
- */
- public function testDatabases($expectedMissing, $databases) {
- $app = [
- 'dependencies' => [
- ]
- ];
- if (!is_null($databases)) {
- $app['dependencies']['database'] = $databases;
- }
- $missing = $this->analyser->analyze($app);
- $this->assertTrue(is_array($missing));
- $this->assertEquals($expectedMissing, $missing);
- }
- /**
- * @dataProvider providesCommands
- *
- * @param string $expectedMissing
- * @param string|null $commands
- */
- public function testCommand($expectedMissing, $commands) {
- $app = [
- 'dependencies' => [
- ]
- ];
- if (!is_null($commands)) {
- $app['dependencies']['command'] = $commands;
- }
- $missing = $this->analyser->analyze($app);
- $this->assertTrue(is_array($missing));
- $this->assertEquals($expectedMissing, $missing);
- }
- /**
- * @dataProvider providesLibs
- * @param $expectedMissing
- * @param $libs
- */
- public function testLibs($expectedMissing, $libs) {
- $app = [
- 'dependencies' => [
- ]
- ];
- if (!is_null($libs)) {
- $app['dependencies']['lib'] = $libs;
- }
- $missing = $this->analyser->analyze($app);
- $this->assertTrue(is_array($missing));
- $this->assertEquals($expectedMissing, $missing);
- }
- /**
- * @dataProvider providesOS
- * @param $expectedMissing
- * @param $oss
- */
- public function testOS($expectedMissing, $oss) {
- $app = [
- 'dependencies' => []
- ];
- if (!is_null($oss)) {
- $app['dependencies']['os'] = $oss;
- }
- $missing = $this->analyser->analyze($app);
- $this->assertTrue(is_array($missing));
- $this->assertEquals($expectedMissing, $missing);
- }
- /**
- * @dataProvider providesOC
- * @param $expectedMissing
- * @param $oc
- */
- public function testOC($expectedMissing, $oc) {
- $app = [
- 'dependencies' => []
- ];
- if (!is_null($oc)) {
- $app['dependencies'] = $oc;
- }
- $missing = $this->analyser->analyze($app);
- $this->assertTrue(is_array($missing));
- $this->assertEquals($expectedMissing, $missing);
- }
- /**
- * @return array
- */
- public function providesOC() {
- return [
- // no version -> no missing dependency
- [
- [],
- null,
- ],
- [
- [],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '8',
- 'max-version' => '8',
- ],
- ],
- ],
- ],
- [
- [],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '8.0',
- 'max-version' => '8.0',
- ],
- ],
- ],
- ],
- [
- [],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '8.0.2',
- 'max-version' => '8.0.2'
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 8.0.3 or higher is required.',
- ],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '8.0.3'
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 9 or higher is required.',
- ],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '9'
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 10 or higher is required.',
- ],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '10'
- ],
- ],
- 'owncloud' => [
- '@attributes' => [
- 'min-version' => '9'
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 10 or higher is required.',
- ],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '9.1',
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 9.2 or higher is required.',
- ],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '9.2',
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 11 or higher is required.',
- ],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'min-version' => '11',
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 8.0.1 or lower is required.',
- ],
- [
- 'nextcloud' => [
- '@attributes' => [
- 'max-version' => '8.0.1',
- ],
- ],
- ],
- ],
- [
- [],
- [
- 'owncloud' => [
- '@attributes' => [
- 'min-version' => '8',
- 'max-version' => '8',
- ],
- ],
- ],
- ],
- [
- [],
- [
- 'owncloud' => [
- '@attributes' => [
- 'min-version' => '8.0',
- 'max-version' => '8.0',
- ],
- ],
- ],
- ],
- [
- [],
- [
- 'owncloud' => [
- '@attributes' => [
- 'min-version' => '8.0.2',
- 'max-version' => '8.0.2'
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 8.0.3 or higher is required.',
- ],
- [
- 'owncloud' => [
- '@attributes' => [
- 'min-version' => '8.0.3'
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 9 or higher is required.',
- ],
- [
- 'owncloud' => [
- '@attributes' => [
- 'min-version' => '9'
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 10 or higher is required.',
- ],
- [
- 'owncloud' => [
- '@attributes' => [
- 'min-version' => '9.1',
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 9.2 or higher is required.',
- ],
- [
- 'owncloud' => [
- '@attributes' => [
- 'min-version' => '9.2',
- ],
- ],
- ],
- ],
- [
- [
- 'Server version 8.0.1 or lower is required.',
- ],
- [
- 'owncloud' => [
- '@attributes' => [
- 'max-version' => '8.0.1',
- ],
- ],
- ],
- ],
- ];
- }
- /**
- * @return array
- */
- public function providesOS() {
- return [
- [[], null],
- [[], []],
- [['The following platforms are supported: ANDROID'], 'ANDROID'],
- [['The following platforms are supported: WINNT'], ['WINNT']]
- ];
- }
- /**
- * @return array
- */
- public function providesLibs() {
- return [
- // we expect curl to exist
- [[], 'curl'],
- // we expect abcde to exist
- [['The library abcde is not available.'], ['abcde']],
- // curl in version 100.0 does not exist
- [['Library curl with a version higher than 100.0 is required - available version 2.3.4.'],
- [['@attributes' => ['min-version' => '100.0'], '@value' => 'curl']]],
- // curl in version 100.0 does not exist
- [['Library curl with a version lower than 1.0.0 is required - available version 2.3.4.'],
- [['@attributes' => ['max-version' => '1.0.0'], '@value' => 'curl']]],
- [['Library curl with a version lower than 2.3.3 is required - available version 2.3.4.'],
- [['@attributes' => ['max-version' => '2.3.3'], '@value' => 'curl']]],
- [['Library curl with a version higher than 2.3.5 is required - available version 2.3.4.'],
- [['@attributes' => ['min-version' => '2.3.5'], '@value' => 'curl']]],
- [[],
- [['@attributes' => ['min-version' => '2.3.4', 'max-version' => '2.3.4'], '@value' => 'curl']]],
- [[],
- [['@attributes' => ['min-version' => '2.3', 'max-version' => '2.3'], '@value' => 'curl']]],
- [[],
- [['@attributes' => ['min-version' => '2', 'max-version' => '2'], '@value' => 'curl']]],
- [[],
- ['@attributes' => ['min-version' => '2', 'max-version' => '2'], '@value' => 'curl']],
- ];
- }
- /**
- * @return array
- */
- public function providesCommands() {
- return [
- [[], null],
- // grep is known on linux
- [[], [['@attributes' => ['os' => 'Linux'], '@value' => 'grep']]],
- // grepp is not known on linux
- [['The command line tool grepp could not be found'], [['@attributes' => ['os' => 'Linux'], '@value' => 'grepp']]],
- // we don't care about tools on Windows - we are on Linux
- [[], [['@attributes' => ['os' => 'Windows'], '@value' => 'grepp']]],
- // grep is known on all systems
- [[], 'grep'],
- [[], ['@attributes' => ['os' => 'Linux'], '@value' => 'grep']],
- ];
- }
- /**
- * @return array
- */
- public function providesDatabases() {
- return [
- // non BC - in case on databases are defined -> all are supported
- [[], null],
- [[], []],
- [['The following databases are supported: mongodb'], 'mongodb'],
- [['The following databases are supported: sqlite, postgres'], ['sqlite', ['@value' => 'postgres']]],
- ];
- }
- /**
- * @return array
- */
- public function providesPhpVersion() {
- return [
- [[], null, null, null],
- [[], '5.4', null, null],
- [[], null, '5.5', null],
- [[], '5.4', '5.5', null],
- [['PHP 5.4.4 or higher is required.'], '5.4.4', null, null],
- [['PHP with a version lower than 5.4.2 is required.'], null, '5.4.2', null],
- [['64bit or higher PHP required.'], null, null, 64],
- [[], '5.4', '5.4', null],
- ];
- }
- }
|