RequestTest.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. class RequestTest extends PHPUnit_Framework_TestCase {
  3. public function setUp()
  4. {
  5. $_POST = array();
  6. $_SERVER = array();
  7. Laravel\Request::$uri = null;
  8. }
  9. /**
  10. * @dataProvider requestUriProvider
  11. */
  12. public function test_correct_uri_is_returned_when_request_uri_is_used($uri, $expectation)
  13. {
  14. $_SERVER['REQUEST_URI'] = $uri;
  15. $this->assertEquals($expectation, Laravel\Request::uri()->get());
  16. }
  17. public function test_request_method_returns_spoofed_method_if_uri_is_spoofed()
  18. {
  19. $_POST = array(Laravel\Request::spoofer => 'something');
  20. $this->assertEquals('something', Laravel\Request::method());
  21. }
  22. public function test_request_method_returns_request_method_from_server_array()
  23. {
  24. $_SERVER['REQUEST_METHOD'] = 'PUT';
  25. $this->assertEquals('PUT', Laravel\Request::method());
  26. }
  27. public function test_server_method_returns_from_the_server_array()
  28. {
  29. $_SERVER = array('TEST' => 'something', 'USER' => array('NAME' => 'taylor'));
  30. $this->assertEquals('something', Laravel\Request::server('test'));
  31. $this->assertEquals('taylor', Laravel\Request::server('user.name'));
  32. }
  33. public function test_spoofed_returns_true_when_request_is_spoofed()
  34. {
  35. $_POST[Laravel\Request::spoofer] = 'something';
  36. $this->assertTrue(Laravel\Request::spoofed());
  37. }
  38. public function test_spoofed_returns_false_when_request_isnt_spoofed()
  39. {
  40. $this->assertFalse(Laravel\Request::spoofed());
  41. }
  42. public function test_ip_method_returns_client_ip_address()
  43. {
  44. $_SERVER['REMOTE_ADDR'] = 'something';
  45. $this->assertEquals('something', Laravel\Request::ip());
  46. $_SERVER['HTTP_CLIENT_IP'] = 'something';
  47. $this->assertEquals('something', Laravel\Request::ip());
  48. $_SERVER['HTTP_X_FORWARDED_FOR'] = 'something';
  49. $this->assertEquals('something', Laravel\Request::ip());
  50. $_SERVER = array();
  51. $this->assertEquals('0.0.0.0', Laravel\Request::ip());
  52. }
  53. public function test_protocol_returns_server_protocol()
  54. {
  55. $_SERVER['SERVER_PROTOCOL'] = 'taylor';
  56. $this->assertEquals('taylor', Laravel\Request::protocol());
  57. unset($_SERVER['SERVER_PROTOCOL']);
  58. $this->assertEquals('HTTP/1.1', Laravel\Request::protocol());
  59. }
  60. public function test_ajax_method_returns_false_when_not_ajax()
  61. {
  62. $this->assertFalse(Laravel\Request::ajax());
  63. }
  64. public function test_ajax_method_returns_true_when_ajax()
  65. {
  66. $_SERVER['HTTP_X_REQUESTED_WITH'] = 'xmlhttprequest';
  67. $this->assertTrue(Laravel\Request::ajax());
  68. }
  69. public function requestUriProvider()
  70. {
  71. return array(
  72. array('/index.php', '/'),
  73. array('/index.php/', '/'),
  74. array('http://localhost/user', 'user'),
  75. array('http://localhost/user/', 'user'),
  76. array('http://localhost/index.php', '/'),
  77. array('http://localhost/index.php/', '/'),
  78. array('http://localhost/index.php//', '/'),
  79. array('http://localhost/index.php/user', 'user'),
  80. array('http://localhost/index.php/user/', 'user'),
  81. array('http://localhost/index.php/user/profile', 'user/profile'),
  82. );
  83. }
  84. }