Skip to content
Snippets Groups Projects
Commit 04fe9e05 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Use new updater URL + add unit tests

Uses the new updater url "https://updates.owncloud.com/server/"
parent 4d565a84
Branches
No related tags found
No related merge requests found
...@@ -74,7 +74,9 @@ class Updater extends BasicEmitter { ...@@ -74,7 +74,9 @@ class Updater extends BasicEmitter {
* @param IConfig $config * @param IConfig $config
* @param ILogger $log * @param ILogger $log
*/ */
public function __construct(HTTPHelper $httpHelper, IConfig $config, ILogger $log = null) { public function __construct(HTTPHelper $httpHelper,
IConfig $config,
ILogger $log = null) {
$this->httpHelper = $httpHelper; $this->httpHelper = $httpHelper;
$this->log = $log; $this->log = $log;
$this->config = $config; $this->config = $config;
...@@ -127,12 +129,12 @@ class Updater extends BasicEmitter { ...@@ -127,12 +129,12 @@ class Updater extends BasicEmitter {
} }
if (is_null($updaterUrl)) { if (is_null($updaterUrl)) {
$updaterUrl = 'https://apps.owncloud.com/updater.php'; $updaterUrl = 'https://updates.owncloud.com/server/';
} }
$this->config->setAppValue('core', 'lastupdatedat', time()); $this->config->setAppValue('core', 'lastupdatedat', time());
if ($this->config->getAppValue('core', 'installedat', '') == '') { if ($this->config->getAppValue('core', 'installedat', '') === '') {
$this->config->setAppValue('core', 'installedat', microtime(true)); $this->config->setAppValue('core', 'installedat', microtime(true));
} }
...@@ -147,22 +149,20 @@ class Updater extends BasicEmitter { ...@@ -147,22 +149,20 @@ class Updater extends BasicEmitter {
//fetch xml data from updater //fetch xml data from updater
$url = $updaterUrl . '?version=' . $versionString; $url = $updaterUrl . '?version=' . $versionString;
// set a sensible timeout of 10 sec to stay responsive even if the update server is down. $tmp = [];
$tmp = array();
$xml = $this->httpHelper->getUrlContent($url); $xml = $this->httpHelper->getUrlContent($url);
if ($xml) { if ($xml) {
$loadEntities = libxml_disable_entity_loader(true); $loadEntities = libxml_disable_entity_loader(true);
$data = @simplexml_load_string($xml); $data = @simplexml_load_string($xml);
libxml_disable_entity_loader($loadEntities); libxml_disable_entity_loader($loadEntities);
if ($data !== false) { if ($data !== false) {
$tmp['version'] = $data->version; $tmp['version'] = (string)$data->version;
$tmp['versionstring'] = $data->versionstring; $tmp['versionstring'] = (string)$data->versionstring;
$tmp['url'] = $data->url; $tmp['url'] = (string)$data->url;
$tmp['web'] = $data->web; $tmp['web'] = (string)$data->web;
} }
} else { } else {
$data = array(); $data = [];
} }
// Cache the result // Cache the result
...@@ -360,7 +360,6 @@ class Updater extends BasicEmitter { ...@@ -360,7 +360,6 @@ class Updater extends BasicEmitter {
include \OC_App::getAppPath($appId) . '/appinfo/preupdate.php'; include \OC_App::getAppPath($appId) . '/appinfo/preupdate.php';
} }
/** /**
* upgrades all apps within a major ownCloud upgrade. Also loads "priority" * upgrades all apps within a major ownCloud upgrade. Also loads "priority"
* (types authentication, filesystem, logging, in that order) afterwards. * (types authentication, filesystem, logging, in that order) afterwards.
...@@ -411,6 +410,9 @@ class Updater extends BasicEmitter { ...@@ -411,6 +410,9 @@ class Updater extends BasicEmitter {
* ownCloud version. disable them if not. * ownCloud version. disable them if not.
* This is important if you upgrade ownCloud and have non ported 3rd * This is important if you upgrade ownCloud and have non ported 3rd
* party apps installed. * party apps installed.
*
* @return array
* @throws \Exception
*/ */
private function checkAppsRequirements() { private function checkAppsRequirements() {
$isCoreUpgrade = $this->isCodeUpgrade(); $isCoreUpgrade = $this->isCodeUpgrade();
...@@ -447,6 +449,9 @@ class Updater extends BasicEmitter { ...@@ -447,6 +449,9 @@ class Updater extends BasicEmitter {
return $disabledApps; return $disabledApps;
} }
/**
* @return bool
*/
private function isCodeUpgrade() { private function isCodeUpgrade() {
$installedVersion = $this->config->getSystemValue('version', '0.0.0'); $installedVersion = $this->config->getSystemValue('version', '0.0.0');
$currentVersion = implode('.', OC_Util::getVersion()); $currentVersion = implode('.', OC_Util::getVersion());
...@@ -456,7 +461,11 @@ class Updater extends BasicEmitter { ...@@ -456,7 +461,11 @@ class Updater extends BasicEmitter {
return false; return false;
} }
private function upgradeAppStoreApps($disabledApps) { /**
* @param array $disabledApps
* @throws \Exception
*/
private function upgradeAppStoreApps(array $disabledApps) {
foreach($disabledApps as $app) { foreach($disabledApps as $app) {
if (OC_Installer::isUpdateAvailable($app)) { if (OC_Installer::isUpdateAvailable($app)) {
$ocsId = \OC::$server->getConfig()->getAppValue($app, 'ocsid', ''); $ocsId = \OC::$server->getConfig()->getAppValue($app, 'ocsid', '');
......
<?php <?php
/** /**
* Copyright (c) 2014 Lukas Reschke <lukas@owncloud.com> * @author Lukas Reschke <lukas@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or * @author Victor Dubiniuk <dubiniuk@owncloud.com>
* later. *
* See the COPYING-README file. * @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 <http://www.gnu.org/licenses/>
*
*/ */
namespace OC; namespace OC;
use OCP\IConfig;
use OCP\ILogger;
class UpdaterTest extends \Test\TestCase { class UpdaterTest extends \Test\TestCase {
/** @var IConfig */
private $config;
/** @var HTTPHelper */
private $httpHelper;
/** @var ILogger */
private $logger;
/** @var Updater */
private $updater;
public function versionCompatibilityTestData() { public function setUp() {
return array( parent::setUp();
array('1.0.0.0', '2.2.0', true), $this->config = $this->getMockBuilder('\\OCP\\IConfig')
array('1.1.1.1', '2.0.0', true), ->disableOriginalConstructor()
array('5.0.3', '4.0.3', false), ->getMock();
array('12.0.3', '13.4.5', true), $this->httpHelper = $this->getMockBuilder('\\OC\\HTTPHelper')
array('1', '2', true), ->disableOriginalConstructor()
array('2', '2', true), ->getMock();
array('6.0.5', '6.0.6', true), $this->logger = $this->getMockBuilder('\\OCP\\ILogger')
array('5.0.6', '7.0.4', false) ->disableOriginalConstructor()
->getMock();
$this->updater = new Updater(
$this->httpHelper,
$this->config,
$this->logger
); );
} }
/**
* @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 * @dataProvider versionCompatibilityTestData
*
* @param string $oldVersion
* @param string $newVersion
* @param bool $result
*/ */
public function testIsUpgradePossible($oldVersion, $newVersion, $result) { public function testIsUpgradePossible($oldVersion, $newVersion, $result) {
$updater = new Updater(\OC::$server->getHTTPHelper(), \OC::$server->getConfig()); $updater = new Updater($this->httpHelper, $this->config);
$this->assertSame($result, $updater->isUpgradePossible($oldVersion, $newVersion)); $this->assertSame($result, $updater->isUpgradePossible($oldVersion, $newVersion));
} }
public function testBrokenXmlResponse(){ public function testCheckInCache() {
$invalidUpdater = $this->getUpdaterMock('OMG!'); $expectedResult = [
$invalidResult = $invalidUpdater->check(); 'version' => '8.0.4.2',
$this->assertEmpty($invalidResult); '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 testEmptyResponse(){ public function testCheckWithoutUpdateUrl() {
$emptyUpdater = $this->getUpdaterMock(''); $expectedResult = [
$emptyResult = $emptyUpdater->check(); 'version' => '8.0.4.2',
$this->assertEmpty($emptyResult); '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', time());
$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));
// Error while fetching new contents e.g. too many redirects $updateXml = '<?xml version="1.0"?>
$falseUpdater = $this->getUpdaterMock(false); <owncloud>
$falseResult = $falseUpdater->check(); <version>8.0.4.2</version>
$this->assertEmpty($falseResult); <versionstring>ownCloud 8.0.4</versionstring>
<url>https://download.owncloud.org/community/owncloud-8.0.4.zip</url>
<web>http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html</web>
</owncloud>';
$this->httpHelper
->expects($this->once())
->method('getUrlContent')
->with('https://updates.owncloud.com/server/?version=8x1x0x7xinstalledatxlastupdatedatxgitxEnterprisex')
->will($this->returnValue($updateXml));
$this->assertSame($expectedResult, $this->updater->check());
} }
public function testValidEmptyXmlResponse(){ public function testCheckWithInvalidXml() {
$updater = $this->getUpdaterMock( $this->config
'<?xml version="1.0"?><owncloud><version></version><versionstring></versionstring><url></url><web></web></owncloud>' ->expects($this->at(0))
); ->method('getAppValue')
$result = array_map('strval', $updater->check()); ->with('core', 'lastupdatedat')
->will($this->returnValue(0));
$this->assertArrayHasKey('version', $result); $this->config
$this->assertArrayHasKey('versionstring', $result); ->expects($this->at(1))
$this->assertArrayHasKey('url', $result); ->method('setAppValue')
$this->assertArrayHasKey('web', $result); ->with('core', 'lastupdatedat', time());
$this->assertEmpty($result['version']); $this->config
$this->assertEmpty($result['versionstring']); ->expects($this->at(3))
$this->assertEmpty($result['url']); ->method('getAppValue')
$this->assertEmpty($result['web']); ->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('https://updates.owncloud.com/server/?version=8x1x0x7xinstalledatxlastupdatedatxgitxEnterprisex')
->will($this->returnValue($updateXml));
$this->assertSame([], $this->updater->check());
} }
public function testValidUpdateResponse(){ public function testCheckWithUpdateUrl() {
$newUpdater = $this->getUpdaterMock( $expectedResult = [
'<?xml version="1.0"?> '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', time());
$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 = '<?xml version="1.0"?>
<owncloud> <owncloud>
<version>7.0.3.4</version> <version>8.0.4.2</version>
<versionstring>ownCloud 7.0.3</versionstring> <versionstring>ownCloud 8.0.4</versionstring>
<url>http://download.owncloud.org/community/owncloud-7.0.3.zip</url> <url>https://download.owncloud.org/community/owncloud-8.0.4.zip</url>
<web>http://owncloud.org/</web> <web>http://doc.owncloud.org/server/8.0/admin_manual/maintenance/upgrade.html</web>
</owncloud>' </owncloud>';
); $this->httpHelper
$newResult = array_map('strval', $newUpdater->check()); ->expects($this->once())
->method('getUrlContent')
$this->assertArrayHasKey('version', $newResult); ->with('https://myupdater.com/?version=8x1x0x7xinstalledatxlastupdatedatxgitxEnterprisex')
$this->assertArrayHasKey('versionstring', $newResult); ->will($this->returnValue($updateXml));
$this->assertArrayHasKey('url', $newResult);
$this->assertArrayHasKey('web', $newResult); $this->assertSame($expectedResult, $this->updater->check('https://myupdater.com/'));
$this->assertEquals('7.0.3.4', $newResult['version']);
$this->assertEquals('ownCloud 7.0.3', $newResult['versionstring']);
$this->assertEquals('http://download.owncloud.org/community/owncloud-7.0.3.zip', $newResult['url']);
$this->assertEquals('http://owncloud.org/', $newResult['web']);
} }
protected function getUpdaterMock($content){ public function testCheckWithEmptyValidXmlResponse() {
// Invalidate cache $expectedResult = [
$mockedConfig = $this->getMockBuilder('\OCP\IConfig') 'version' => '',
->disableOriginalConstructor() 'versionstring' => '',
->getMock() 'url' => '',
; 'web' => '',
];
$clientService = $this->getMock('\OCP\Http\Client\IClientService'); $this->config
$mockedHTTPHelper = $this->getMockBuilder('\OC\HTTPHelper') ->expects($this->at(0))
->setConstructorArgs([\OC::$server->getConfig(), $clientService]) ->method('getAppValue')
->getMock() ->with('core', 'lastupdatedat')
; ->will($this->returnValue(0));
$this->config
->expects($this->at(1))
->method('setAppValue')
->with('core', 'lastupdatedat', time());
$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'));
$mockedHTTPHelper->expects($this->once())->method('getUrlContent')->will($this->returnValue($content)); $updateXml = '<?xml version="1.0"?>
<owncloud>
<version></version>
<versionstring></versionstring>
<url></url>
<web></web>
</owncloud>';
$this->httpHelper
->expects($this->once())
->method('getUrlContent')
->with('https://updates.owncloud.com/server/?version=8x1x0x7xinstalledatxlastupdatedatxgitxEnterprisex')
->will($this->returnValue($updateXml));
return new Updater($mockedHTTPHelper, $mockedConfig); $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', time());
$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('https://updates.owncloud.com/server/?version=8x1x0x7xinstalledatxlastupdatedatxgitxEnterprisex')
->will($this->returnValue($updateXml));
$this->assertSame($expectedResult, $this->updater->check());
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment