diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-10-23 14:31:21 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-10-23 14:31:21 +0200 |
commit | 73006ccdf57c36945ddaa2a15a0a40c005f07569 (patch) | |
tree | 3cde36cbd551c30d2aea229162394e813a6bcda2 | |
parent | e530476e6c5d2319f3a0a09dfe73ec181e923325 (diff) | |
download | volse-hubzilla-73006ccdf57c36945ddaa2a15a0a40c005f07569.tar.gz volse-hubzilla-73006ccdf57c36945ddaa2a15a0a40c005f07569.tar.bz2 volse-hubzilla-73006ccdf57c36945ddaa2a15a0a40c005f07569.zip |
tests: Tests for BBCode cleanup fix
Somehow I forgot to include this in the patch that fixed the issue.
-rw-r--r-- | tests/unit/CleanupBBCodeTest.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/unit/CleanupBBCodeTest.php b/tests/unit/CleanupBBCodeTest.php new file mode 100644 index 000000000..8e19b1d7e --- /dev/null +++ b/tests/unit/CleanupBBCodeTest.php @@ -0,0 +1,27 @@ +<?php +/* + * SPDX-FileCopyrightText: 2024 Hubzilla Community + * SPDX-FileContributor: Harald Eilertsen + * + * SPDX-License-Identifier: MIT + */ + +namespace Zotlabs\Tests\Unit; + +use PHPUnit\Framework\Attributes\DataProvider; + +class CleanupBBCodeTest extends UnitTestCase { + #[DataProvider("cleanup_bbcode_provider")] + public function test_cleanup_bbcode(string $expected, string $input): void { + $this->assertEquals($expected, cleanup_bbcode($input)); + } + + public static function cleanup_bbcode_provider(): array { + return [ + 'url followed by newline' => [ + "#^[url=https://example.com]https://example.com[/url]\na test link", + "https://example.com\na test link", + ] + ]; + } +} |