mirror of https://github.com/zulip/zulip.git
Add tools/check-handlebar-templates.
(imported from commit e9f634be4d3699eb2d4fc12f6311b42ead710427)
This commit is contained in:
parent
a78a1ec36c
commit
5c4fb277c1
|
@ -0,0 +1,86 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
from zulip_tools import check_output
|
||||||
|
import re
|
||||||
|
import glob
|
||||||
|
|
||||||
|
class Record:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def validate(fn):
|
||||||
|
text = open(fn).read()
|
||||||
|
|
||||||
|
state = Record()
|
||||||
|
|
||||||
|
def NoStartTag(end_tag):
|
||||||
|
raise Exception('No start tag for %s' % end_tag)
|
||||||
|
|
||||||
|
def start_tag_matcher(s):
|
||||||
|
start_line = state.line
|
||||||
|
start_col = state.col
|
||||||
|
state.depth += 1
|
||||||
|
tag = s[1:-1]
|
||||||
|
start_tag = tag.split()[0]
|
||||||
|
old_matcher = state.matcher
|
||||||
|
def f(end_tag):
|
||||||
|
problem = None
|
||||||
|
if start_tag != end_tag[2:-1]:
|
||||||
|
problem = 'Mismatched tag.'
|
||||||
|
elif state.line > start_line + 1 and state.col != start_col:
|
||||||
|
problem = 'Bad indentation.'
|
||||||
|
if problem:
|
||||||
|
raise Exception('''
|
||||||
|
fn: %s
|
||||||
|
%s
|
||||||
|
start:
|
||||||
|
%s
|
||||||
|
line %d, col %d
|
||||||
|
end tag:
|
||||||
|
%s
|
||||||
|
line %d, col %d
|
||||||
|
''' % (fn, problem, s, start_line, start_col, end_tag, state.line, state.col))
|
||||||
|
state.matcher = old_matcher
|
||||||
|
state.depth -= 1
|
||||||
|
return f
|
||||||
|
|
||||||
|
state.depth = 0
|
||||||
|
state.i = 0
|
||||||
|
state.line = 1
|
||||||
|
state.col = 1
|
||||||
|
state.matcher = NoStartTag
|
||||||
|
|
||||||
|
def advance(n):
|
||||||
|
for _ in range(n):
|
||||||
|
state.i += 1
|
||||||
|
if state.i >= 0 and text[state.i - 1] == '\n':
|
||||||
|
state.line += 1
|
||||||
|
state.col = 1
|
||||||
|
else:
|
||||||
|
state.col += 1
|
||||||
|
|
||||||
|
while True:
|
||||||
|
if state.i >= len(text):
|
||||||
|
break
|
||||||
|
c = text[state.i]
|
||||||
|
if c == '<':
|
||||||
|
end = state.i + 1
|
||||||
|
while end < len(text) and text[end] != '>':
|
||||||
|
end += 1
|
||||||
|
if text[end] != '>':
|
||||||
|
raise Exception('Tag missing >')
|
||||||
|
s = text[state.i:end+1]
|
||||||
|
if s.startswith('</'):
|
||||||
|
state.matcher(s)
|
||||||
|
else:
|
||||||
|
if not s.endswith('/>'):
|
||||||
|
state.matcher = start_tag_matcher(s)
|
||||||
|
advance(len(s))
|
||||||
|
continue
|
||||||
|
advance(1)
|
||||||
|
|
||||||
|
assert state.depth == 0
|
||||||
|
|
||||||
|
git_files = map(str.strip, check_output(['git', 'ls-files']).split('\n'))
|
||||||
|
templates = [fn for fn in git_files if fn.endswith('.handlebars')]
|
||||||
|
assert len(templates) >= 10 # sanity check that we are actually doing work
|
||||||
|
for fn in templates:
|
||||||
|
validate(fn)
|
|
@ -152,6 +152,13 @@ try:
|
||||||
sys.stdout.write('\x1B[1;31m')
|
sys.stdout.write('\x1B[1;31m')
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
||||||
|
check_handlebar_templates_pid = os.fork()
|
||||||
|
if check_handlebar_templates_pid == 0:
|
||||||
|
logging.info("start check-handlebar-templates")
|
||||||
|
result = subprocess.call(['tools/check-handlebar-templates'])
|
||||||
|
logging.info("finish check-handlebar-templates")
|
||||||
|
os._exit(result)
|
||||||
|
|
||||||
jslint_pid = os.fork()
|
jslint_pid = os.fork()
|
||||||
if jslint_pid == 0:
|
if jslint_pid == 0:
|
||||||
logging.info("start jslint")
|
logging.info("start jslint")
|
||||||
|
@ -181,6 +188,10 @@ try:
|
||||||
logging.info("finish pyflakes")
|
logging.info("finish pyflakes")
|
||||||
os._exit(1 if failed else 0)
|
os._exit(1 if failed else 0)
|
||||||
|
|
||||||
|
(_, status) = os.waitpid(check_handlebar_templates_pid, 0)
|
||||||
|
if status != 0:
|
||||||
|
failed = True
|
||||||
|
|
||||||
(_, status) = os.waitpid(custom_pid, 0)
|
(_, status) = os.waitpid(custom_pid, 0)
|
||||||
if status != 0:
|
if status != 0:
|
||||||
failed = True
|
failed = True
|
||||||
|
|
Loading…
Reference in New Issue