26 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
28 $agent = $this->createMock(Setup\AgentCollection::class);
29 $config_reader = $this->createMock(Setup\CLI\ConfigReader::class);
30 $agent_finder = $this->createMock(Setup\AgentFinder::class);
33 $tester =
new CommandTester($command);
35 $config = $this->createMock(Setup\ConfigCollection::class);
36 $config_file =
"config_file";
37 $config_file_content = [
"config_file"];
39 $objective = $this->createMock(Setup\Objective::class);
40 $env = $this->createMock(Setup\Environment::class);
43 ->expects($this->once())
44 ->method(
"readConfigFile")
46 ->willReturn($config_file_content);
49 ->expects($this->once())
55 ->expects($this->once())
60 ->expects($this->once())
61 ->method(
"getArrayToConfigTransformation")
63 ->willReturn($refinery->custom()->transformation(
function ($v) use ($config_file_content,
$config) {
64 $this->assertEquals($v, $config_file_content);
69 ->expects($this->never())
70 ->method(
"getInstallObjective")
75 ->expects($this->never())
76 ->method(
"getBuildArtifactObjective")
81 ->expects($this->once())
82 ->method(
"getUpdateObjective")
84 ->willReturn($objective);
87 ->expects($this->once())
88 ->method(
"getPreconditions")
91 $expects = $this->never();
95 $expects = $this->once();
105 ->expects($this->once())
106 ->method(
"isApplicable")
107 ->willReturn($return);
110 "config" => $config_file
An objective is a desired state of the system that is supposed to be created by the setup...
testBasicFunctionalityAlreadyAchieved()
A non-objective, nothing to do to achieve it...
basicFunctionality(bool $is_applicable)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...