questionHelper = $this->prophesize(QuestionHelper::class); $this->plugin = new ApplicationConfigCustomizerPlugin($this->questionHelper->reveal()); } /** * @test */ public function configIsRequestedToTheUser() { /** @var MethodProphecy $askSecret */ $askSecret = $this->questionHelper->ask(Argument::cetera())->willReturn('the_secret'); $config = new CustomizableAppConfig(); $this->plugin->process(new SymfonyStyle(new ArrayInput([]), new NullOutput()), $config); $this->assertTrue($config->hasApp()); $this->assertEquals([ 'SECRET' => 'the_secret', ], $config->getApp()); $askSecret->shouldHaveBeenCalledTimes(1); } /** * @test */ public function overwriteIsRequestedIfValueIsAlreadySet() { /** @var MethodProphecy $ask */ $ask = $this->questionHelper->ask(Argument::cetera())->will(function (array $args) { $last = array_pop($args); return $last instanceof ConfirmationQuestion ? false : 'the_new_secret'; }); $config = new CustomizableAppConfig(); $config->setApp([ 'SECRET' => 'foo', ]); $this->plugin->process(new SymfonyStyle(new ArrayInput([]), new NullOutput()), $config); $this->assertEquals([ 'SECRET' => 'the_new_secret', ], $config->getApp()); $ask->shouldHaveBeenCalledTimes(2); } /** * @test */ public function existingValueIsKeptIfRequested() { /** @var MethodProphecy $ask */ $ask = $this->questionHelper->ask(Argument::cetera())->willReturn(true); $config = new CustomizableAppConfig(); $config->setApp([ 'SECRET' => 'foo', ]); $this->plugin->process(new SymfonyStyle(new ArrayInput([]), new NullOutput()), $config); $this->assertEquals([ 'SECRET' => 'foo', ], $config->getApp()); $ask->shouldHaveBeenCalledTimes(1); } }