##// END OF EJS Templates
logcmdutil: rewrite jsonchangeset printer to be backed by jsonformatter...
logcmdutil: rewrite jsonchangeset printer to be backed by jsonformatter This is a bit slower than the original implementation, but I don't think that would actually matter. It's still faster than full templating. $ hg log -Tjson -r0:5000 --time > /dev/null (orig) time: real 1.550 secs (user 1.500+0.000 sys 0.040+0.000) (new) time: real 1.810 secs (user 1.740+0.000 sys 0.070+0.000) cf. $ hg log -Tdefault -r0:5000 --time > /dev/null time: real 4.980 secs (user 4.850+0.000 sys 0.130+0.000) $ hg log -r0:5000 --time > /dev/null time: real 2.340 secs (user 2.220+0.000 sys 0.100+0.000) $ hg log -r0:5000 -q --time > /dev/null time: real 0.750 secs (user 0.670+0.000 sys 0.070+0.000) The test output changes because keys are sorted alphabetically.

File last commit:

r37290:7d3bc1d4 default
r37790:814151cd default
Show More
test-template-engine.t
64 lines | 1.8 KiB | text/troff | Tads3Lexer
/ tests / test-template-engine.t
Matt Mackall
tests: unify test-template-engine
r12493
$ cat > engine.py << EOF
>
Yuya Nishihara
templater: move stringify() to templateutil module...
r36938 > from mercurial import (
Yuya Nishihara
py3: make test-template-engine.t bytes-safe
r36988 > pycompat,
Yuya Nishihara
templater: move stringify() to templateutil module...
r36938 > templater,
> templateutil,
> )
Matt Mackall
tests: unify test-template-engine
r12493 >
Yuya Nishihara
test-template-engine: deduplicate methods of custom template engine
r36987 > class mytemplater(templater.engine):
> def _load(self, t):
> return self._loader(t)
Yuya Nishihara
templatekw: add 'requires' flag to switch to exception-safe interface...
r36463 >
Matt Mackall
tests: unify test-template-engine
r12493 > def process(self, t, map):
Yuya Nishihara
test-template-engine: deduplicate methods of custom template engine
r36987 > tmpl = self._load(t)
Yuya Nishihara
templater: register keywords to defaults table...
r35499 > props = self._defaults.copy()
> props.update(map)
Pulkit Goyal
py3: use dict.items() instead of dict.iteritems() in tests...
r36345 > for k, v in props.items():
Yuya Nishihara
test-template-engine: do not evaluate unused keywords by custom engine...
r36989 > if b'{{%s}}' % k not in tmpl:
Matt Mackall
tests: unify test-template-engine
r12493 > continue
Yuya Nishihara
templatekw: add 'requires' flag to switch to exception-safe interface...
r36463 > if callable(v) and getattr(v, '_requires', None) is None:
Yuya Nishihara
templater: keep default resources per template engine (API)...
r35484 > props = self._resources.copy()
> props.update(map)
Yuya Nishihara
py3: make test-template-engine.t bytes-safe
r36988 > v = v(**pycompat.strkwargs(props))
Yuya Nishihara
templatekw: add 'requires' flag to switch to exception-safe interface...
r36463 > elif callable(v):
> v = v(self, props)
Yuya Nishihara
templater: pass (context, mapping) down to unwraphybrid()...
r37290 > v = templateutil.stringify(self, props, v)
Yuya Nishihara
py3: make test-template-engine.t bytes-safe
r36988 > tmpl = tmpl.replace(b'{{%s}}' % k, v)
Matt Mackall
tests: unify test-template-engine
r12493 > yield tmpl
>
Yuya Nishihara
py3: make test-template-engine.t bytes-safe
r36988 > templater.engines[b'my'] = mytemplater
Matt Mackall
tests: unify test-template-engine
r12493 > EOF
$ hg init test
$ echo '[extensions]' > test/.hg/hgrc
$ echo "engine = `pwd`/engine.py" >> test/.hg/hgrc
$ cd test
$ cat > mymap << EOF
> changeset = my:changeset.txt
> EOF
$ cat > changeset.txt << EOF
> {{rev}} {{node}} {{author}}
> EOF
$ hg ci -Ama
adding changeset.txt
adding mymap
$ hg log --style=./mymap
0 97e5f848f0936960273bbf75be6388cd0350a32b test
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
epriestley
templatekw: add parent1, parent1node, parent2, parent2node keywords...
r17355 $ cat > changeset.txt << EOF
Bryan O'Sullivan
templatekw: merge, preferring the second implementation
r17358 > {{p1rev}} {{p1node}} {{p2rev}} {{p2node}}
epriestley
templatekw: add parent1, parent1node, parent2, parent2node keywords...
r17355 > EOF
$ hg ci -Ama
$ hg log --style=./mymap
0 97e5f848f0936960273bbf75be6388cd0350a32b -1 0000000000000000000000000000000000000000
-1 0000000000000000000000000000000000000000 -1 0000000000000000000000000000000000000000
Yuya Nishihara
templater: give better error message for invalid engine type...
r28831 invalid engine type:
$ echo 'changeset = unknown:changeset.txt' > unknownenginemap
$ hg log --style=./unknownenginemap
abort: invalid template engine: unknown
[255]
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913 $ cd ..