From: Vincent Petry Date: Tue, 2 Sep 2014 15:28:05 +0000 (+0200) Subject: Added test for needUpgrade for core X-Git-Tag: v7.0.3alpha1~126 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=28e1480d1c8d9a167c24fbe4a4e7cab124ab8e28;p=nextcloud-server.git Added test for needUpgrade for core --- diff --git a/tests/lib/util.php b/tests/lib/util.php index 98257e4c602..a2efcca2603 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -344,6 +344,25 @@ class Test_Util extends PHPUnit_Framework_TestCase { ); } + /** + * Test needUpgrade() when the core version is increased + */ + public function testNeedUpgradeCore() { + $oldConfigVersion = OC_Config::getValue('version', '0.0.0'); + $oldSessionVersion = \OC::$server->getSession()->get('OC_Version'); + + $this->assertFalse(\OCP\Util::needUpgrade()); + + OC_Config::setValue('version', '7.0.0.0'); + \OC::$server->getSession()->set('OC_Version', array(7, 0, 0, 1)); + + $this->assertTrue(\OCP\Util::needUpgrade()); + + OC_Config::setValue('version', $oldConfigVersion); + $oldSessionVersion = \OC::$server->getSession()->set('OC_Version', $oldSessionVersion); + + $this->assertFalse(\OCP\Util::needUpgrade()); + } } /**