Definition at line 23 of file ilLSPostConditionDBTest.php.
◆ setUp()
ilLSPostConditionDBTest::setUp |
( |
| ) |
|
|
protected |
◆ testCreateObject()
ilLSPostConditionDBTest::testCreateObject |
( |
| ) |
|
Definition at line 35 of file ilLSPostConditionDBTest.php.
39 $this->assertInstanceOf(ilLSPostConditionDB::class, $obj);
Storage for ilLSPostConditions.
◆ testDelete()
ilLSPostConditionDBTest::testDelete |
( |
| ) |
|
Definition at line 134 of file ilLSPostConditionDBTest.php.
137 "DELETE FROM post_conditions" . PHP_EOL
138 .
"WHERE ref_id IN (20,22)" . PHP_EOL
142 ->expects($this->once())
143 ->method(
'manipulate')
148 $obj->delete([20,22]);
Storage for ilLSPostConditions.
◆ testSelectWithDBResults()
ilLSPostConditionDBTest::testSelectWithDBResults |
( |
| ) |
|
Definition at line 86 of file ilLSPostConditionDBTest.php.
References ILIAS\UI\Implementation\Component\Input\getValue(), and null.
89 "SELECT ref_id, condition_operator, value" . PHP_EOL
90 .
"FROM post_conditions" . PHP_EOL
91 .
"WHERE ref_id IN (33,44)" . PHP_EOL
97 'condition_operator' =>
'failed',
102 'condition_operator' =>
'finished',
108 $return_statement = $this->getMockBuilder(ilDBStatement::class)->getMock();
110 ->expects($this->once())
113 ->willReturn($return_statement)
116 ->expects($this->any())
117 ->method(
'fetchAssoc')
118 ->with($return_statement)
119 ->willReturnOnConsecutiveCalls(...$rows)
123 $result = $obj->select([33,44]);
125 $this->assertEquals(33, $result[0]->getRefId());
126 $this->assertEquals(
'failed', $result[0]->getConditionOperator());
127 $this->assertEquals(
"11", $result[0]->
getValue());
129 $this->assertEquals(44, $result[1]->getRefId());
130 $this->assertEquals(
'finished', $result[1]->getConditionOperator());
131 $this->assertEquals(
"12", $result[1]->
getValue());
Storage for ilLSPostConditions.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
◆ testSelectWithEmptyArray()
ilLSPostConditionDBTest::testSelectWithEmptyArray |
( |
| ) |
|
Definition at line 42 of file ilLSPostConditionDBTest.php.
46 $result = $obj->select([]);
48 $this->assertIsArray($result);
49 $this->assertEmpty($result);
Storage for ilLSPostConditions.
◆ testSelectWithNoDBResults()
ilLSPostConditionDBTest::testSelectWithNoDBResults |
( |
| ) |
|
Definition at line 52 of file ilLSPostConditionDBTest.php.
References ILIAS\UI\Implementation\Component\Input\getValue(), and ilLSPostConditionDB\STD_ALWAYS_OPERATOR.
55 "SELECT ref_id, condition_operator, value" . PHP_EOL
56 .
"FROM post_conditions" . PHP_EOL
57 .
"WHERE ref_id IN (20,22)" . PHP_EOL
60 $return = $this->getMockBuilder(ilDBStatement::class)->getMock();
62 ->expects($this->once())
68 ->expects($this->once())
69 ->method(
'fetchAssoc')
75 $result = $obj->select([20,22]);
77 $this->assertEquals(20, $result[0]->getRefId());
79 $this->assertNull($result[0]->
getValue());
81 $this->assertEquals(22, $result[1]->getRefId());
83 $this->assertNull($result[1]->
getValue());
Storage for ilLSPostConditions.
const STD_ALWAYS_OPERATOR
◆ $db
ilLSPostConditionDBTest::$db |
|
protected |
The documentation for this class was generated from the following file: