* @author Victor Dubiniuk * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see * */ namespace OC; use OCP\IConfig; use OCP\ILogger; class UpdaterTest extends \Test\TestCase { /** @var IConfig */ private $config; /** @var HTTPHelper */ private $httpHelper; /** @var ILogger */ private $logger; /** @var Updater */ private $updater; public function setUp() { parent::setUp(); $this->config = $this->getMockBuilder('\\OCP\\IConfig') ->disableOriginalConstructor() ->getMock(); $this->httpHelper = $this->getMockBuilder('\\OC\\HTTPHelper') ->disableOriginalConstructor() ->getMock(); $this->logger = $this->getMockBuilder('\\OCP\\ILogger') ->disableOriginalConstructor() ->getMock(); $this->updater = new Updater( $this->httpHelper, $this->config, $this->logger ); } /** * @param string $baseUrl * @return string */ private function buildUpdateUrl($baseUrl) { return $baseUrl . '?version='.implode('x', \OC_Util::getVersion()).'xinstalledatxlastupdatedatx'.\OC_Util::getChannel().'x'.\OC_Util::getEditionString().'x'; } /** * @return array */ public function versionCompatibilityTestData() { return [ ['1.0.0.0', '2.2.0', true], ['1.1.1.1', '2.0.0', true], ['5.0.3', '4.0.3', false], ['12.0.3', '13.4.5', true], ['1', '2', true], ['2', '2', true], ['6.0.5', '6.0.6', true], ['5.0.6', '7.0.4', false], ]; } public function testSetSimulateStepEnabled() { $this->updater->setSimulateStepEnabled(true); $this->assertSame(true, $this->invokePrivate($this->updater, 'simulateStepEnabled')); $this->updater->setSimulateStepEnabled(false); $this->assertSame(false, $this->invokePrivate($this->updater, 'simulateStepEnabled')); } public function testSetUpdateStepEnabled() { $this->updater->setUpdateStepEnabled(true); $this->assertSame(true, $this->invokePrivate($this->updater, 'updateStepEnabled')); $this->updater->setUpdateStepEnabled(false); $this->assertSame(false, $this->invokePrivate($this->updater, 'updateStepEnabled')); } public function testSetSkip3rdPartyAppsDisable() { $this->updater->setSkip3rdPartyAppsDisable(true); $this->assertSame(true, $this->invokePrivate($this->updater, 'skip3rdPartyAppsDisable')); $this->updater->setSkip3rdPartyAppsDisable(false); $this->assertSame(false, $this->invokePrivate($this->updater, 'skip3rdPartyAppsDisable')); } /** * @dataProvider versionCompatibilityTestData * * @param string $oldVersion * @param string $newVersion * @param bool $result */ public function testIsUpgradePossible($oldVersion, $newVersion, $result) { $updater = new Updater($this->httpHelper, $this->config); $this->assertSame($result, $updater->isUpgradePossible($oldVersion, $newVersion)); } public function testCheckInCache() { $expectedResult = [ 'version' => '8.0.4.2', 'versionstring' => 'ownCloud 8.0.4', 'url' => 'https://download.owncloud.org/community/owncloud-8.0.4.zip', 'web' => 'http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html', ]; $this->config ->expects($this->at(0)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue(time())); $this->config ->expects($this->at(1)) ->method('getAppValue') ->with('core', 'lastupdateResult') ->will($this->returnValue(json_encode($expectedResult))); $this->assertSame($expectedResult, $this->updater->check()); } public function testCheckWithoutUpdateUrl() { $expectedResult = [ 'version' => '8.0.4.2', 'versionstring' => 'ownCloud 8.0.4', 'url' => 'https://download.owncloud.org/community/owncloud-8.0.4.zip', 'web' => 'http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html', ]; $this->config ->expects($this->at(0)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue(0)); $this->config ->expects($this->at(1)) ->method('setAppValue') ->with('core', 'lastupdatedat', $this->isType('integer')); $this->config ->expects($this->at(3)) ->method('getAppValue') ->with('core', 'installedat') ->will($this->returnValue('installedat')); $this->config ->expects($this->at(4)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue('lastupdatedat')); $this->config ->expects($this->at(5)) ->method('setAppValue') ->with('core', 'lastupdateResult', json_encode($expectedResult)); $updateXml = ' 8.0.4.2 ownCloud 8.0.4 https://download.owncloud.org/community/owncloud-8.0.4.zip http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html '; $this->httpHelper ->expects($this->once()) ->method('getUrlContent') ->with($this->buildUpdateUrl('https://updates.owncloud.com/server/')) ->will($this->returnValue($updateXml)); $this->assertSame($expectedResult, $this->updater->check()); } public function testCheckWithInvalidXml() { $this->config ->expects($this->at(0)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue(0)); $this->config ->expects($this->at(1)) ->method('setAppValue') ->with('core', 'lastupdatedat', $this->isType('integer')); $this->config ->expects($this->at(3)) ->method('getAppValue') ->with('core', 'installedat') ->will($this->returnValue('installedat')); $this->config ->expects($this->at(4)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue('lastupdatedat')); $this->config ->expects($this->at(5)) ->method('setAppValue') ->with('core', 'lastupdateResult', 'false'); $updateXml = 'Invalid XML Response!'; $this->httpHelper ->expects($this->once()) ->method('getUrlContent') ->with($this->buildUpdateUrl('https://updates.owncloud.com/server/')) ->will($this->returnValue($updateXml)); $this->assertSame([], $this->updater->check()); } public function testCheckWithUpdateUrl() { $expectedResult = [ 'version' => '8.0.4.2', 'versionstring' => 'ownCloud 8.0.4', 'url' => 'https://download.owncloud.org/community/owncloud-8.0.4.zip', 'web' => 'http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html', ]; $this->config ->expects($this->at(0)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue(0)); $this->config ->expects($this->at(1)) ->method('setAppValue') ->with('core', 'lastupdatedat', $this->isType('integer')); $this->config ->expects($this->at(3)) ->method('getAppValue') ->with('core', 'installedat') ->will($this->returnValue('installedat')); $this->config ->expects($this->at(4)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue('lastupdatedat')); $this->config ->expects($this->at(5)) ->method('setAppValue') ->with('core', 'lastupdateResult', json_encode($expectedResult)); $updateXml = ' 8.0.4.2 ownCloud 8.0.4 https://download.owncloud.org/community/owncloud-8.0.4.zip http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html '; $this->httpHelper ->expects($this->once()) ->method('getUrlContent') ->with($this->buildUpdateUrl('https://myupdater.com/')) ->will($this->returnValue($updateXml)); $this->assertSame($expectedResult, $this->updater->check('https://myupdater.com/')); } public function testCheckWithEmptyValidXmlResponse() { $expectedResult = [ 'version' => '', 'versionstring' => '', 'url' => '', 'web' => '', ]; $this->config ->expects($this->at(0)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue(0)); $this->config ->expects($this->at(1)) ->method('setAppValue') ->with('core', 'lastupdatedat', $this->isType('integer')); $this->config ->expects($this->at(3)) ->method('getAppValue') ->with('core', 'installedat') ->will($this->returnValue('installedat')); $this->config ->expects($this->at(4)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue('lastupdatedat')); $updateXml = ' '; $this->httpHelper ->expects($this->once()) ->method('getUrlContent') ->with($this->buildUpdateUrl('https://updates.owncloud.com/server/')) ->will($this->returnValue($updateXml)); $this->assertSame($expectedResult, $this->updater->check()); } public function testCheckWithEmptyInvalidXmlResponse() { $expectedResult = []; $this->config ->expects($this->at(0)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue(0)); $this->config ->expects($this->at(1)) ->method('setAppValue') ->with('core', 'lastupdatedat', $this->isType('integer')); $this->config ->expects($this->at(3)) ->method('getAppValue') ->with('core', 'installedat') ->will($this->returnValue('installedat')); $this->config ->expects($this->at(4)) ->method('getAppValue') ->with('core', 'lastupdatedat') ->will($this->returnValue('lastupdatedat')); $this->config ->expects($this->at(5)) ->method('setAppValue') ->with('core', 'lastupdateResult', json_encode($expectedResult)); $updateXml = ''; $this->httpHelper ->expects($this->once()) ->method('getUrlContent') ->with($this->buildUpdateUrl('https://updates.owncloud.com/server/')) ->will($this->returnValue($updateXml)); $this->assertSame($expectedResult, $this->updater->check()); } }