ConfigTest.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. class ConfigTest extends PHPUnit_Framework_TestCase {
  3. public function setUp()
  4. {
  5. IoC::container()->singletons = array();
  6. }
  7. /**
  8. * @dataProvider getGetMocker
  9. */
  10. public function testHasMethodReturnsTrueWhenItemExists($mock, $mocker)
  11. {
  12. $mocker->will($this->returnValue('value'));
  13. $this->assertTrue($mock->has('something'));
  14. }
  15. /**
  16. * @dataProvider getGetMocker
  17. */
  18. public function testHasMethodReturnsFalseWhenItemDoesntExist($mock, $mocker)
  19. {
  20. $mocker->will($this->returnValue(null));
  21. $this->assertFalse($mock->has('something'));
  22. }
  23. public function getGetMocker()
  24. {
  25. $mock = $this->getMock('Laravel\\Config', array('get'), array(null));
  26. return array(array($mock, $mock->expects($this->any())->method('get')));
  27. }
  28. public function testConfigClassCanRetrieveItems()
  29. {
  30. $config = IoC::container()->config;
  31. $this->assertTrue(is_array($config->get('application')));
  32. $this->assertEquals($config->get('application.url'), 'http://localhost');
  33. }
  34. public function testGetMethodReturnsDefaultWhenItemDoesntExist()
  35. {
  36. $config = IoC::container()->config;
  37. $this->assertNull($config->get('config.item'));
  38. $this->assertEquals($config->get('config.item', 'test'), 'test');
  39. $this->assertEquals($config->get('config.item', function() {return 'test';}), 'test');
  40. }
  41. public function testConfigClassCanSetItems()
  42. {
  43. $config = IoC::container()->config;
  44. $config->set('application.url', 'test');
  45. $config->set('session', array());
  46. $this->assertEquals($config->get('application.url'), 'test');
  47. $this->assertEquals($config->get('session'), array());
  48. }
  49. }