1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import shutil
from pathlib import Path
from tempfile import mkdtemp
import pytest
from _pytest.fixtures import fixture
import quodlibet
from gdist import (create_po, GDistribution, create_pot, update_po, po_stats, build_po,
build_mo, install_mo)
from quodlibet.util import get_module_dir
from tests.test_po import has_gettext_util
SRC_FILE = Path(get_module_dir(quodlibet)).parent / "quodlibet.py"
@fixture
def dist(temp_po_dir) -> GDistribution:
dist = GDistribution()
dist.packages = []
dist.po_directory = str(temp_po_dir)
return dist
@fixture
def temp_po_dir() -> Path:
out_path = Path(mkdtemp())
po_path = out_path / "po"
po_path.mkdir()
with open(po_path / "POTFILES.in", "w") as f:
f.write(f"{SRC_FILE.name}\n")
shutil.copy(SRC_FILE, out_path / SRC_FILE.name)
yield po_path
shutil.rmtree(po_path)
@pytest.mark.skipif(not has_gettext_util(), reason="no gettext")
class TestPoCommands:
def test_create_po_command(self, dist):
cmd = create_po(dist)
cmd.lang = "fr_FR"
cmd.run()
def test_create_pot_command(self, dist):
cmd = create_pot(dist)
cmd.run()
def test_update_po_command(self, dist, temp_po_dir):
(temp_po_dir / "en_GB.po").touch()
cmd = update_po(dist)
cmd.lang = "en_GB"
cmd.run()
def test_po_stats_command(self, dist, temp_po_dir):
cmd = po_stats(dist)
cmd.lang = "en_GB"
cmd.run()
def test_build_po(self, dist):
cmd = build_po(dist)
cmd.run()
def test_build_mo(self, dist, temp_po_dir):
cmd = build_mo(dist)
# Probably should create another dir, but this will do for now
cmd.build_base = str(temp_po_dir)
cmd.po_build_dir = str(temp_po_dir)
cmd.run()
def test_install_mo(self, dist, temp_po_dir):
cmd = install_mo(dist)
cmd.build_base = str(temp_po_dir)
out = mkdtemp()
# These need to exist for the command to succeed
(Path(out) / "share" / "locale").mkdir(parents=True)
(temp_po_dir / "share" / "locale").mkdir(parents=True)
cmd.install_dir = out
cmd.run()
shutil.rmtree(out)
|