Exemplo n.º 1
0
 public function testRealScenario()
 {
     $data = $this->prepareData();
     // start preview from FORM
     $content = $this->preview->start(1, $data[0]->getUuid(), 'sulu_io', 'en');
     $this->assertEquals('Test1', $content->getPropertyValue('title'));
     $this->assertEquals('Lorem Ipsum dolorem apsum', $content->getPropertyValue('article'));
     // render PREVIEW
     $response = $this->preview->render(1, $data[0]->getUuid(), 'sulu_io', 'en');
     $expected = $this->render('Test1', 'Lorem Ipsum dolorem apsum', [['title' => 'Block-Title-1', 'article' => ['Block-Article-1-1', 'Block-Article-1-2']], ['title' => 'Block-Title-2', 'article' => ['Block-Article-2-1', 'Block-Article-2-2']]]);
     $this->assertEquals($expected, $response);
     // change a property in FORM
     $content = $this->preview->updateProperty(1, $data[0]->getUuid(), 'sulu_io', 'en', 'title', 'New Title');
     $this->assertEquals('New Title', $content->getPropertyValue('title'));
     $this->assertEquals('Lorem Ipsum dolorem apsum', $content->getPropertyValue('article'));
     $content = $this->preview->updateProperty(1, $data[0]->getUuid(), 'sulu_io', 'en', 'article', 'asdf');
     $this->assertEquals('New Title', $content->getPropertyValue('title'));
     $this->assertEquals('asdf', $content->getPropertyValue('article'));
     // update PREVIEW
     $changes = $this->preview->getChanges(1, $data[0]->getUuid(), 'sulu_io', 'en');
     $this->assertEquals(2, sizeof($changes));
     $this->assertEquals(['New Title', 'PREF: New Title'], $changes['title']);
     $this->assertEquals(['asdf'], $changes['article']);
     // update PREVIEW
     $changes = $this->preview->getChanges(1, $data[0]->getUuid(), 'sulu_io', 'en');
     $this->assertEquals(0, sizeof($changes));
     // rerender PREVIEW
     $response = $this->preview->render(1, $data[0]->getUuid(), 'sulu_io', 'en');
     $expected = $this->render('New Title', 'asdf', [['title' => 'Block-Title-1', 'article' => ['Block-Article-1-1', 'Block-Article-1-2']], ['title' => 'Block-Title-2', 'article' => ['Block-Article-2-1', 'Block-Article-2-2']]]);
     $this->assertEquals($expected, $response);
 }