From 18e9631810ad1d3d72c2b4bbee330169808108ad Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 18 Jun 2018 17:23:54 +0200 Subject: Wait for cron to finish before running upgrade command * fixes #9562 Signed-off-by: Morris Jobke --- tests/lib/UpdaterTest.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'tests/lib/UpdaterTest.php') 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 ); } -- cgit v1.2.3