/**
  * @test
  */
 public function addDataSetsPageLanguageOverlayRows()
 {
     $input = ['effectivePid' => '23'];
     $expected = $input;
     $expected['pageLanguageOverlayRows'] = [0 => ['uid' => '1', 'pid' => '42', 'sys_language_uid' => '2']];
     $this->dbProphecy->exec_SELECTgetRows('*', 'pages_language_overlay', 'pid=23')->shouldBeCalled()->willReturn($expected['pageLanguageOverlayRows']);
     $this->assertSame($expected, $this->subject->addData($input));
 }
 /**
  * @test
  */
 public function addDataAddFlashMessageWithMissingIsoCode()
 {
     $dbRows = [['uid' => 3, 'title' => 'french', 'language_isocode' => '', 'static_lang_isocode' => '', 'flag' => 'fr']];
     $this->dbProphecy->exec_SELECTgetRows('uid,title,language_isocode,static_lang_isocode,flag', 'sys_language', 'pid=0')->shouldBeCalled()->willReturn($dbRows);
     // Needed for backendUtility::getRecord()
     $GLOBALS['TCA']['static_languages'] = ['foo'];
     $expected = ['systemLanguageRows' => [-1 => ['uid' => -1, 'title' => 'LLL:EXT:lang/locallang_mod_web_list.xlf:multipleLanguages', 'iso' => 'DEF', 'flagIconIdentifier' => 'flags-multiple'], 0 => ['uid' => 0, 'title' => 'LLL:EXT:lang/locallang_mod_web_list.xlf:defaultLanguage', 'iso' => 'DEF', 'flagIconIdentifier' => 'empty-empty'], 3 => ['uid' => 3, 'title' => 'french', 'flagIconIdentifier' => 'flags-fr', 'iso' => '']]];
     /** @var FlashMessage|ObjectProphecy $flashMessage */
     $flashMessage = $this->prophesize(FlashMessage::class);
     GeneralUtility::addInstance(FlashMessage::class, $flashMessage->reveal());
     /** @var FlashMessageService|ObjectProphecy $flashMessageService */
     $flashMessageService = $this->prophesize(FlashMessageService::class);
     GeneralUtility::setSingletonInstance(FlashMessageService::class, $flashMessageService->reveal());
     /** @var FlashMessageQueue|ObjectProphecy $flashMessageQueue */
     $flashMessageQueue = $this->prophesize(FlashMessageQueue::class);
     $flashMessageService->getMessageQueueByIdentifier(Argument::cetera())->willReturn($flashMessageQueue->reveal());
     $flashMessageQueue->enqueue($flashMessage)->shouldBeCalled();
     $this->assertSame($expected, $this->subject->addData([]));
 }