41 require_once(
"libs/composer/vendor/autoload.php");
42 require_once(
"./Services/ActiveRecord/Connector/class.arConnector.php");
43 require_once(
"./Services/ActiveRecord/Connector/class.arConnectorMap.php");
65 public function setUp() : void
68 $dic[Bucket::class] =
function (
$c) {
91 $userInteraction =
$factory->createInstance(DownloadInteger::class);
92 $userInteraction->setInput([
$c]);
94 $bucket->setTask($userInteraction);
102 public function testSave()
105 $bucketConnector = Mockery::namedMock(
"bucketConnectorMock", \arConnector::class);
107 $valueConnector = Mockery::namedMock(
"valueConnectorMock", \arConnector::class);
109 $taskConnector = Mockery::namedMock(
"taskConnectorMock", \arConnector::class);
111 $valueToTaskConnector = Mockery::namedMock(
"valueToTaskConnectorMock", \arConnector::class);
119 $bucketConnector->shouldReceive(
"nextID")->once()->andReturn(1);
120 $bucketConnector->shouldReceive(
"create")->once();
123 $bucketConnector->shouldReceive(
"affectedRows")->once()->andReturn(1);
124 $bucketConnector->shouldReceive(
"update")->once()->andReturn(
true);
127 for (
$i = 0;
$i < 4;
$i++) {
129 $taskConnector->shouldReceive(
"affectedRows")->once()->andReturn(0);
130 $taskConnector->shouldReceive(
"nextID")->once()->andReturn(1);
131 $taskConnector->shouldReceive(
"create")->once();
134 $taskConnector->shouldReceive(
"affectedRows")->once()->andReturn(1);
135 $taskConnector->shouldReceive(
"update")->once();
139 $valueConnector->shouldReceive(
"affectedRows")->times(7)->andReturn(0);
140 $valueConnector->shouldReceive(
"nextID")->times(7)->andReturn(1);
141 $valueConnector->shouldReceive(
"create")->times(7);
144 $valueToTaskConnector->shouldReceive(
"affectedRows")->times(7)->andReturn(0);
145 $valueToTaskConnector->shouldReceive(
"nextID")->times(7)->andReturn(1);
146 $valueToTaskConnector->shouldReceive(
"create")->times(7);
148 $this->persistence->setConnector($bucketConnector);
149 $this->persistence->saveBucketAndItsTasks($this->bucket);
155 $this->expectException(SerializationException::class);
157 $this->persistence->updateBucket($this->bucket);
160 public function testUpdateObserver()
165 $observerConnector = Mockery::namedMock(
"observerConnectorMock", \arConnector::class);
170 $observerConnector->shouldReceive(
"read")->once()->andReturn(1);
171 $observerConnector->shouldReceive(
"update")->once()->andReturn(
true);
173 $this->persistence->setConnector($observerConnector);
174 $this->persistence->updateBucket($this->bucket);
177 public function testGetObserverIdsOfUser()
180 $observerConnector = Mockery::namedMock(
"observerConnectorMock", \arConnector::class);
183 $observerConnector->shouldReceive(
"readSet")->once()->andReturn([[
"id" => 2], [
"id" => 3]]);
185 $this->persistence->setConnector($observerConnector);
186 $observer_ids = $this->persistence->getBucketIdsOfUser(5);
187 $this->assertEquals($observer_ids, [0 => 2, 1 => 3]);
190 public function testGetObserverIdsByState()
193 $observerConnector = Mockery::namedMock(
"observerConnectorMock", \arConnector::class);
196 $observerConnector->shouldReceive(
"readSet")->once()->andReturn([[
"id" => 2], [
"id" => 3]]);
198 $this->persistence->setConnector($observerConnector);
199 $observer_ids = $this->persistence->getBucketIdsByState(
State::RUNNING);
200 $this->assertEquals($observer_ids, [2 => 2, 3 => 3]);
204 public function testUserInteraction()
206 $this->expectException(UserInteractionRequiredException::class);
210 $taskManager->executeTask($this->bucket->getTask(),
new MockObserver());
213 public function testContinueUserInteraction()
226 self::assertEquals($this->bucket->getCurrentTask()->getType(), $download_integer->getType());
228 $options = $download_integer->getOptions([]);
230 $dismiss = $download_integer->getRemoveOption();
232 $this->bucket->userInteraction($dismiss);
238 public function testContinueUserInteraction2()
244 $c = $this->bucket->getTask();
246 $x =
$factory->createInstance(PlusJob::class);
248 $x->setInput([
$c, 1]);
251 $this->bucket->setTask($x);
264 self::assertEquals($this->bucket->getCurrentTask()->getType(), $download_integer->getType());
266 $options = $download_integer->getOptions([]);
268 $dismiss = $download_integer->getRemoveOption();
270 $this->bucket->userInteraction($dismiss);
275 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...
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
Class BackgroundTaskTest.