url.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. <?php
  2. // tests for link-template.php and related URL functions
  3. class Tests_URL extends WP_UnitTestCase {
  4. var $_old_server;
  5. function setUp() {
  6. parent::setUp();
  7. $this->_old_server = $_SERVER;
  8. $GLOBALS['pagenow'] = '';
  9. }
  10. function tearDown() {
  11. $_SERVER = $this->_old_server;
  12. parent::tearDown();
  13. }
  14. function test_is_ssl_positive() {
  15. $_SERVER['HTTPS'] = 'on';
  16. $this->assertTrue( is_ssl() );
  17. $_SERVER['HTTPS'] = 'ON';
  18. $this->assertTrue( is_ssl() );
  19. $_SERVER['HTTPS'] = '1';
  20. $this->assertTrue( is_ssl() );
  21. unset( $_SERVER['HTTPS'] );
  22. $_SERVER['SERVER_PORT'] = '443';
  23. $this->assertTrue( is_ssl() );
  24. }
  25. function test_is_ssl_negative() {
  26. $_SERVER['HTTPS'] = 'off';
  27. $this->assertFalse( is_ssl() );
  28. $_SERVER['HTTPS'] = 'OFF';
  29. $this->assertFalse( is_ssl() );
  30. unset($_SERVER['HTTPS']);
  31. $this->assertFalse( is_ssl() );
  32. }
  33. function test_admin_url_valid() {
  34. $paths = array(
  35. '' => "/wp-admin/",
  36. 'foo' => "/wp-admin/foo",
  37. '/foo' => "/wp-admin/foo",
  38. '/foo/' => "/wp-admin/foo/",
  39. 'foo.php' => "/wp-admin/foo.php",
  40. '/foo.php' => "/wp-admin/foo.php",
  41. '/foo.php?bar=1' => "/wp-admin/foo.php?bar=1",
  42. );
  43. $https = array('on', 'off');
  44. foreach ($https as $val) {
  45. $_SERVER['HTTPS'] = $val;
  46. $siteurl = get_option('siteurl');
  47. if ( $val == 'on' )
  48. $siteurl = str_replace('http://', 'https://', $siteurl);
  49. foreach ($paths as $in => $out) {
  50. $this->assertEquals( $siteurl.$out, admin_url($in), "admin_url('{$in}') should equal '{$siteurl}{$out}'");
  51. }
  52. }
  53. }
  54. function test_admin_url_invalid() {
  55. $paths = array(
  56. null => "/wp-admin/",
  57. 0 => "/wp-admin/",
  58. -1 => "/wp-admin/",
  59. '///' => "/wp-admin/",
  60. );
  61. $https = array('on', 'off');
  62. foreach ($https as $val) {
  63. $_SERVER['HTTPS'] = $val;
  64. $siteurl = get_option('siteurl');
  65. if ( $val == 'on' )
  66. $siteurl = str_replace('http://', 'https://', $siteurl);
  67. foreach ($paths as $in => $out) {
  68. $this->assertEquals( $siteurl.$out, admin_url($in), "admin_url('{$in}') should equal '{$siteurl}{$out}'");
  69. }
  70. }
  71. }
  72. function test_home_url_valid() {
  73. $paths = array(
  74. '' => "",
  75. 'foo' => "/foo",
  76. '/foo' => "/foo",
  77. '/foo/' => "/foo/",
  78. 'foo.php' => "/foo.php",
  79. '/foo.php' => "/foo.php",
  80. '/foo.php?bar=1' => "/foo.php?bar=1",
  81. );
  82. $https = array('on', 'off');
  83. foreach ($https as $val) {
  84. $_SERVER['HTTPS'] = $val;
  85. $home = get_option('home');
  86. if ( $val == 'on' )
  87. $home = str_replace('http://', 'https://', $home);
  88. foreach ($paths as $in => $out) {
  89. $this->assertEquals( $home.$out, home_url($in), "home_url('{$in}') should equal '{$home}{$out}'");
  90. }
  91. }
  92. }
  93. function test_home_url_invalid() {
  94. $paths = array(
  95. null => "",
  96. 0 => "",
  97. -1 => "",
  98. '///' => "/",
  99. );
  100. $https = array('on', 'off');
  101. foreach ($https as $val) {
  102. $_SERVER['HTTPS'] = $val;
  103. $home = get_option('home');
  104. if ( $val == 'on' )
  105. $home = str_replace('http://', 'https://', $home);
  106. foreach ($paths as $in => $out) {
  107. $this->assertEquals( $home.$out, home_url($in), "home_url('{$in}') should equal '{$home}{$out}'");
  108. }
  109. }
  110. }
  111. function test_home_url_from_admin() {
  112. $screen = get_current_screen();
  113. // Pretend to be in the site admin
  114. set_current_screen( 'dashboard' );
  115. $home = get_option('home');
  116. // home_url() should return http when in the admin
  117. $_SERVER['HTTPS'] = 'on';
  118. $this->assertEquals( $home, home_url() );
  119. $_SERVER['HTTPS'] = 'off';
  120. $this->assertEquals( $home, home_url() );
  121. // If not in the admin, is_ssl() should determine the scheme
  122. set_current_screen( 'front' );
  123. $this->assertEquals( $home, home_url() );
  124. $_SERVER['HTTPS'] = 'on';
  125. $home = str_replace('http://', 'https://', $home);
  126. $this->assertEquals( $home, home_url() );
  127. // Test with https in home
  128. update_option( 'home', set_url_scheme( $home, 'https' ) );
  129. // Pretend to be in the site admin
  130. set_current_screen( 'dashboard' );
  131. $home = get_option('home');
  132. // home_url() should return whatever scheme is set in the home option when in the admin
  133. $_SERVER['HTTPS'] = 'on';
  134. $this->assertEquals( $home, home_url() );
  135. $_SERVER['HTTPS'] = 'off';
  136. $this->assertEquals( $home, home_url() );
  137. // If not in the admin, is_ssl() should determine the scheme unless https hard-coded in home
  138. set_current_screen( 'front' );
  139. $this->assertEquals( $home, home_url() );
  140. $_SERVER['HTTPS'] = 'on';
  141. $this->assertEquals( $home, home_url() );
  142. $_SERVER['HTTPS'] = 'off';
  143. $this->assertEquals( $home, home_url() );
  144. update_option( 'home', set_url_scheme( $home, 'http' ) );
  145. $GLOBALS['current_screen'] = $screen;
  146. }
  147. function test_network_home_url_from_admin() {
  148. $screen = get_current_screen();
  149. // Pretend to be in the site admin
  150. set_current_screen( 'dashboard' );
  151. $home = network_home_url();
  152. // home_url() should return http when in the admin
  153. $this->assertEquals( 0, strpos( $home, 'http://') );
  154. $_SERVER['HTTPS'] = 'on';
  155. $this->assertEquals( $home, network_home_url() );
  156. $_SERVER['HTTPS'] = 'off';
  157. $this->assertEquals( $home, network_home_url() );
  158. // If not in the admin, is_ssl() should determine the scheme
  159. set_current_screen( 'front' );
  160. $this->assertEquals( $home, network_home_url() );
  161. $_SERVER['HTTPS'] = 'on';
  162. $home = str_replace('http://', 'https://', $home);
  163. $this->assertEquals( $home, network_home_url() );
  164. $GLOBALS['current_screen'] = $screen;
  165. }
  166. function test_set_url_scheme() {
  167. if ( ! function_exists( 'set_url_scheme' ) )
  168. return;
  169. $links = array(
  170. 'http://wordpress.org/',
  171. 'https://wordpress.org/',
  172. 'http://wordpress.org/news/',
  173. 'http://wordpress.org',
  174. );
  175. $https_links = array(
  176. 'https://wordpress.org/',
  177. 'https://wordpress.org/',
  178. 'https://wordpress.org/news/',
  179. 'https://wordpress.org',
  180. );
  181. $http_links = array(
  182. 'http://wordpress.org/',
  183. 'http://wordpress.org/',
  184. 'http://wordpress.org/news/',
  185. 'http://wordpress.org',
  186. );
  187. $relative_links = array(
  188. '/',
  189. '/',
  190. '/news/',
  191. ''
  192. );
  193. $forced_admin = force_ssl_admin();
  194. $forced_login = force_ssl_login();
  195. $i = 0;
  196. foreach ( $links as $link ) {
  197. $this->assertEquals( $https_links[ $i ], set_url_scheme( $link, 'https' ) );
  198. $this->assertEquals( $http_links[ $i ], set_url_scheme( $link, 'http' ) );
  199. $this->assertEquals( $relative_links[ $i ], set_url_scheme( $link, 'relative' ) );
  200. $_SERVER['HTTPS'] = 'on';
  201. $this->assertEquals( $https_links[ $i ], set_url_scheme( $link ) );
  202. $_SERVER['HTTPS'] = 'off';
  203. $this->assertEquals( $http_links[ $i ], set_url_scheme( $link ) );
  204. force_ssl_login( false );
  205. force_ssl_admin( true );
  206. $this->assertEquals( $https_links[ $i ], set_url_scheme( $link, 'admin' ) );
  207. $this->assertEquals( $https_links[ $i ], set_url_scheme( $link, 'login_post' ) );
  208. $this->assertEquals( $https_links[ $i ], set_url_scheme( $link, 'login' ) );
  209. $this->assertEquals( $https_links[ $i ], set_url_scheme( $link, 'rpc' ) );
  210. force_ssl_admin( false );
  211. $this->assertEquals( $http_links[ $i ], set_url_scheme( $link, 'admin' ) );
  212. $this->assertEquals( $http_links[ $i ], set_url_scheme( $link, 'login_post' ) );
  213. $this->assertEquals( $http_links[ $i ], set_url_scheme( $link, 'login' ) );
  214. $this->assertEquals( $http_links[ $i ], set_url_scheme( $link, 'rpc' ) );
  215. force_ssl_login( true );
  216. $this->assertEquals( $http_links[ $i ], set_url_scheme( $link, 'admin' ) );
  217. $this->assertEquals( $https_links[ $i ], set_url_scheme( $link, 'login_post' ) );
  218. $this->assertEquals( $http_links[ $i ], set_url_scheme( $link, 'login' ) );
  219. $this->assertEquals( $https_links[ $i ], set_url_scheme( $link, 'rpc' ) );
  220. $i++;
  221. }
  222. force_ssl_admin( $forced_admin );
  223. force_ssl_login( $forced_login );
  224. }
  225. function test_get_adjacent_post() {
  226. $post_id = $this->factory->post->create();
  227. sleep( 1 ); // get_adjacent_post() doesn't handle posts created in the same second.
  228. $post_id2 = $this->factory->post->create();
  229. if ( ! isset( $GLOBALS['post'] ) )
  230. $GLOBALS['post'] = null;
  231. $orig_post = $GLOBALS['post'];
  232. $GLOBALS['post'] = get_post( $post_id2 );
  233. $p = get_adjacent_post();
  234. $this->assertInstanceOf( 'WP_Post', $p );
  235. $this->assertEquals( $post_id, $p->ID );
  236. // The same again to make sure a cached query returns the same result
  237. $p = get_adjacent_post();
  238. $this->assertInstanceOf( 'WP_Post', $p );
  239. $this->assertEquals( $post_id, $p->ID );
  240. // Test next
  241. $p = get_adjacent_post( false, '', false );
  242. $this->assertEquals( '', $p );
  243. unset( $GLOBALS['post'] );
  244. $this->assertNull( get_adjacent_post() );
  245. $GLOBALS['post'] = $orig_post;
  246. // Tests requiring creating more posts can't be run since the query
  247. // cache in get_adjacent_post() requires a fresh page load to invalidate.
  248. }
  249. /**
  250. * Test that *_url functions handle paths with ".."
  251. *
  252. * @ticket 19032
  253. */
  254. public function test_url_functions_for_dots_in_paths() {
  255. $functions = array(
  256. 'site_url',
  257. 'home_url',
  258. 'admin_url',
  259. 'network_admin_url',
  260. 'user_admin_url',
  261. 'includes_url',
  262. 'network_site_url',
  263. 'network_home_url',
  264. 'content_url',
  265. 'plugins_url',
  266. );
  267. foreach ( $functions as $function ) {
  268. $this->assertEquals( call_user_func( $function, '/' ) . '../',
  269. call_user_func( $function, '../' ) );
  270. $this->assertEquals( call_user_func( $function, '/' ) . 'something...here',
  271. call_user_func( $function, 'something...here' ) );
  272. }
  273. // These functions accept a blog ID argument.
  274. foreach ( array( 'get_site_url', 'get_home_url', 'get_admin_url' ) as $function ) {
  275. $this->assertEquals( call_user_func( $function, null, '/' ) . '../',
  276. call_user_func( $function, null, '../' ) );
  277. $this->assertEquals( call_user_func( $function, null, '/' ) . 'something...here',
  278. call_user_func( $function, null, 'something...here' ) );
  279. }
  280. }
  281. }