questionHelper = $this->prophesize(QuestionHelper::class); $this->plugin = new LanguageConfigCustomizerPlugin($this->questionHelper->reveal()); } /** * @test */ public function configIsRequestedToTheUser() { /** @var MethodProphecy $askSecret */ $askSecret = $this->questionHelper->ask(Argument::cetera())->willReturn('en'); $config = new CustomizableAppConfig(); $this->plugin->process(new SymfonyStyle(new ArrayInput([]), new NullOutput()), $config); $this->assertTrue($config->hasLanguage()); $this->assertEquals([ 'DEFAULT' => 'en', 'CLI' => 'en', ], $config->getLanguage()); $askSecret->shouldHaveBeenCalledTimes(2); } /** * @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 : 'es'; }); $config = new CustomizableAppConfig(); $config->setLanguage([ 'DEFAULT' => 'en', 'CLI' => 'en', ]); $this->plugin->process(new SymfonyStyle(new ArrayInput([]), new NullOutput()), $config); $this->assertEquals([ 'DEFAULT' => 'es', 'CLI' => 'es', ], $config->getLanguage()); $ask->shouldHaveBeenCalledTimes(3); } /** * @test */ public function existingValueIsKeptIfRequested() { /** @var MethodProphecy $ask */ $ask = $this->questionHelper->ask(Argument::cetera())->willReturn(true); $config = new CustomizableAppConfig(); $config->setLanguage([ 'DEFAULT' => 'es', 'CLI' => 'es', ]); $this->plugin->process(new SymfonyStyle(new ArrayInput([]), new NullOutput()), $config); $this->assertEquals([ 'DEFAULT' => 'es', 'CLI' => 'es', ], $config->getLanguage()); $ask->shouldHaveBeenCalledTimes(1); } }