23 public const CLASS_NAME_200 =
"01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789";
24 public const CLASS_NAME_201 =
"012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
26 protected function setUp(): void
28 $this->db = $this->createMock(\ilDBInterface::class);
29 $this->execution_db = new \ilDBStepExecutionDB($this->db, fn () =>
new \
DateTime());
34 $this->expectException(\InvalidArgumentException::class);
35 $this->execution_db->started(self::CLASS_NAME_201, 1);
40 $this->expectException(\InvalidArgumentException::class);
41 $this->execution_db->finished(self::CLASS_NAME_201, 1);
46 $this->expectException(\InvalidArgumentException::class);
47 $this->execution_db->getLastStartedStep(self::CLASS_NAME_201);
52 $this->expectException(\InvalidArgumentException::class);
53 $this->execution_db->getLastFinishedStep(self::CLASS_NAME_201);
59 $NOW =
"2021-08-12 13:37:23.111111";
61 $execution_db = $this->getMockBuilder(\ilDBStepExecutionDB::class)
62 ->onlyMethods([
"getLastStartedStep",
"getLastFinishedStep"])
63 ->setConstructorArgs([$this->db, fn () =>
new \
DateTime($NOW)])
66 $execution_db->expects($this->once())
67 ->method(
"getLastFinishedStep")
68 ->with(self::CLASS_NAME_200)
71 $this->expectException(\RuntimeException::class);
73 $execution_db->started(self::CLASS_NAME_200, $STEP);
78 $NOW =
"2021-08-12 13:37:23.111111";
80 $execution_db = $this->getMockBuilder(\ilDBStepExecutionDB::class)
81 ->onlyMethods([
"getLastStartedStep",
"getLastFinishedStep"])
82 ->setConstructorArgs([$this->db, fn () =>
new \
DateTime($NOW)])
85 $execution_db->expects($this->once())
86 ->method(
"getLastFinishedStep")
87 ->with(self::CLASS_NAME_200)
91 $execution_db->expects($this->once())
92 ->method(
"getLastStartedStep")
93 ->with(self::CLASS_NAME_200)
96 $this->expectException(\RuntimeException::class);
98 $execution_db->started(self::CLASS_NAME_200, 3);
104 $NOW =
"2021-08-12 13:37:23.111111";
106 $execution_db = $this->getMockBuilder(\ilDBStepExecutionDB::class)
107 ->onlyMethods([
"getLastStartedStep",
"getLastFinishedStep"])
108 ->setConstructorArgs([$this->db, fn () =>
new \
DateTime($NOW)])
111 $execution_db->expects($this->once())
112 ->method(
"getLastStartedStep")
113 ->with(self::CLASS_NAME_200)
116 $this->expectException(\RuntimeException::class);
118 $execution_db->finished(self::CLASS_NAME_200, $STEP);
123 $result = $this->getMockBuilder(ilDBStatement::class)->getMock();
126 ->willReturn($result);
128 ->method(
"fetchAssoc")
131 $this->assertEquals(0, $this->execution_db->getLastStartedStep(self::CLASS_NAME_200));
136 $result = $this->getMockBuilder(ilDBStatement::class)->getMock();
139 ->willReturn($result);
141 ->method(
"fetchAssoc")
144 $this->assertEquals(0, $this->execution_db->getLastFinishedStep(self::CLASS_NAME_200));
150 $NOW =
"2021-08-12 13:37:23.111111";
152 $execution_db = $this->getMockBuilder(\ilDBStepExecutionDB::class)
153 ->onlyMethods([
"getLastStartedStep",
"getLastFinishedStep"])
154 ->setConstructorArgs([$this->db, fn () =>
new \
DateTime($NOW)])
157 $execution_db->expects($this->once())
158 ->method(
"getLastStartedStep")
159 ->with(self::CLASS_NAME_200)
162 $execution_db->expects($this->once())
163 ->method(
"getLastFinishedStep")
164 ->with(self::CLASS_NAME_200)
167 $this->db->expects($this->once())
178 $execution_db->started(self::CLASS_NAME_200, $STEP);
184 $NOW =
"2021-08-12 13:37:23.222222";
186 $execution_db = $this->getMockBuilder(\ilDBStepExecutionDB::class)
187 ->onlyMethods([
"getLastStartedStep",
"getLastFinishedStep"])
188 ->setConstructorArgs([$this->db, fn () =>
new \
DateTime($NOW)])
191 $execution_db->expects($this->once())
192 ->method(
"getLastStartedStep")
193 ->with(self::CLASS_NAME_200)
196 $this->db->expects($this->once())
209 $execution_db->finished(self::CLASS_NAME_200, $STEP);
216 $this->db->expects($this->once())
219 [self::CLASS_NAME_200,
"text"],
221 ->willReturnOnConsecutiveCalls(
225 $result = $this->getMockBuilder(ilDBStatement::class)->getMock();
226 $this->db->expects($this->once())
233 ->willReturn($result);
234 $this->db->expects($this->once())
235 ->method(
"fetchAssoc")
238 $this->assertEquals($STEP, $this->execution_db->getLastStartedStep(self::CLASS_NAME_200));
245 $this->db->expects($this->once())
248 [self::CLASS_NAME_200,
"text"],
250 ->willReturnOnConsecutiveCalls(
254 $result = $this->getMockBuilder(ilDBStatement::class)->getMock();
255 $this->db->expects($this->once())
263 ->willReturn($result);
264 $this->db->expects($this->once())
265 ->method(
"fetchAssoc")
268 $this->assertEquals($STEP, $this->execution_db->getLastFinishedStep(self::CLASS_NAME_200));
testGetLastStartedStepThrowsOnLongClassName()
testFinishedThrowsOnLongClassName()
testGetLastFinishedStepStartsWithZero()
testStartedThrowsWhenLastStepNotFinished()
testGetLastStartedStepStartsWithZero()
testGetLastStartedStepQueriesDB()
testStartedThrowsOnLongClassName()
testGetLastFinishedStepQueriesDB()
testGetLastFinishedStepThrowsOnLongClassName()
testFinishedThrowsWhenOtherStepThenLastIsFinished()
testStartedThrowsOnStartStepNotLargerThenLastFinishedStep()