19 declare(strict_types=1);
32 int $expected_context_id = 0
34 $db = $this->createMock(ilDBInterface::class);
37 ->expects(self::once())
39 ->with(
'il_orgu_operations', [
40 'operation_id' => [
'integer', $this->next_id],
41 'operation_string' => [
'text', $this->operation],
42 'description' => [
'text', $this->description],
43 'list_order' => [
'integer', 0],
44 'context_id' => [
'integer', $expected_context_id],
47 ->expects(self::once())
49 ->with(
'il_orgu_operations')
50 ->willReturn($this->next_id);
53 $env = $this->createMock(Environment::class);
55 ->method(
'getResource')
56 ->with(Environment::RESOURCE_DATABASE)
63 bool $does_op_already_exist,
65 string $operation_name
69 ilOrgUnitOperationRegisteredObjective::class
71 ->setConstructorArgs([$operation_name, $this->description,
'context'])
72 ->onlyMethods([
'getContextId',
'doesOperationExistInContext'])
76 ->method(
'getContextId')
77 ->with($this->isInstanceOf(ilDBInterface::class),
'context')
78 ->willReturn($context_id);
80 ->method(
'doesOperationExistInContext')
81 ->with($this->isInstanceOf(ilDBInterface::class), $context_id, $operation_name)
82 ->willReturn($does_op_already_exist);
91 $this->assertNotEquals(
99 $env = $this->createMock(Environment::class);
101 $this->assertContainsOnlyInstancesOf(
102 ilDatabaseInitializedObjective::class,
103 $obj->getPreconditions($env)
112 $this->assertTrue($obj->isApplicable($env));
115 $this->assertNotTrue($obj->isApplicable($env));
123 $this->expectException(Exception::class);
124 $obj->isApplicable($env);
getMockObjective(bool $does_op_already_exist, int $context_id, string $operation_name)
testIsApplicableInvalidContextException()
An environment holds resources to be used in the setup process.
getMockEnviroment(bool $expect_insert, int $expected_context_id=0)