InputTest.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. class InputTest extends PHPUnit_Framework_TestCase {
  3. public static function setUpBeforeClass()
  4. {
  5. System\Input::$input = null;
  6. }
  7. public static function tearDownAfterClass()
  8. {
  9. System\Config::set('session.driver', '');
  10. System\Session::$session = array();
  11. }
  12. public function setUp()
  13. {
  14. $_SERVER['REQUEST_METHOD'] = 'GET';
  15. }
  16. public function tearDown()
  17. {
  18. System\Input::$input = null;
  19. }
  20. /**
  21. * @dataProvider inputByMethodProvider
  22. */
  23. public function testInputShouldHydrateBasedOnRequestMethod($method, $data)
  24. {
  25. $_SERVER['REQUEST_METHOD'] = $method;
  26. $_GET = $data;
  27. $_POST = $data;
  28. $this->assertEquals(System\Input::get(), $data);
  29. }
  30. public function inputByMethodProvider()
  31. {
  32. return array(
  33. array('GET', array('method' => 'GET')),
  34. array('POST', array('method' => 'POST')),
  35. );
  36. }
  37. /**
  38. * @dataProvider inputBySpoofedMethodProvider
  39. */
  40. public function testInputShouldHydrateBasedOnSpoofedRequestMethod($method, $data)
  41. {
  42. $_SERVER['REQUEST_METHOD'] = 'POST';
  43. $_POST = $data;
  44. $this->assertEquals(System\Input::get(), $data);
  45. }
  46. public function inputBySpoofedMethodProvider()
  47. {
  48. return array(
  49. array('PUT', array('request_method' => 'PUT', 'method' => 'PUT')),
  50. array('DELETE', array('request_method' => 'DELETE', 'method' => 'DELETE')),
  51. );
  52. }
  53. public function testHasMethodReturnsTrueIfItemIsPresentInInputData()
  54. {
  55. System\Input::$input = array('name' => 'taylor');
  56. $this->assertTrue(System\Input::has('name'));
  57. }
  58. public function testHasMethodReturnsFalseIfItemIsNotPresentInInputData()
  59. {
  60. System\Input::$input = array();
  61. $this->assertFalse(System\Input::has('name'));
  62. }
  63. public function testHasMethodReturnsFalseIfItemIsInInputButIsEmptyString()
  64. {
  65. System\Input::$input = array('name' => '');
  66. $this->assertFalse(System\Input::has('name'));
  67. }
  68. public function testGetMethodReturnsItemByInputKey()
  69. {
  70. System\Input::$input = array('name' => 'taylor');
  71. $this->assertEquals(System\Input::get('name'), 'taylor');
  72. }
  73. public function testGetMethodReturnsDefaultValueWhenItemDoesntExist()
  74. {
  75. System\Input::$input = array();
  76. $this->assertNull(System\Input::get('name'));
  77. $this->assertEquals(System\Input::get('name', 'test'), 'test');
  78. $this->assertEquals(System\Input::get('name', function() {return 'test';}), 'test');
  79. $this->assertTrue(is_array(System\Input::get()) and count(System\Input::get()) == 0);
  80. }
  81. public function testGetMethodReturnsEntireInputArrayWhenNoKeyGiven()
  82. {
  83. System\Input::$input = array('name' => 'taylor', 'age' => 25);
  84. $this->assertEquals(System\Input::get(), System\Input::$input);
  85. }
  86. public function testFileMethodReturnsItemFromGlobalFilesArray()
  87. {
  88. $_FILES['test'] = array('name' => 'taylor');
  89. $this->assertEquals(System\Input::file('test'), $_FILES['test']);
  90. }
  91. public function testFileMethodReturnsSpecificItemFromFileArrayWhenSpecified()
  92. {
  93. $_FILES['test'] = array('size' => 500);
  94. $this->assertEquals(System\Input::file('test.size'), 500);
  95. }
  96. public function testAllMethodReturnsBothGetAndFileArrays()
  97. {
  98. $_GET['name'] = 'test';
  99. $_FILES['picture'] = array();
  100. $this->assertArrayHasKey('name', System\Input::all());
  101. $this->assertArrayHasKey('picture', System\Input::all());
  102. }
  103. /**
  104. * @expectedException Exception
  105. */
  106. public function testOldMethodShouldThrowExceptionWhenSessionsArentEnabled()
  107. {
  108. System\Input::old();
  109. }
  110. /**
  111. * @expectedException Exception
  112. */
  113. public function testHadMethodShouldThrowExceptionWhenSessionsArentEnabled()
  114. {
  115. System\Input::has();
  116. }
  117. public function testOldMethodShouldReturnOldInputDataFromSession()
  118. {
  119. System\Config::set('session.driver', 'test');
  120. System\Session::$session['data']['laravel_old_input'] = array('name' => 'taylor');
  121. $this->assertEquals(System\Input::old('name'), 'taylor');
  122. }
  123. public function testOldMethodReturnsDefaultValueWhenItemDoesntExist()
  124. {
  125. System\Config::set('session.driver', 'test');
  126. System\Session::$session['data']['laravel_old_input'] = array();
  127. $this->assertNull(System\Input::old('name'));
  128. $this->assertEquals(System\Input::old('name', 'test'), 'test');
  129. $this->assertEquals(System\Input::old('name', function() {return 'test';}), 'test');
  130. $this->assertTrue(is_array(System\Input::old()) and count(System\Input::old()) == 0);
  131. }
  132. public function testHadMethodReturnsTrueIfItemIsPresentInOldInputData()
  133. {
  134. System\Config::set('session.driver', 'test');
  135. System\Session::$session['data']['laravel_old_input'] = array('name' => 'taylor');
  136. $this->assertTrue(System\Input::had('name'));
  137. }
  138. public function testHadMethodReturnsFalseIfItemIsNotPresentInOldInputData()
  139. {
  140. System\Config::set('session.driver', 'test');
  141. System\Session::$session['data']['laravel_old_input'] = array();
  142. $this->assertFalse(System\Input::had('name'));
  143. }
  144. }