aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functions
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-05-14 15:55:21 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-05-14 20:29:38 +0200
commit25be16748dc39b2e30bd55472d8e5d6ef60f1c39 (patch)
treefe8f292621346451f933fad7845612495b4ea297 /tests/functions
parentb3479869232fd4f2e6c3f43e0d6e76ee08ab7d23 (diff)
downloadforums-25be16748dc39b2e30bd55472d8e5d6ef60f1c39.tar
forums-25be16748dc39b2e30bd55472d8e5d6ef60f1c39.tar.gz
forums-25be16748dc39b2e30bd55472d8e5d6ef60f1c39.tar.bz2
forums-25be16748dc39b2e30bd55472d8e5d6ef60f1c39.tar.xz
forums-25be16748dc39b2e30bd55472d8e5d6ef60f1c39.zip
[ticket/11541] Add unit tests for style_select()
PHPBB3-11541
Diffstat (limited to 'tests/functions')
-rw-r--r--tests/functions/fixtures/style_select.xml23
-rw-r--r--tests/functions/style_select_test.php41
2 files changed, 64 insertions, 0 deletions
diff --git a/tests/functions/fixtures/style_select.xml b/tests/functions/fixtures/style_select.xml
new file mode 100644
index 0000000000..12d6392ab5
--- /dev/null
+++ b/tests/functions/fixtures/style_select.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<dataset>
+ <table name="phpbb_styles">
+ <column>style_id</column>
+ <column>style_name</column>
+ <column>style_active</column>
+ <row>
+ <value>1</value>
+ <value>prosilver</value>
+ <value>1</value>
+ </row>
+ <row>
+ <value>2</value>
+ <value>subsilver2</value>
+ <value>1</value>
+ </row>
+ <row>
+ <value>3</value>
+ <value>zoo</value>
+ <value>0</value>
+ </row>
+ </table>
+</dataset>
diff --git a/tests/functions/style_select_test.php b/tests/functions/style_select_test.php
new file mode 100644
index 0000000000..1e44f3c2cb
--- /dev/null
+++ b/tests/functions/style_select_test.php
@@ -0,0 +1,41 @@
+<?php
+/**
+*
+* @package testing
+* @copyright (c) 2013 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
+
+class phpbb_functions_style_select_test extends phpbb_database_test_case
+{
+ public function getDataSet()
+ {
+ return $this->createXMLDataSet(dirname(__FILE__).'/fixtures/style_select.xml');
+ }
+
+ static public function style_select_data()
+ {
+ return array(
+ array('', false, '<option value="1">prosilver</option><option value="2">subsilver2</option>'),
+ array('', true, '<option value="1">prosilver</option><option value="2">subsilver2</option><option value="3">zoo</option>'),
+ array('1', false, '<option value="1" selected="selected">prosilver</option><option value="2">subsilver2</option>'),
+ array('1', true, '<option value="1" selected="selected">prosilver</option><option value="2">subsilver2</option><option value="3">zoo</option>'),
+ array('3', false, '<option value="1">prosilver</option><option value="2">subsilver2</option>'),
+ array('3', true, '<option value="1">prosilver</option><option value="2">subsilver2</option><option value="3" selected="selected">zoo</option>'),
+ );
+ }
+
+ /**
+ * @dataProvider style_select_data
+ */
+ public function test_style_select($default, $all, $expected)
+ {
+ global $db;
+ $db = $this->new_dbal();
+
+ $this->assertEquals($expected, style_select($default, $all));
+ }
+}