# # This file is part of pretix (Community Edition). # # Copyright (C) 2014-2020 Raphael Michel and contributors # Copyright (C) 2020-2021 rami.io GmbH and contributors # # This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General # Public License as published by the Free Software Foundation in version 3 of the License. # # ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are # applicable granting you additional permissions and placing additional restrictions on your usage of this software. # Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive # this file, see . # # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along with this program. If not, see # . # import pytest from pretix.base.templatetags.rich_text import ( markdown_compile_email, rich_text, rich_text_snippet, ) @pytest.mark.parametrize("link", [ # Test link detection ("google.com", 'google.com'), # Test abslink_callback ("[Call](tel:+12345)", 'Call'), ("[Foo](/foo)", 'Foo'), ("mail@example.org", 'mail@example.org'), # Test truelink_callback ('evilsite.com', 'evilsite.com'), ('cool-example.eu', 'cool-example.eu'), ('Evil GmbH & Co. KG', 'Evil GmbH & Co. KG'), ('Evil Site', 'Evil Site'), ('evilsite.com', 'evilsite.com'), ('goodsite.com', 'https://evilsite.com'), ('goodsite.com', 'https://goodsite.com.evilsite.com'), ('evilsite.com', 'evilsite.com'), ('broken', 'broken'), ]) def test_linkify_abs(link): input, output = link assert rich_text_snippet(input, safelinks=False) == output assert rich_text(input, safelinks=False) == f'

{output}

' assert markdown_compile_email(input) == f'

{output}

'