diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-06-18 17:23:54 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-06-19 14:22:45 +0200 |
commit | 18e9631810ad1d3d72c2b4bbee330169808108ad (patch) | |
tree | 866c49dbb113b6c45c5fe618f6b1b4020759646a /tests/lib/UpdaterTest.php | |
parent | 0f84351a762b83322ed556e3d023935720fc6fa4 (diff) | |
download | nextcloud-server-18e9631810ad1d3d72c2b4bbee330169808108ad.tar.gz nextcloud-server-18e9631810ad1d3d72c2b4bbee330169808108ad.zip |
Wait for cron to finish before running upgrade command
* fixes #9562
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests/lib/UpdaterTest.php')
-rw-r--r-- | tests/lib/UpdaterTest.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/lib/UpdaterTest.php b/tests/lib/UpdaterTest.php index afc9f9b1f86..02fea9c3c0a 100644 --- a/tests/lib/UpdaterTest.php +++ b/tests/lib/UpdaterTest.php @@ -24,6 +24,7 @@ namespace Test; use OC\Installer; use OC\Updater; +use OCP\BackgroundJob\IJobList; use OCP\IConfig; use OCP\ILogger; use OC\IntegrityCheck\Checker; @@ -39,6 +40,8 @@ class UpdaterTest extends TestCase { private $checker; /** @var Installer|\PHPUnit_Framework_MockObject_MockObject */ private $installer; + /** @var IJobList|\PHPUnit_Framework_MockObject_MockObject */ + private $jobList; public function setUp() { parent::setUp(); @@ -54,12 +57,16 @@ class UpdaterTest extends TestCase { $this->installer = $this->getMockBuilder(Installer::class) ->disableOriginalConstructor() ->getMock(); + $this->jobList = $this->getMockBuilder(IJobList::class) + ->disableOriginalConstructor() + ->getMock(); $this->updater = new Updater( $this->config, $this->checker, $this->logger, - $this->installer + $this->installer, + $this->jobList ); } |