aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-28 01:46:48 +0200
committerTristan Darricau <github@nicofuma.fr>2014-07-07 01:02:29 +0200
commitafffec81847c3414c7e33a3b83cd750853aafddd (patch)
tree9ad2b83c08e48caf500fae8ad6452d02b10f6bda
parent1d966fbc86db47c3518b35de849cad3a1f295e71 (diff)
downloadforums-afffec81847c3414c7e33a3b83cd750853aafddd.tar
forums-afffec81847c3414c7e33a3b83cd750853aafddd.tar.gz
forums-afffec81847c3414c7e33a3b83cd750853aafddd.tar.bz2
forums-afffec81847c3414c7e33a3b83cd750853aafddd.tar.xz
forums-afffec81847c3414c7e33a3b83cd750853aafddd.zip
[ticket/12775] Add tests for \phpbb\config_php
PHPBB3-12775
-rw-r--r--tests/config_php_test.php30
-rw-r--r--tests/fixtures/config.php3
-rw-r--r--tests/fixtures/config_other.php3
3 files changed, 36 insertions, 0 deletions
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 @@
+<?php
+/**
+*
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @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 @@
+<?php
+$foo = 'bar';
+$foo_foo = 'bar bar';
diff --git a/tests/fixtures/config_other.php b/tests/fixtures/config_other.php
new file mode 100644
index 0000000000..e0ecc17bb9
--- /dev/null
+++ b/tests/fixtures/config_other.php
@@ -0,0 +1,3 @@
+<?php
+$bar = 'foo';
+$bar_bar = 'foo foo';