40 require_once(
"libs/composer/vendor/autoload.php");
41 require_once(
"./Services/ActiveRecord/Connector/class.arConnector.php");
42 require_once(
"./Services/ActiveRecord/Connector/class.arConnectorMap.php");
64 public function setUp(): void
67 $dic[Bucket::class] =
function (
$c) {
90 $userInteraction =
$factory->createInstance(DownloadInteger::class);
91 $userInteraction->setInput([
$c]);
93 $bucket->setTask($userInteraction);
101 public function testSave()
104 $bucketConnector = Mockery::namedMock(
"bucketConnectorMock", \arConnector::class);
106 $valueConnector = Mockery::namedMock(
"valueConnectorMock", \arConnector::class);
108 $taskConnector = Mockery::namedMock(
"taskConnectorMock", \arConnector::class);
110 $valueToTaskConnector = Mockery::namedMock(
"valueToTaskConnectorMock", \arConnector::class);
118 $bucketConnector->shouldReceive(
"nextID")->once()->andReturn(1);
119 $bucketConnector->shouldReceive(
"create")->once();
122 $bucketConnector->shouldReceive(
"affectedRows")->once()->andReturn(1);
123 $bucketConnector->shouldReceive(
"update")->once()->andReturn(
true);
126 for (
$i = 0;
$i < 4;
$i++) {
128 $taskConnector->shouldReceive(
"affectedRows")->once()->andReturn(0);
129 $taskConnector->shouldReceive(
"nextID")->once()->andReturn(1);
130 $taskConnector->shouldReceive(
"create")->once();
133 $taskConnector->shouldReceive(
"affectedRows")->once()->andReturn(1);
134 $taskConnector->shouldReceive(
"update")->once();
138 $valueConnector->shouldReceive(
"affectedRows")->times(7)->andReturn(0);
139 $valueConnector->shouldReceive(
"nextID")->times(7)->andReturn(1);
140 $valueConnector->shouldReceive(
"create")->times(7);
143 $valueToTaskConnector->shouldReceive(
"affectedRows")->times(7)->andReturn(0);
144 $valueToTaskConnector->shouldReceive(
"nextID")->times(7)->andReturn(1);
145 $valueToTaskConnector->shouldReceive(
"create")->times(7);
147 $this->persistence->setConnector($bucketConnector);
148 $this->persistence->saveBucketAndItsTasks($this->bucket);
154 $this->expectException(SerializationException::class);
156 $this->persistence->updateBucket($this->bucket);
159 public function testUpdateObserver()
164 $observerConnector = Mockery::namedMock(
"observerConnectorMock", \arConnector::class);
169 $observerConnector->shouldReceive(
"read")->once()->andReturn([1 =>
new BucketContainer()]);
170 $observerConnector->shouldReceive(
"update")->once()->andReturn(
true);
172 $this->persistence->setConnector($observerConnector);
173 $this->persistence->updateBucket($this->bucket);
176 public function testGetObserverIdsOfUser()
179 $observerConnector = Mockery::namedMock(
"observerConnectorMock", \arConnector::class);
182 $observerConnector->shouldReceive(
"readSet")->once()->andReturn([[
"id" => 2], [
"id" => 3]]);
184 $this->persistence->setConnector($observerConnector);
185 $observer_ids = $this->persistence->getBucketIdsOfUser(5);
186 $this->assertEquals($observer_ids, [0 => 2, 1 => 3]);
189 public function testGetObserverIdsByState()
192 $observerConnector = Mockery::namedMock(
"observerConnectorMock", \arConnector::class);
195 $observerConnector->shouldReceive(
"readSet")->once()->andReturn([[
"id" => 2], [
"id" => 3]]);
197 $this->persistence->setConnector($observerConnector);
198 $observer_ids = $this->persistence->getBucketIdsByState(
State::RUNNING);
199 $this->assertEquals($observer_ids, [2 => 2, 3 => 3]);
203 public function testUserInteraction()
205 $this->expectException(UserInteractionRequiredException::class);
209 $taskManager->executeTask($this->bucket->getTask(),
new MockObserver());
212 public function testContinueUserInteraction()
225 self::assertEquals($this->bucket->getCurrentTask()->getType(), $download_integer->getType());
227 $options = $download_integer->getOptions([]);
229 $dismiss = $download_integer->getRemoveOption();
231 $this->bucket->userInteraction($dismiss);
237 public function testContinueUserInteraction2()
243 $c = $this->bucket->getTask();
245 $x =
$factory->createInstance(PlusJob::class);
247 $x->setInput([
$c, 1]);
250 $this->bucket->setTask($x);
263 self::assertEquals($this->bucket->getCurrentTask()->getType(), $download_integer->getType());
265 $options = $download_integer->getOptions([]);
267 $dismiss = $download_integer->getRemoveOption();
269 $this->bucket->userInteraction($dismiss);
273 $result = $taskManager->executeTask($this->bucket->getTask(),
new NonPersistingObserver($this->bucket));
274 self::assertEquals(5, $result->getValue());
static instance(\ilDBInterface $db)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static register(ActiveRecord $ar, arConnector $connector)
testCannotUpdateUnknownBucket()
Customizing of pimple-DIC for ILIAS.
Class NonPersistingObserver.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Class BackgroundTaskTest.