1 <?php declare(strict_types=1);
61 $this->config_reader = $this->createMock(Setup\CLI\ConfigReader::class);
62 $this->agent_finder = $this->createMock(Setup\AgentFinder::class);
63 $this->refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
69 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
71 $agent = $this->createMock(Setup\AgentCollection::class);
72 $config_reader = $this->createMock(Setup\CLI\ConfigReader::class);
73 $agent_finder = $this->createMock(Setup\AgentFinder::class);
76 $tester =
new CommandTester($command);
78 $config = $this->createMock(Setup\ConfigCollection::class);
79 $config_file =
"config_file";
80 $config_file_content = [
"config_file"];
81 $objective_name =
"my.objective";
83 $objective = $this->createMock(Setup\Objective::class);
84 $env = $this->createMock(Setup\Environment::class);
87 ->expects($this->once())
88 ->method(
"readConfigFile")
90 ->willReturn($config_file_content);
93 ->expects($this->once())
99 ->expects($this->once())
100 ->method(
"hasConfig")
104 ->expects($this->once())
105 ->method(
"getArrayToConfigTransformation")
107 ->willReturn($refinery->custom()->transformation(
function ($v) use ($config_file_content,
$config) {
108 $this->assertEquals($v, $config_file_content);
113 ->expects($this->once())
114 ->method(
"getNamedObjective")
115 ->with($objective_name,
$config)
116 ->willReturn($objective);
119 ->expects($this->once())
120 ->method(
"getPreconditions")
124 ->method(
"isApplicable")
128 ->expects($this->once())
133 "config" => $config_file,
134 "objective" => $objective_name
A agent is some component that performs part of the setup process.
readAgentConfig(Agent $agent, InputInterface $input)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A configuration for the setup.
A collection of some configurations.