From 28e1480d1c8d9a167c24fbe4a4e7cab124ab8e28 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 2 Sep 2014 17:28:05 +0200 Subject: [PATCH] Added test for needUpgrade for core --- tests/lib/util.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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()); + } } /** -- 2.39.5