aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-05-11 22:56:38 +0300
committerVjacheslav Trushkin <cyberalien@gmail.com>2013-05-11 22:56:38 +0300
commit18e82931dccbe0537a06f2e6570653e19db372dd (patch)
tree65a8473ecf522faefcf4e8c8151ef458bee13623
parentc583d9f5e721764ef413512b8104b4873d807e7a (diff)
downloadforums-18e82931dccbe0537a06f2e6570653e19db372dd.tar
forums-18e82931dccbe0537a06f2e6570653e19db372dd.tar.gz
forums-18e82931dccbe0537a06f2e6570653e19db372dd.tar.bz2
forums-18e82931dccbe0537a06f2e6570653e19db372dd.tar.xz
forums-18e82931dccbe0537a06f2e6570653e19db372dd.zip
[ticket/develop/10772] Unit tests for forum specific style
Unit tests for forum specific style for 3.1 branch PHPBB3-10772
-rw-r--r--tests/functional/forum_style_test.php53
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/functional/forum_style_test.php b/tests/functional/forum_style_test.php
new file mode 100644
index 0000000000..f9927454ad
--- /dev/null
+++ b/tests/functional/forum_style_test.php
@@ -0,0 +1,53 @@
+<?php
+/**
+*
+* @package testing
+* @copyright (c) 2011 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+/**
+* @group functional
+*/
+class phpbb_functional_forum_style_test extends phpbb_functional_test_case
+{
+ public function test_forum_style()
+ {
+ // Test with default style
+ $crawler = $this->request('GET', 'viewtopic.php?t=1&f=2');
+ $this->assert_response_success();
+ $this->assertContains('styles/prosilver/theme/print.css', $this->client->getResponse()->getContent());
+
+ $crawler = $this->request('GET', 'viewtopic.php?t=1&f=2&view=next');
+ $this->assert_response_success();
+ $this->assertContains('styles/prosilver/theme/print.css', $this->client->getResponse()->getContent());
+
+ // Insert new style and change forum style
+ $db = $this->get_db();
+ $db->sql_multi_insert(STYLES_TABLE, array(
+ 'style_id' => 2,
+ 'style_name' => 'test_style',
+ 'style_copyright' => '',
+ 'style_active' => 1,
+ 'style_path' => 'test_style',
+ 'bbcode_bitfield' => 'kNg=',
+ 'style_parent_id' => 1,
+ 'style_parent_tree' => 'prosilver',
+ ));
+ $db->sql_query('UPDATE ' . FORUMS_TABLE . ' SET forum_style = 2 WHERE forum_id = 2');
+
+ // Test with custom style
+ $crawler = $this->request('GET', 'viewtopic.php?t=1&f=2');
+ $this->assert_response_success();
+ $this->assertContains('styles/test_style/theme/print.css', $this->client->getResponse()->getContent());
+
+ $crawler = $this->request('GET', 'viewtopic.php?t=1&f=2&view=next');
+ $this->assert_response_success();
+ $this->assertContains('styles/test_style/theme/print.css', $this->client->getResponse()->getContent());
+
+ // Undo changes
+ $db->sql_query('UPDATE ' . FORUMS_TABLE . ' SET forum_style = 0 WHERE forum_id = 2');
+ $db->sql_query('DELETE FROM ' . STYLES_TABLE . ' WHERE style_id = 2');
+ }
+}