3 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 ->method(
'getContextId')
76 [$this->isInstanceOf(ilDBInterface::class), $context_name],
77 [$this->isInstanceOf(ilDBInterface::class), $parent_context]
79 ->willReturnOnConsecutiveCalls($existing_context_id, $parent_id);
88 $this->assertNotEquals(
96 $env = $this->createMock(Environment::class);
98 $this->assertContainsOnlyInstancesOf(
99 ilDatabaseInitializedObjective::class,
100 $obj->getPreconditions($env)
113 $this->assertTrue($obj->isApplicable($env));
120 $this->assertNotTrue($obj->isApplicable($env));
128 $this->assertTrue($obj->isApplicable($env));
136 $this->assertNotTrue($obj->isApplicable($env));
149 $this->expectException(Exception::class);
150 $obj->isApplicable($env);
getMockEnviroment(bool $expect_insert, int $expected_parent_id=0)
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)