19 declare(strict_types=1);
31 int $expected_parent_id = 0
33 $db = $this->createMock(ilDBInterface::class);
36 ->expects(self::once())
38 ->with(
'il_orgu_op_contexts', [
39 'id' => [
'integer', $this->next_id],
40 'context' => [
'text', $this->context],
41 'parent_context_id' => [
'integer', $expected_parent_id]
44 ->expects(self::once())
46 ->with(
'il_orgu_op_contexts')
47 ->willReturn($this->next_id);
50 $env = $this->createMock(Environment::class);
52 ->method(
'getResource')
53 ->with(Environment::RESOURCE_DATABASE)
60 int $existing_context_id,
63 ?
string $parent_context =
null 67 ilOrgUnitOperationContextRegisteredObjective::class
69 ->setConstructorArgs([$context_name, $parent_context])
70 ->onlyMethods([
'getContextId'])
74 [$context_name, $existing_context_id],
75 [$parent_context, $parent_id]
79 ->method(
'getContextId')
81 function ($db, $context) use (&$consecutive) {
82 list($econtext, $ret) = array_shift($consecutive);
83 $this->assertInstanceOf(ilDBInterface::class, $db);
84 $this->assertEquals($econtext, $context);
96 $this->assertNotEquals(
104 $env = $this->createMock(Environment::class);
106 $this->assertContainsOnlyInstancesOf(
107 ilDatabaseInitializedObjective::class,
108 $obj->getPreconditions($env)
121 $this->assertTrue($obj->isApplicable($env));
128 $this->assertNotTrue($obj->isApplicable($env));
136 $this->assertTrue($obj->isApplicable($env));
144 $this->assertNotTrue($obj->isApplicable($env));
157 $this->expectException(Exception::class);
158 $obj->isApplicable($env);
getMockEnviroment(bool $expect_insert, int $expected_parent_id=0)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
An environment holds resources to be used in the setup process.
testIsApplicableInvalidParentException()
getMockObjective(int $existing_context_id, int $parent_id, string $context_name, ?string $parent_context=null)