2021-08-20 10:24:46 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import re
|
|
|
|
import glob
|
|
|
|
import json
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Find used keys in python code #
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
def find_expected_string_keys():
|
|
|
|
|
|
|
|
# Try to find :
|
|
|
|
# m18n.g( "foo"
|
|
|
|
# MoulinetteError("foo"
|
2021-08-20 14:18:54 +02:00
|
|
|
# # i18n: "some_key"
|
2021-08-20 10:24:46 +02:00
|
|
|
p1 = re.compile(r"m18n\.g\(\s*[\"\'](\w+)[\"\']")
|
2021-08-20 14:18:54 +02:00
|
|
|
p2 = re.compile(r"Moulinette[a-zA-Z]+\(\s*[\'\"](\w+)[\'\"]")
|
|
|
|
p3 = re.compile(r"# i18n: [\'\"]?(\w+)[\'\"]?")
|
2021-08-20 10:24:46 +02:00
|
|
|
|
|
|
|
python_files = glob.glob("moulinette/*.py")
|
|
|
|
python_files.extend(glob.glob("moulinette/*/*.py"))
|
|
|
|
|
|
|
|
for python_file in python_files:
|
|
|
|
content = open(python_file).read()
|
|
|
|
for m in p1.findall(content):
|
|
|
|
if m.endswith("_"):
|
|
|
|
continue
|
|
|
|
yield m
|
|
|
|
for m in p2.findall(content):
|
|
|
|
if m.endswith("_"):
|
|
|
|
continue
|
|
|
|
yield m
|
|
|
|
for m in p3.findall(content):
|
|
|
|
if m.endswith("_"):
|
|
|
|
continue
|
|
|
|
yield m
|
|
|
|
|
2021-08-23 15:25:51 +02:00
|
|
|
|
2021-08-20 10:24:46 +02:00
|
|
|
###############################################################################
|
|
|
|
# Load en locale json keys #
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
def keys_defined_for_en():
|
|
|
|
return json.loads(open("locales/en.json").read()).keys()
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Compare keys used and keys defined #
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
expected_string_keys = set(find_expected_string_keys())
|
|
|
|
keys_defined = set(keys_defined_for_en())
|
|
|
|
|
2021-08-22 11:17:01 +02:00
|
|
|
|
2021-08-20 10:24:46 +02:00
|
|
|
def test_undefined_i18n_keys():
|
|
|
|
undefined_keys = expected_string_keys.difference(keys_defined)
|
|
|
|
undefined_keys = sorted(undefined_keys)
|
|
|
|
|
|
|
|
if undefined_keys:
|
|
|
|
raise Exception(
|
|
|
|
"Those i18n keys should be defined in en.json:\n"
|
|
|
|
" - " + "\n - ".join(undefined_keys)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_unused_i18n_keys():
|
|
|
|
|
|
|
|
unused_keys = keys_defined.difference(expected_string_keys)
|
|
|
|
unused_keys = sorted(unused_keys)
|
|
|
|
|
|
|
|
if unused_keys:
|
|
|
|
raise Exception(
|
|
|
|
"Those i18n keys appears unused:\n" " - " + "\n - ".join(unused_keys)
|
|
|
|
)
|