]> source.dussan.org Git - nextcloud-server.git/commitdiff
Inject config
authorVictor Dubiniuk <victor.dubiniuk@gmail.com>
Tue, 9 Dec 2014 22:13:38 +0000 (01:13 +0300)
committerVictor Dubiniuk <victor.dubiniuk@gmail.com>
Tue, 9 Dec 2014 22:13:38 +0000 (01:13 +0300)
core/ajax/update.php
core/command/upgrade.php
lib/private/templatelayout.php
lib/private/updater.php
tests/lib/updater.php

index 85d5dc83ccf2065cb7fcc15f3f90b6caf61b3aa4..5a9288a6381c6534c186e5405d125aed1efc9b24 100644 (file)
@@ -10,7 +10,8 @@ if (OC::checkUpgrade(false)) {
        $l = new \OC_L10N('core');
        $eventSource = \OC::$server->createEventSource();
        $updater = new \OC\Updater(
-                       \OC::$server->getHTTPHelper(), 
+                       \OC::$server->getHTTPHelper(),
+                       \OC::$server->getAppConfig(),
                        \OC_Log::$object
        );
        $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($eventSource, $l) {
index 1d74ad0a90e88a725b5b3b98bbad1358b1a54bba..6e5ac1c5c9a78625dfe52fef75aa5aeff71c8a08 100644 (file)
@@ -84,7 +84,7 @@ class Upgrade extends Command {
 
                if(\OC::checkUpgrade(false)) {
                        $self = $this;
-                       $updater = new Updater(\OC::$server->getHTTPHelper());
+                       $updater = new Updater(\OC::$server->getHTTPHelper(), \OC::$server->getAppConfig());
 
                        $updater->setSimulateStepEnabled($simulateStepEnabled);
                        $updater->setUpdateStepEnabled($updateStepEnabled);
index aefb93ec266ab8f0380c62e3ecfc81bc145c7aee..fa025721e530d66bbcf0738219f37b15362970c5 100644 (file)
@@ -44,7 +44,7 @@ class OC_TemplateLayout extends OC_Template {
                        // Update notification
                        if($this->config->getSystemValue('updatechecker', true) === true &&
                                OC_User::isAdminUser(OC_User::getUser())) {
-                               $updater = new \OC\Updater(\OC::$server->getHTTPHelper());
+                               $updater = new \OC\Updater(\OC::$server->getHTTPHelper(), \OC::$server->getAppConfig());
                                $data = $updater->check();
 
                                if(isset($data['version']) && $data['version'] != '' and $data['version'] !== Array()) {
index 266cf9cc89f077c9c75f3e5f3812ff877e22dd0e..6272f77cfc2a139a649fc835831ebad2baa4ccaf 100644 (file)
@@ -30,6 +30,11 @@ class Updater extends BasicEmitter {
         * @var \OC\HTTPHelper $helper;
         */
        private $httpHelper;
+       
+       /**
+        * @var \OCP\IAppConfig;
+        */
+       private $config;
 
        private $simulateStepEnabled;
 
@@ -38,9 +43,10 @@ class Updater extends BasicEmitter {
        /**
         * @param \OC\Log $log
         */
-       public function __construct($httpHelper, $log = null) {
+       public function __construct($httpHelper, $config,  $log = null) {
                $this->httpHelper = $httpHelper;
                $this->log = $log;
+               $this->config = $config;
                $this->simulateStepEnabled = true;
                $this->updateStepEnabled = true;
        }
@@ -75,23 +81,23 @@ class Updater extends BasicEmitter {
        public function check($updaterUrl = null) {
 
                // Look up the cache - it is invalidated all 30 minutes
-               if ((\OC_Appconfig::getValue('core', 'lastupdatedat') + 1800) > time()) {
-                       return json_decode(\OC_Appconfig::getValue('core', 'lastupdateResult'), true);
+               if (($this->config->getValue('core', 'lastupdatedat') + 1800) > time()) {
+                       return json_decode($this->config->getValue('core', 'lastupdateResult'), true);
                }
 
                if (is_null($updaterUrl)) {
                        $updaterUrl = 'https://apps.owncloud.com/updater.php';
                }
 
-               \OC_Appconfig::setValue('core', 'lastupdatedat', time());
+               $this->config->setValue('core', 'lastupdatedat', time());
 
-               if (\OC_Appconfig::getValue('core', 'installedat', '') == '') {
-                       \OC_Appconfig::setValue('core', 'installedat', microtime(true));
+               if ($this->config->getValue('core', 'installedat', '') == '') {
+                       $this->config->setValue('core', 'installedat', microtime(true));
                }
 
                $version = \OC_Util::getVersion();
-               $version['installed'] = \OC_Appconfig::getValue('core', 'installedat');
-               $version['updated'] = \OC_Appconfig::getValue('core', 'lastupdatedat');
+               $version['installed'] = $this->config->getValue('core', 'installedat');
+               $version['updated'] = $this->config->getValue('core', 'lastupdatedat');
                $version['updatechannel'] = \OC_Util::getChannel();
                $version['edition'] = \OC_Util::getEditionString();
                $version['build'] = \OC_Util::getBuild();
@@ -119,7 +125,7 @@ class Updater extends BasicEmitter {
                }
 
                // Cache the result
-               \OC_Appconfig::setValue('core', 'lastupdateResult', json_encode($data));
+               $this->config->setValue('core', 'lastupdateResult', json_encode($data));
                return $tmp;
        }
 
@@ -219,7 +225,7 @@ class Updater extends BasicEmitter {
                        $repair->run();
 
                        //Invalidate update feed
-                       \OC_Appconfig::setValue('core', 'lastupdatedat', 0);
+                       $this->config->setValue('core', 'lastupdatedat', 0);
 
                        // only set the final version if everything went well
                        \OC_Config::setValue('version', implode('.', \OC_Util::getVersion()));
index 832f60fac06edb79d1ff1a594c61acce721e0599..dc1e9e5446fa7deea0f0b3af767dc3ccb7825327 100644 (file)
@@ -27,13 +27,28 @@ class UpdaterTest extends \Test\TestCase {
         * @dataProvider versionCompatibilityTestData
         */
        public function testIsUpgradePossible($oldVersion, $newVersion, $result) {
-               $updater = new Updater(\OC::$server->getHTTPHelper());
+               $updater = new Updater(\OC::$server->getHTTPHelper(), \OC::$server->getConfig());
                $this->assertSame($result, $updater->isUpgradePossible($oldVersion, $newVersion));
        }
        
+       public function testBrokenXmlResponse(){
+               $invalidUpdater = $this->getUpdaterMock('OMG!');
+               $invalidResult = $invalidUpdater->check();
+               $this->assertEmpty($invalidResult);
+       }
+       
+       public function testEmptyResponse(){
+               $emptyUpdater = $this->getUpdaterMock('');
+               $emptyResult = $emptyUpdater->check();
+               $this->assertEmpty($emptyResult);
+               
+               // Error while fetching new contents e.g. too many redirects
+               $falseUpdater = $this->getUpdaterMock(false);
+               $falseResult = $falseUpdater->check();
+               $this->assertEmpty($falseResult);
+       }
        
-       public function testCheck(){
-               // Valid XML. Empty values
+       public function testValidEmptyXmlResponse(){
                $updater = $this->getUpdaterMock(
                                '<?xml version="1.0"?><owncloud><version></version><versionstring></versionstring><url></url><web></web></owncloud>'
                );
@@ -47,18 +62,9 @@ class UpdaterTest extends \Test\TestCase {
                $this->assertEmpty($result['versionstring']);
                $this->assertEmpty($result['url']);
                $this->assertEmpty($result['web']);
-               
-               // Empty feed
-               $emptyUpdater = $this->getUpdaterMock('');
-               $emptyResult = $emptyUpdater->check();
-               $this->assertEmpty($emptyResult);
-               
-               // Error while fetching new contents e.g. too many redirects
-               $falseUpdater = $this->getUpdaterMock(false);
-               $falseResult = $falseUpdater->check();
-               $this->assertEmpty($falseResult);
-               
-               // Valid XML. New version available
+       }
+       
+       public function testValidUpdateResponse(){
                $newUpdater = $this->getUpdaterMock(
                                '<?xml version="1.0"?>
 <owncloud>
@@ -78,15 +84,14 @@ class UpdaterTest extends \Test\TestCase {
                $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']);
-               
-               // Invalid XML
-               $invalidUpdater = $this->getUpdaterMock('OMG!');
-               $invalidResult = $invalidUpdater->check();
-               $this->assertEmpty($invalidResult);
        }
        
        protected function getUpdaterMock($content){
                // Invalidate cache
+               $mockedAppConfig = $this->getMockBuilder('\OC\AppConfig')
+                               ->disableOriginalConstructor()
+                               ->getMock()
+               ;
                \OC_Appconfig::setValue('core', 'lastupdatedat', 0);
                
                $mockedHTTPHelper = $this->getMockBuilder('\OC\HTTPHelper')
@@ -97,7 +102,7 @@ class UpdaterTest extends \Test\TestCase {
                $mockedHTTPHelper->method('getUrlContent')
                                ->willReturn($content)
                ;
-               return new Updater($mockedHTTPHelper);
+               return new Updater($mockedHTTPHelper, $mockedAppConfig);
        }
 
 }