RequestTest.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. * @expectedException Exception
  11. */
  12. public function test_exception_thrown_if_uri_cant_be_determined()
  13. {
  14. Laravel\Request::uri();
  15. }
  16. public function test_uri_method_returns_path_info_if_set()
  17. {
  18. $_SERVER['PATH_INFO'] = 'something';
  19. $this->assertEquals('something', Laravel\Request::uri());
  20. }
  21. /**
  22. * @dataProvider requestUriProvider
  23. */
  24. public function test_correct_uri_is_returned_when_request_uri_is_used($uri, $expectation)
  25. {
  26. $_SERVER['REQUEST_URI'] = $uri;
  27. $this->assertEquals($expectation, Laravel\Request::uri());
  28. }
  29. public function test_format_returns_the_extension_of_the_request_uri()
  30. {
  31. $_SERVER['PATH_INFO'] = 'profile.json';
  32. $this->assertEquals('json', Laravel\Request::format());
  33. }
  34. public function test_format_returns_html_if_no_format_is_available()
  35. {
  36. $_SERVER['PATH_INFO'] = 'profile';
  37. $this->assertEquals('html', Laravel\Request::format());
  38. }
  39. public function test_request_method_returns_spoofed_method_if_uri_is_spoofed()
  40. {
  41. $_POST = array(Laravel\Request::spoofer => 'something');
  42. $this->assertEquals('something', Laravel\Request::method());
  43. }
  44. public function test_request_method_returns_request_method_from_server_array()
  45. {
  46. $_SERVER['REQUEST_METHOD'] = 'PUT';
  47. $this->assertEquals('PUT', Laravel\Request::method());
  48. }
  49. public function test_server_method_returns_from_the_server_array()
  50. {
  51. $_SERVER = array('TEST' => 'something', 'USER' => array('NAME' => 'taylor'));
  52. $this->assertEquals('something', Laravel\Request::server('test'));
  53. $this->assertEquals('taylor', Laravel\Request::server('user.name'));
  54. }
  55. public function test_spoofed_returns_true_when_request_is_spoofed()
  56. {
  57. $_POST[Laravel\Request::spoofer] = 'something';
  58. $this->assertTrue(Laravel\Request::spoofed());
  59. }
  60. public function test_spoofed_returns_false_when_request_isnt_spoofed()
  61. {
  62. $this->assertFalse(Laravel\Request::spoofed());
  63. }
  64. public function test_ip_method_returns_client_ip_address()
  65. {
  66. $_SERVER['REMOTE_ADDR'] = 'something';
  67. $this->assertEquals('something', Laravel\Request::ip());
  68. $_SERVER['HTTP_CLIENT_IP'] = 'something';
  69. $this->assertEquals('something', Laravel\Request::ip());
  70. $_SERVER['HTTP_X_FORWARDED_FOR'] = 'something';
  71. $this->assertEquals('something', Laravel\Request::ip());
  72. $_SERVER = array();
  73. $this->assertEquals('0.0.0.0', Laravel\Request::ip());
  74. }
  75. public function test_protocol_returns_http_when_not_https()
  76. {
  77. $this->assertEquals('http', Laravel\Request::protocol());
  78. $_SERVER['HTTPS'] = 'off';
  79. $this->assertEquals('http', Laravel\Request::protocol());
  80. }
  81. public function test_protocol_returns_https_when_https()
  82. {
  83. $_SERVER['HTTPS'] = 'on';
  84. $this->assertEquals('https', Laravel\Request::protocol());
  85. }
  86. public function test_ajax_method_returns_false_when_not_ajax()
  87. {
  88. $this->assertFalse(Laravel\Request::ajax());
  89. }
  90. public function test_ajax_method_returns_true_when_ajax()
  91. {
  92. $_SERVER['HTTP_X_REQUESTED_WITH'] = 'xmlhttprequest';
  93. $this->assertTrue(Laravel\Request::ajax());
  94. }
  95. public function requestUriProvider()
  96. {
  97. return array(
  98. array('/index.php', '/'),
  99. array('/index.php/', '/'),
  100. array('http://localhost/user', 'user'),
  101. array('http://localhost/user/', 'user'),
  102. array('http://localhost/index.php', '/'),
  103. array('http://localhost/index.php/', '/'),
  104. array('http://localhost/index.php//', '/'),
  105. array('http://localhost/index.php/user', 'user'),
  106. array('http://localhost/index.php/user/', 'user'),
  107. array('http://localhost/index.php/user/profile', 'user/profile'),
  108. );
  109. }
  110. }