ConfigTest.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. class ConfigTest extends PHPUnit_Framework_TestCase {
  3. public function testHasMethodReturnsTrueWhenItemExists()
  4. {
  5. Config::set('hasvalue', true);
  6. $this->assertTrue(Config::has('hasvalue'));
  7. }
  8. public function testHasMethodReturnsFalseWhenItemDoesntExist()
  9. {
  10. $this->assertFalse(Config::has('something'));
  11. }
  12. public function testConfigClassCanRetrieveItems()
  13. {
  14. $this->assertTrue(is_array(Config::get('application')));
  15. $this->assertEquals(Config::get('application.url'), 'http://localhost');
  16. }
  17. public function testGetMethodReturnsDefaultWhenItemDoesntExist()
  18. {
  19. $this->assertNull(Config::get('config.item'));
  20. $this->assertEquals(Config::get('config.item', 'test'), 'test');
  21. $this->assertEquals(Config::get('config.item', function() {return 'test';}), 'test');
  22. }
  23. public function testConfigClassCanSetItems()
  24. {
  25. Config::set('application.names.test', 'test');
  26. Config::set('application.url', 'test');
  27. Config::set('session', array());
  28. Config::set('test', array());
  29. $this->assertEquals(Config::get('application.names.test'), 'test');
  30. $this->assertEquals(Config::get('application.url'), 'test');
  31. $this->assertEquals(Config::get('session'), array());
  32. $this->assertEquals(Config::get('test'), array());
  33. }
  34. }