19 declare(strict_types=1);
29 require_once __DIR__ .
'/ContainerMock.php';
37 $this->assertInstanceOf(StartUpStep::class,
new StartUpStep($this->mock(ilCtrl::class), $this->mock(Conductor::class)));
42 $instance =
new StartUpStep($this->mock(ilCtrl::class), $this->mock(Conductor::class));
43 $this->assertTrue($instance->shouldStoreRequestTarget());
48 $instance =
new StartUpStep($this->mock(ilCtrl::class), $this->mockTree(Conductor::class, [
'intercepting' => [
49 $this->mockTree(Intercept::class, [
'intercept' =>
false]),
50 $this->mockTree(Intercept::class, [
'intercept' =>
true]),
53 $this->assertTrue($instance->shouldInterceptRequest());
58 $ctrl = $this->mock(ilCtrl::class);
59 $ctrl->expects(self::once())->method(
'setParameterByClass')->with(
'foo',
'id',
'baz');
60 $ctrl->expects(self::once())->method(
'getLinkTargetByClass')->with([
'foo'],
'bar')->willReturn(
'link');
61 $ctrl->expects(self::once())->method(
'redirectToURL')->with(
'link');
63 $instance =
new StartUpStep($ctrl, $this->mockTree(Conductor::class, [
'intercepting' => [
64 $this->mockTree(Intercept::class, [
'intercept' =>
false,
'id' =>
'ho',
'target' => [
'guiName' =>
'dummy',
'guiPath' => [
'dummy'],
'command' =>
'hej']]),
65 $this->mockTree(Intercept::class, [
'intercept' =>
true,
'id' =>
'baz',
'target' => [
'guiName' =>
'foo',
'guiPath' => [
'foo'],
'command' =>
'bar']]),
73 $ctrl = $this->mockTree(ilCtrl::class, [
'getCmdClass' =>
'foo']);
75 $instance =
new StartUpStep($ctrl, $this->mockTree(Conductor::class, [
'intercepting' => [
76 $this->mockTree(Intercept::class, [
'intercept' =>
true,
'target' => [
'guiName' =>
'HEJ']]),
77 $this->mockTree(Intercept::class, [
'intercept' =>
true,
'target' => [
'guiName' =>
'FOO']]),
80 $this->assertTrue($instance->isInFulfillment());
testShouldInterceptRequest()
testShouldStoreRequestTarget()