Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
870bc48f
Commit
870bc48f
authored
Jul 14, 2015
by
Philipp Wolfer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added checks for AngularJS interpolation format.
parent
b4e3c271
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
150 additions
and
0 deletions
+150
-0
weblate/trans/checks/angularjs.py
weblate/trans/checks/angularjs.py
+69
-0
weblate/trans/tests/test_angularjs_checks.py
weblate/trans/tests/test_angularjs_checks.py
+81
-0
No files found.
weblate/trans/checks/angularjs.py
0 → 100644
View file @
870bc48f
# -*- coding: utf-8 -*-
#
# Copyright © 2012 - 2015 Michal Čihař <michal@cihar.com>
# Copyright © 2015 Philipp Wolfer <ph.wolfer@gmail.com>
#
# This file is part of Weblate <http://weblate.org/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from
weblate.trans.checks.base
import
TargetCheck
from
django.utils.translation
import
ugettext_lazy
as
_
import
re
ANGULARJS_INTERPOLATION_MATCH
=
re
.
compile
(
r'''
{{ # start symbol
\
s* # ig
nore whitespace
(.+?)
\
s* # ig
nore whitespace
}} # end symbol
'''
,
re
.
VERBOSE
)
WHITESPACE
=
re
.
compile
(
r'\
s+
')
class AngularJSInterpolationCheck(TargetCheck):
'''
Check for AngularJS interpolation string
'''
check_id = '
angularjs
'
name = _('
Mismatched
AngularJS
interpolation
strings
')
description = _('
AngularJS
interpolation
strings
do
not
match
source
')
severity = '
danger
'
def check_single(self, source, target, unit, cache_slot):
# Try geting source parsing from cache
src_match = self.get_cache(unit, cache_slot)
# Cache miss
if src_match is None:
src_match = ANGULARJS_INTERPOLATION_MATCH.findall(source)
self.set_cache(unit, src_match, cache_slot)
# Any interpolation strings in source?
if len(src_match) == 0:
return False
# Parse target
tgt_match = ANGULARJS_INTERPOLATION_MATCH.findall(target)
if len(src_match) != len(tgt_match):
return True
# Remove whitespace
src_tags = set([re.sub(WHITESPACE, '', x) for x in src_match])
tgt_tags = set([re.sub(WHITESPACE, '', x) for x in tgt_match])
return src_tags != tgt_tags
weblate/trans/tests/test_angularjs_checks.py
0 → 100644
View file @
870bc48f
# -*- coding: utf-8 -*-
#
# Copyright © 2012 - 2015 Michal Čihař <michal@cihar.com>
# Copyright © 2015 Philipp Wolfer <ph.wolfer@gmail.com>
#
# This file is part of Weblate <http://weblate.org/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""
Tests for AngularJS checks.
"""
from
unittest
import
TestCase
from
weblate.trans.checks.angularjs
import
AngularJSInterpolationCheck
from
weblate.trans.tests.test_checks
import
MockUnit
class
AngularJSInterpolationCheckTest
(
TestCase
):
def
setUp
(
self
):
self
.
check
=
AngularJSInterpolationCheck
()
def
test_no_format
(
self
):
self
.
assertFalse
(
self
.
check
.
check_single
(
'strins'
,
'string'
,
MockUnit
(
'angularjs_no_format'
),
0
))
def
test_format
(
self
):
self
.
assertFalse
(
self
.
check
.
check_single
(
u'{{name}} string {{other}}'
,
u'{{name}} {{other}} string'
,
MockUnit
(
'angularjs_format'
),
0
))
def
test_format_ignore_position
(
self
):
self
.
assertFalse
(
self
.
check
.
check_single
(
u'{{name}} string {{other}}'
,
u'{{other}} string {{name}}'
,
MockUnit
(
'angularjs_format_ignore_position'
),
0
))
def
test_different_whitespace
(
self
):
self
.
assertFalse
(
self
.
check
.
check_single
(
u'{{ name }} string'
,
u'{{name}} string'
,
MockUnit
(
'angularjs_different_whitespace'
),
0
))
def
test_missing_format
(
self
):
self
.
assertTrue
(
self
.
check
.
check_single
(
u'{{name}} string'
,
u'string'
,
MockUnit
(
'angularjs_missing_format'
),
0
))
def
test_wrong_value
(
self
):
self
.
assertTrue
(
self
.
check
.
check_single
(
u'{{name}} string'
,
u'{{notname}} string'
,
MockUnit
(
'angularjs_wrong_value'
),
0
))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment