html.test.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <?php
  2. class HtmlTest extends PHPUnit_Framework_TestCase {
  3. /**
  4. * Setup the test environment
  5. */
  6. public function setUp()
  7. {
  8. URL::$base = null;
  9. Config::set('application.url', 'http://localhost');
  10. Config::set('application.index', 'index.php');
  11. Router::$names = array();
  12. Router::$routes = array();
  13. }
  14. /**
  15. * Destroy the test environment
  16. */
  17. public function tearDown()
  18. {
  19. Config::set('application.url', '');
  20. Config::set('application.index', 'index.php');
  21. Router::$names = array();
  22. Router::$routes = array();
  23. }
  24. /**
  25. * Test generating a link to JavaScript files
  26. *
  27. * @group laravel
  28. */
  29. public function testGeneratingScript()
  30. {
  31. $html1 = HTML::script('foo.js');
  32. $html2 = HTML::script('http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js');
  33. $html3 = HTML::script('foo.js', array('type' => 'text/javascript'));
  34. $this->assertEquals('<script src="http://localhost/foo.js"></script>'."\n", $html1);
  35. $this->assertEquals('<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>'."\n", $html2);
  36. $this->assertEquals('<script src="http://localhost/foo.js" type="text/javascript"></script>'."\n", $html3);
  37. }
  38. /**
  39. * Test generating a link to CSS files
  40. *
  41. * @group laravel
  42. */
  43. public function testGeneratingStyle()
  44. {
  45. $html1 = HTML::style('foo.css');
  46. $html2 = HTML::style('http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js');
  47. $html3 = HTML::style('foo.css', array('media' => 'print'));
  48. $this->assertEquals('<link href="http://localhost/foo.css" media="all" type="text/css" rel="stylesheet">'."\n", $html1);
  49. $this->assertEquals('<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js" media="all" type="text/css" rel="stylesheet">'."\n", $html2);
  50. $this->assertEquals('<link href="http://localhost/foo.css" media="print" type="text/css" rel="stylesheet">'."\n", $html3);
  51. }
  52. /**
  53. * Test generating proper span
  54. *
  55. * @group laravel
  56. */
  57. public function testGeneratingSpan()
  58. {
  59. $html1 = HTML::span('foo');
  60. $html2 = HTML::span('foo', array('class' => 'badge'));
  61. $this->assertEquals('<span>foo</span>', $html1);
  62. $this->assertEquals('<span class="badge">foo</span>', $html2);
  63. }
  64. /**
  65. * Test generating proper link
  66. *
  67. * @group laravel
  68. */
  69. public function testGeneratingLink()
  70. {
  71. $html1 = HTML::link('foo');
  72. $html2 = HTML::link('foo', 'Foobar');
  73. $html3 = HTML::link('foo', 'Foobar', array('class' => 'btn'));
  74. $html4 = HTML::link('http://google.com', 'Google');
  75. $this->assertEquals('<a href="http://localhost/index.php/foo">http://localhost/index.php/foo</a>', $html1);
  76. $this->assertEquals('<a href="http://localhost/index.php/foo">Foobar</a>', $html2);
  77. $this->assertEquals('<a href="http://localhost/index.php/foo" class="btn">Foobar</a>', $html3);
  78. $this->assertEquals('<a href="http://google.com">Google</a>', $html4);
  79. }
  80. /**
  81. * Test generating proper link to secure
  82. *
  83. * @group laravel
  84. */
  85. public function testGeneratingLinkToSecure()
  86. {
  87. $html1 = HTML::link_to_secure('foo');
  88. $html2 = HTML::link_to_secure('foo', 'Foobar');
  89. $html3 = HTML::link_to_secure('foo', 'Foobar', array('class' => 'btn'));
  90. $html4 = HTML::link_to_secure('http://google.com', 'Google');
  91. $this->assertEquals('<a href="https://localhost/index.php/foo">https://localhost/index.php/foo</a>', $html1);
  92. $this->assertEquals('<a href="https://localhost/index.php/foo">Foobar</a>', $html2);
  93. $this->assertEquals('<a href="https://localhost/index.php/foo" class="btn">Foobar</a>', $html3);
  94. $this->assertEquals('<a href="http://google.com">Google</a>', $html4);
  95. }
  96. /**
  97. * Test generating proper link to asset
  98. *
  99. * @group laravel
  100. */
  101. public function testGeneratingAssetLink()
  102. {
  103. $html1 = HTML::link_to_asset('foo.css');
  104. $html2 = HTML::link_to_asset('foo.css', 'Foobar');
  105. $html3 = HTML::link_to_asset('foo.css', 'Foobar', array('class' => 'btn'));
  106. $html4 = HTML::link_to_asset('http://google.com/images.jpg', 'Google');
  107. $this->assertEquals('<a href="http://localhost/foo.css">http://localhost/foo.css</a>', $html1);
  108. $this->assertEquals('<a href="http://localhost/foo.css">Foobar</a>', $html2);
  109. $this->assertEquals('<a href="http://localhost/foo.css" class="btn">Foobar</a>', $html3);
  110. $this->assertEquals('<a href="http://google.com/images.jpg">Google</a>', $html4);
  111. }
  112. /**
  113. * Test generating proper link to secure asset
  114. *
  115. * @group laravel
  116. */
  117. public function testGeneratingAssetLinkToSecure()
  118. {
  119. $html1 = HTML::link_to_secure_asset('foo.css');
  120. $html2 = HTML::link_to_secure_asset('foo.css', 'Foobar');
  121. $html3 = HTML::link_to_secure_asset('foo.css', 'Foobar', array('class' => 'btn'));
  122. $html4 = HTML::link_to_secure_asset('http://google.com/images.jpg', 'Google');
  123. $this->assertEquals('<a href="https://localhost/foo.css">https://localhost/foo.css</a>', $html1);
  124. $this->assertEquals('<a href="https://localhost/foo.css">Foobar</a>', $html2);
  125. $this->assertEquals('<a href="https://localhost/foo.css" class="btn">Foobar</a>', $html3);
  126. $this->assertEquals('<a href="http://google.com/images.jpg">Google</a>', $html4);
  127. }
  128. /**
  129. * Test generating proper link to route
  130. *
  131. * @group laravel
  132. */
  133. public function testGeneratingLinkToRoute()
  134. {
  135. Route::get('dashboard', array('as' => 'foo'));
  136. $html1 = HTML::link_to_route('foo');
  137. $html2 = HTML::link_to_route('foo', 'Foobar');
  138. $html3 = HTML::link_to_route('foo', 'Foobar', array(), array('class' => 'btn'));
  139. $this->assertEquals('<a href="http://localhost/index.php/dashboard">http://localhost/index.php/dashboard</a>', $html1);
  140. $this->assertEquals('<a href="http://localhost/index.php/dashboard">Foobar</a>', $html2);
  141. $this->assertEquals('<a href="http://localhost/index.php/dashboard" class="btn">Foobar</a>', $html3);
  142. }
  143. /**
  144. * Test generating proper link to action
  145. *
  146. * @group laravel
  147. */
  148. public function testGeneratingLinkToAction()
  149. {
  150. $html1 = HTML::link_to_action('foo@bar');
  151. $html2 = HTML::link_to_action('foo@bar', 'Foobar');
  152. $html3 = HTML::link_to_action('foo@bar', 'Foobar', array(), array('class' => 'btn'));
  153. $this->assertEquals('<a href="http://localhost/index.php/foo/bar">http://localhost/index.php/foo/bar</a>', $html1);
  154. $this->assertEquals('<a href="http://localhost/index.php/foo/bar">Foobar</a>', $html2);
  155. $this->assertEquals('<a href="http://localhost/index.php/foo/bar" class="btn">Foobar</a>', $html3);
  156. }
  157. /**
  158. * Test generating proper listing
  159. *
  160. * @group laravel
  161. */
  162. public function testGeneratingListing()
  163. {
  164. $list = array(
  165. 'foo',
  166. 'foobar' => array(
  167. 'hello',
  168. 'hello world',
  169. ),
  170. );
  171. $html1 = HTML::ul($list);
  172. $html2 = HTML::ul($list, array('class' => 'nav'));
  173. $html3 = HTML::ol($list);
  174. $html4 = HTML::ol($list, array('class' => 'nav'));
  175. $this->assertEquals('<ul><li>foo</li><li>foobar<ul><li>hello</li><li>hello world</li></ul></li></ul>', $html1);
  176. $this->assertEquals('<ul class="nav"><li>foo</li><li>foobar<ul><li>hello</li><li>hello world</li></ul></li></ul>', $html2);
  177. $this->assertEquals('<ol><li>foo</li><li>foobar<ol><li>hello</li><li>hello world</li></ol></li></ol>', $html3);
  178. $this->assertEquals('<ol class="nav"><li>foo</li><li>foobar<ol><li>hello</li><li>hello world</li></ol></li></ol>', $html4);
  179. }
  180. /**
  181. * Test generating proper listing
  182. *
  183. * @group laravel
  184. */
  185. public function testGeneratingDefinition()
  186. {
  187. $definition = array(
  188. 'foo' => 'foobar',
  189. 'hello' => 'hello world',
  190. );
  191. $html1 = HTML::dl($definition);
  192. $html2 = HTML::dl($definition, array('class' => 'nav'));
  193. $this->assertEquals('<dl><dt>foo</dt><dd>foobar</dd><dt>hello</dt><dd>hello world</dd></dl>', $html1);
  194. $this->assertEquals('<dl class="nav"><dt>foo</dt><dd>foobar</dd><dt>hello</dt><dd>hello world</dd></dl>', $html2);
  195. }
  196. /**
  197. * Test generating proper image link
  198. *
  199. * @group laravel
  200. */
  201. public function testGeneratingAssetLinkImage()
  202. {
  203. $html1 = HTML::image('foo.jpg');
  204. $html2 = HTML::image('foo.jpg', 'Foobar');
  205. $html3 = HTML::image('foo.jpg', 'Foobar', array('class' => 'btn'));
  206. $html4 = HTML::image('http://google.com/images.jpg', 'Google');
  207. $this->assertEquals('<img src="http://localhost/foo.jpg" alt="">', $html1);
  208. $this->assertEquals('<img src="http://localhost/foo.jpg" alt="Foobar">', $html2);
  209. $this->assertEquals('<img src="http://localhost/foo.jpg" class="btn" alt="Foobar">', $html3);
  210. $this->assertEquals('<img src="http://google.com/images.jpg" alt="Google">', $html4);
  211. }
  212. }