16 $refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
18 $agent = $this->createMock(Setup\Agent::class);
19 $config_reader = $this->createMock(Setup\CLI\ConfigReader::class);
22 }, $config_reader, []);
24 $tester =
new CommandTester($command);
26 $config = $this->createMock(Setup\Config::class);
27 $config_file =
"config_file";
28 $config_file_content = [
"config_file"];
30 $objective = $this->createMock(Setup\Objective::class);
31 $env = $this->createMock(Setup\Environment::class);
33 $config_overwrites = [
39 ->expects($this->once())
40 ->method(
"readConfigFile")
41 ->with($config_file, $config_overwrites)
42 ->willReturn($config_file_content);
45 ->expects($this->once())
50 ->expects($this->once())
51 ->method(
"getArrayToConfigTransformation")
53 ->willReturn($refinery->custom()->transformation(
function ($v) use ($config_file_content,
$config) {
54 $this->assertEquals($v, $config_file_content);
59 ->expects($this->once())
60 ->method(
"getInstallObjective")
62 ->willReturn($objective);
65 ->expects($this->never())
66 ->method(
"getBuildArtifactObjective")
71 ->expects($this->once())
72 ->method(
"getUpdateObjective")
77 ->expects($this->once())
78 ->method(
"getPreconditions")
82 ->expects($this->once())
87 "config" => $config_file,
88 "--config" => [
"a.b.c=foo",
"d.e=bar"]
A non-objective, nothing to do to achieve it...