summaryrefslogtreecommitdiffstats
path: root/common/tests/PlanetConfigTest.php
diff options
context:
space:
mode:
authorNicolas Lécureuil <neoclust@mageia.org>2020-05-17 14:46:00 +0200
committerNicolas Lécureuil <neoclust@mageia.org>2020-05-17 14:46:00 +0200
commite3de9d7dd1331f9718e04cc98e9ca7cfa27cf4aa (patch)
tree336981502f93ceb9fa5ed33ea3b47dcefc5a8402 /common/tests/PlanetConfigTest.php
parentff32e499745367b816d10f25e63ff3328214c32f (diff)
downloadplanet-e3de9d7dd1331f9718e04cc98e9ca7cfa27cf4aa.tar
planet-e3de9d7dd1331f9718e04cc98e9ca7cfa27cf4aa.tar.gz
planet-e3de9d7dd1331f9718e04cc98e9ca7cfa27cf4aa.tar.bz2
planet-e3de9d7dd1331f9718e04cc98e9ca7cfa27cf4aa.tar.xz
planet-e3de9d7dd1331f9718e04cc98e9ca7cfa27cf4aa.zip
Sync with master of moonmoon ( version 9.0.0-rc)HEADuser/wally/upstream-10-devmaster
Source from https://github.com/Emmafrs/moonmoon/
Diffstat (limited to 'common/tests/PlanetConfigTest.php')
-rw-r--r--common/tests/PlanetConfigTest.php73
1 files changed, 73 insertions, 0 deletions
diff --git a/common/tests/PlanetConfigTest.php b/common/tests/PlanetConfigTest.php
new file mode 100644
index 0000000..4db6e90
--- /dev/null
+++ b/common/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());
+ }
+}