aboutsummaryrefslogtreecommitdiffstats
path: root/tests/text_formatter/s9e/factory_test.php
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2018-01-22 03:34:47 +0100
committerJoshyPHP <s9e.dev@gmail.com>2018-01-22 03:34:47 +0100
commit531d9dfa1f0dddfe765a92ca40c77015091ecc5e (patch)
tree071817862fb1559727816d8c18c3fc5eccbe1dab /tests/text_formatter/s9e/factory_test.php
parentd0143bec8830e709047443f73f79c0dce438e3fc (diff)
downloadforums-531d9dfa1f0dddfe765a92ca40c77015091ecc5e.tar
forums-531d9dfa1f0dddfe765a92ca40c77015091ecc5e.tar.gz
forums-531d9dfa1f0dddfe765a92ca40c77015091ecc5e.tar.bz2
forums-531d9dfa1f0dddfe765a92ca40c77015091ecc5e.tar.xz
forums-531d9dfa1f0dddfe765a92ca40c77015091ecc5e.zip
[ticket/15531] Log malformed BBCodes
PHPBB3-15531
Diffstat (limited to 'tests/text_formatter/s9e/factory_test.php')
-rw-r--r--tests/text_formatter/s9e/factory_test.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/text_formatter/s9e/factory_test.php b/tests/text_formatter/s9e/factory_test.php
index d35330a975..0d780a19a9 100644
--- a/tests/text_formatter/s9e/factory_test.php
+++ b/tests/text_formatter/s9e/factory_test.php
@@ -56,6 +56,7 @@ class phpbb_textformatter_s9e_factory_test extends phpbb_database_test_case
$this->dispatcher,
new \phpbb\config\config(array('allowed_schemes_links' => 'http,https,ftp')),
new \phpbb\textformatter\s9e\link_helper,
+ $this->getMockBuilder('phpbb\\log\\log_interface')->getMock(),
$this->get_cache_dir(),
'_foo_parser',
'_foo_renderer'
@@ -264,6 +265,23 @@ class phpbb_textformatter_s9e_factory_test extends phpbb_database_test_case
}
/**
+ * @testdox Logs malformed BBCodes
+ */
+ public function test_malformed_bbcodes()
+ {
+ $log = $this->getMockBuilder('phpbb\\log\\log_interface')->getMock();
+ $log->expects($this->once())
+ ->method('add')
+ ->with('critical', null, null, 'LOG_BBCODE_CONFIGURATION_ERROR', false, ['[x !x]{TEXT}[/x]', 'Cannot interpret the BBCode definition']);
+
+ $container = new phpbb_mock_container_builder;
+ $container->set('log', $log);
+
+ $fixture = __DIR__ . '/fixtures/malformed_bbcode.xml';
+ $this->get_test_case_helpers()->set_s9e_services($container, $fixture);
+ }
+
+ /**
* @testdox get_configurator() triggers events before and after configuration
*/
public function test_configure_events()