Spaces:
Build error
Build error
File size: 1,435 Bytes
51ff9e5 |
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 |
"""Test that the translation completeness check works correctly."""
import os
import subprocess
import unittest
class TestTranslationCompleteness(unittest.TestCase):
"""Test that the translation completeness check works correctly."""
def test_translation_completeness_check_runs(self):
"""Test that the translation completeness check script can be executed."""
frontend_dir = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(__file__)))), "frontend")
script_path = os.path.join(frontend_dir, "scripts", "check-translation-completeness.cjs")
# Verify the script exists
self.assertTrue(os.path.exists(script_path), f"Script not found at {script_path}")
# Verify the script is executable
self.assertTrue(os.access(script_path, os.X_OK), f"Script at {script_path} is not executable")
# Run the script (it may fail due to missing translations, but we just want to verify it runs)
try:
subprocess.run(
["node", script_path],
cwd=frontend_dir,
check=False,
capture_output=True,
text=True
)
# We don't assert on the return code because it might fail due to missing translations
except Exception as e:
self.fail(f"Failed to run translation completeness check: {e}") |