From afffec81847c3414c7e33a3b83cd750853aafddd Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Sat, 28 Jun 2014 01:46:48 +0200 Subject: [PATCH] [ticket/12775] Add tests for \phpbb\config_php PHPBB3-12775 --- tests/config_php_test.php | 30 ++++++++++++++++++++++++++++++ tests/fixtures/config.php | 3 +++ tests/fixtures/config_other.php | 3 +++ 3 files changed, 36 insertions(+) create mode 100644 tests/config_php_test.php create mode 100644 tests/fixtures/config.php create mode 100644 tests/fixtures/config_other.php diff --git a/tests/config_php_test.php b/tests/config_php_test.php new file mode 100644 index 0000000000..6e2b4c2ac1 --- /dev/null +++ b/tests/config_php_test.php @@ -0,0 +1,30 @@ + +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +class phpbb_config_php_test extends phpbb_test_case +{ + public function test_default() + { + $config_php = new \phpbb\config_php(dirname( __FILE__ ) . '/fixtures/', 'php'); + $this->assertSame('bar', $config_php->get('foo')); + $this->assertSame(array('foo' => 'bar', 'foo_foo' => 'bar bar'), $config_php->get_all()); + } + + public function test_set_config_file() + { + $config_php = new \phpbb\config_php(dirname( __FILE__ ) . '/fixtures/', 'php'); + $config_php->set_config_file(dirname( __FILE__ ) . '/fixtures/config_other.php'); + $this->assertSame('foo', $config_php->get('bar')); + $this->assertSame(array('bar' => 'foo', 'bar_bar' => 'foo foo'), $config_php->get_all()); + } +} diff --git a/tests/fixtures/config.php b/tests/fixtures/config.php new file mode 100644 index 0000000000..ae9e8c22de --- /dev/null +++ b/tests/fixtures/config.php @@ -0,0 +1,3 @@ +