19 declare(strict_types=1);
30 protected Objective\AdminConfirmedObjective
$o;
34 $this->message =
"This needs to be confirmed...";
35 $this->o =
new Objective\AdminConfirmedObjective($this->message);
40 $this->assertIsString($this->o->getHash());
45 $other =
new Objective\AdminConfirmedObjective(
"");
46 $this->assertNotEquals($this->o->getHash(), $other->getHash());
51 $this->assertIsString($this->o->getLabel());
56 $this->assertFalse($this->o->isNotable());
61 $env = $this->createMock(
Setup\Environment::class);
63 $pre = $this->o->getPreconditions($env);
64 $this->assertEquals([], $pre);
69 $env = $this->createMock(
Setup\Environment::class);
70 $admin_interaction = $this->createMock(
Setup\AdminInteraction::class);
73 ->method(
"getResource")
74 ->will($this->returnValueMap([
79 ->expects($this->once())
80 ->method(
"confirmOrDeny")
81 ->with($this->message)
84 $res = $this->o->achieve($env);
85 $this->assertSame($env,
$res);
90 $this->expectException(
Setup\NoConfirmationException::class);
92 $env = $this->createMock(
Setup\Environment::class);
93 $admin_interaction = $this->createMock(
Setup\AdminInteraction::class);
96 ->method(
"getResource")
97 ->will($this->returnValueMap([
102 ->expects($this->once())
103 ->method(
"confirmOrDeny")
104 ->with($this->message)
107 $this->o->achieve($env);
testHashIsDifferentForDifferentMessages()
testAchieveWithConfirmation()
Objective AdminConfirmedObjective $o
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const RESOURCE_ADMIN_INTERACTION