diff options
author | nashe <thomas@chauchefoin.fr> | 2017-07-07 23:50:16 +0100 |
---|---|---|
committer | nashe <thomas@chauchefoin.fr> | 2017-07-07 23:50:16 +0100 |
commit | 78d7d92d8faa35cd672dcdfea0e110c420d4d49c (patch) | |
tree | 120c528b79e2c0e664ee0dbdba534411ceefe80f /tests | |
parent | a7be7aca5204b111ad9e893e8e845c79fb9af3a1 (diff) | |
download | planet-78d7d92d8faa35cd672dcdfea0e110c420d4d49c.tar planet-78d7d92d8faa35cd672dcdfea0e110c420d4d49c.tar.gz planet-78d7d92d8faa35cd672dcdfea0e110c420d4d49c.tar.bz2 planet-78d7d92d8faa35cd672dcdfea0e110c420d4d49c.tar.xz planet-78d7d92d8faa35cd672dcdfea0e110c420d4d49c.zip |
Test PlanetConfig
Diffstat (limited to 'tests')
-rw-r--r-- | tests/PlanetConfigTest.php | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/PlanetConfigTest.php b/tests/PlanetConfigTest.php new file mode 100644 index 0000000..4db6e90 --- /dev/null +++ b/tests/PlanetConfigTest.php @@ -0,0 +1,73 @@ +<?php + +use PHPUnit\Framework\TestCase; + +class PlanetConfigTest extends TestCase +{ + public function test_default_configuration_values() + { + $conf = new PlanetConfig(); + $this->assertEquals('http://www.example.com/', $conf->getUrl()); + } + + public function test_merge_user_configuration_with_default_one() + { + $conf = new PlanetConfig(['url' => 'http://foobar.tld']); + $this->assertEquals('http://foobar.tld', $conf->getUrl()); + } + + public function test_generic_getter() + { + $conf = new PlanetConfig(['foo' => 'bar']); + $this->assertEquals('bar', $conf->foo); + } + + public function test_generic_setter() + { + $conf = new PlanetConfig(); + $conf->foo = 'bar'; + $this->assertEquals('bar', $conf->foo); + } + + public function test_normalize_key_name_on_merge() + { + $conf = new PlanetConfig(['FOO' => 'bar']); + $this->assertEquals('bar', $conf->foo); + } + + public function test_normalize_key_name_on_generic_getter() + { + $conf = new PlanetConfig(['foo' => 'bar']); + $this->assertEquals('bar', $conf->FOO); + } + + public function test_normalize_key_name_on_generic_setter() + { + $conf = new PlanetConfig(); + $conf->FOO = 'bar'; + $this->assertEquals('bar', $conf->foo); + } + + public function test_to_array() + { + $conf = new PlanetConfig(['foo' => 'bar']); + $this->assertEquals('bar', $conf->toArray()['foo']); + $this->assertEquals('http://www.example.com/', $conf->toArray()['url']); + } + + public function test_constructor_without_default_config() + { + $conf = new PlanetConfig(['foo' => 'bar'], false); + $this->assertEquals('bar', $conf->foo); + $this->assertEquals(1, sizeof($conf->toArray())); + } + + public function test_to_yaml() + { + $conf = new PlanetConfig([], false); + $this->assertEquals("---\n", $conf->toYaml()); + + $conf = new PlanetConfig(['foo' => 'bar'], false); + $this->assertEquals("---\nfoo: bar\n", $conf->toYaml()); + } +} |