6bc5671491
Apply: git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1 And resolve conflicts. QubesOS/qubes-issues#2574
99 lines
3.6 KiB
Python
99 lines
3.6 KiB
Python
# Copyright (C) 2015 Red Hat, Inc.
|
|
#
|
|
# This copyrighted material is made available to anyone wishing to use,
|
|
# modify, copy, or redistribute it subject to the terms and conditions of
|
|
# the GNU General Public License v.2, or (at your option) any later version.
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY expressed or implied, including the implied warranties of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
# Public License for more details. You should have received a copy of the
|
|
# GNU General Public License along with this program; if not, write to the
|
|
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the
|
|
# source code or documentation are not subject to the GNU General Public
|
|
# License and may only be used or replicated with the express permission of
|
|
# Red Hat, Inc.
|
|
#
|
|
# Red Hat Author(s): David Shea <dshea@redhat.com>
|
|
|
|
import unittest
|
|
import unittest.mock
|
|
from polib import POEntry, POFile
|
|
import tempfile
|
|
|
|
from translation_canary.translatable.test_markup import test_markup
|
|
from translation_canary.translatable.test_comment import test_comment
|
|
|
|
from translation_canary.translatable import testString, testPOT
|
|
|
|
class TestMarkup(unittest.TestCase):
|
|
def test_ok(self):
|
|
# no markup
|
|
test_markup(POEntry(msgid="test string"))
|
|
|
|
# internal markup
|
|
test_markup(POEntry(msgid="<b>test</b> string"))
|
|
|
|
def test_unnecessary_markup(self):
|
|
self.assertRaises(AssertionError, test_markup, POEntry(msgid="<b>test string</b>"))
|
|
|
|
class TestComment(unittest.TestCase):
|
|
def test_ok(self):
|
|
# Perfectly fine string
|
|
test_comment(POEntry(msgid="Hello, I am a test string"))
|
|
|
|
# single-character string with a comment
|
|
test_comment(POEntry(msgid="c", comment="TRANSLATORS: 'c' to continue"))
|
|
|
|
def test_no_comment(self):
|
|
self.assertRaises(AssertionError, test_comment, POEntry(msgid="c"))
|
|
|
|
# Test the top-level functions
|
|
# fake tests for testing with
|
|
def _true_test(_s):
|
|
pass
|
|
|
|
def _false_test(_s):
|
|
raise AssertionError("no good")
|
|
|
|
def _picky_test(s):
|
|
if s.msgstr.startswith("p"):
|
|
raise AssertionError("I don't like this one")
|
|
|
|
class TestTestString(unittest.TestCase):
|
|
@unittest.mock.patch("translation_canary.translatable._tests", [_true_test])
|
|
def test_success(self):
|
|
self.assertTrue(testString(POEntry()))
|
|
|
|
@unittest.mock.patch("translation_canary.translatable._tests", [_false_test])
|
|
def test_failure(self):
|
|
self.assertFalse(testString(POEntry()))
|
|
|
|
@unittest.mock.patch("translation_canary.translatable._tests", [_picky_test])
|
|
class TestTestPOT(unittest.TestCase):
|
|
def test_success(self):
|
|
with tempfile.NamedTemporaryFile(suffix=".pot") as potfile:
|
|
poobj = POFile()
|
|
poobj.append(POEntry(msgstr="test string"))
|
|
poobj.save(potfile.name)
|
|
|
|
self.assertTrue(testPOT(potfile.name))
|
|
|
|
def test_some_failure(self):
|
|
with tempfile.NamedTemporaryFile(suffix=".pot") as potfile:
|
|
poobj = POFile()
|
|
poobj.append(POEntry(msgstr="test string"))
|
|
poobj.append(POEntry(msgstr="pest string"))
|
|
poobj.save(potfile.name)
|
|
|
|
self.assertFalse(testPOT(potfile.name))
|
|
|
|
def test_all_failure(self):
|
|
with tempfile.NamedTemporaryFile(suffix=".pot") as potfile:
|
|
poobj = POFile()
|
|
poobj.append(POEntry(msgstr="pest string"))
|
|
poobj.append(POEntry(msgstr="past string"))
|
|
poobj.save(potfile.name)
|
|
|
|
self.assertFalse(testPOT(potfile.name))
|