ViewTest.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. class ViewTest extends PHPUnit_Framework_TestCase {
  3. public function testConstructorSetsViewNameAndData()
  4. {
  5. $view = new System\View('view', array('name' => 'test'));
  6. $this->assertEquals($view->view, 'view');
  7. $this->assertEquals($view->data, array('name' => 'test'));
  8. $view = new System\View('view');
  9. $this->assertEquals($view->data, array());
  10. }
  11. public function testMakeMethodReturnsNewViewInstance()
  12. {
  13. $this->assertInstanceOf('System\\View', System\View::make('test'));
  14. }
  15. public function testBindMethodAddsItemToViewData()
  16. {
  17. $view = System\View::make('test')->bind('name', 'test');
  18. $this->assertEquals($view->data, array('name' => 'test'));
  19. }
  20. public function testBoundViewDataCanBeRetrievedThroughMagicMethods()
  21. {
  22. $view = System\View::make('test')->bind('name', 'test');
  23. $this->assertTrue(isset($view->name));
  24. $this->assertEquals($view->name, 'test');
  25. unset($view->name);
  26. $this->assertFalse(isset($view->name));
  27. }
  28. public function testGetMethodReturnsStringContentOfView()
  29. {
  30. $this->assertTrue(is_string(System\View::make('home/index')->get()));
  31. }
  32. /**
  33. * @expectedException Exception
  34. */
  35. public function testExceptionIsThrownWhenViewDoesntExist()
  36. {
  37. System\View::make('doesnt-exist')->get();
  38. }
  39. }