diff options
author | Mario <mario@mariovavti.com> | 2024-05-02 14:43:22 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-05-02 14:43:22 +0000 |
commit | fb4568001d5669055f8a5c010b04fd460bb43a43 (patch) | |
tree | 35213fd8177035c4babb3125bfc30ecef351d737 /tests/unit | |
parent | 5eab32a65bdaa0b8bcc31bae9f43b53814bf1636 (diff) | |
parent | 630cecd740762cc6111468b46644fcae85a360b3 (diff) | |
download | volse-hubzilla-fb4568001d5669055f8a5c010b04fd460bb43a43.tar.gz volse-hubzilla-fb4568001d5669055f8a5c010b04fd460bb43a43.tar.bz2 volse-hubzilla-fb4568001d5669055f8a5c010b04fd460bb43a43.zip |
Merge branch 'fix-broken-get_rpost_path' into 'dev'
Libzot: get_rpost_path was broken for URL's with no port.
See merge request hubzilla/core!2123
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/Lib/ZotlibTest.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/unit/Lib/ZotlibTest.php b/tests/unit/Lib/ZotlibTest.php new file mode 100644 index 000000000..05522678f --- /dev/null +++ b/tests/unit/Lib/ZotlibTest.php @@ -0,0 +1,34 @@ +<?php +class LibzotTest extends \Zotlabs\Tests\Unit\UnitTestCase { + /** + * Test the `get_rpost_path` function. + * + * @dataProvider get_rpost_path_provider + */ + public function test_get_rpost_path(string $expected, string $xchan_url) : void { + $observer = [ 'xchan_url' => $xchan_url ]; + + $this->assertEquals($expected, \Zotlabs\Lib\Libzot::get_rpost_path($observer)); + } + + private function get_rpost_path_provider() : array { + return [ + 'xchan_url without port' => [ + 'https://example.com/rpost?f=', + 'https://example.com' + ], + 'xchan_url with port' => [ + 'https://example.com:666/rpost?f=', + 'https://example.com:666' + ], + 'xchan_url ignores path and args' => [ + 'https://example.com/rpost?f=', + 'https://example.com/path?arg1=balle' + ], + 'xchan_url with no scheme should default to https' => [ + 'https://example.com/rpost?f=', + 'example.com', + ], + ]; + } +} |