Mercurial > public > mercurial-scm > hg-stable
diff tests/test-branchmap @ 9879:7bb004fc14ec stable
Extend test-branchmap to test c51494c53841
(encoding fallback in branchmap to maintain compatibility with 1.3.x)
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 18 Nov 2009 16:47:20 +0100 |
parents | 79e749b26b2b |
children |
line wrap: on
line diff
--- a/tests/test-branchmap Wed Nov 18 15:20:08 2009 +0100 +++ b/tests/test-branchmap Wed Nov 18 16:47:20 2009 +0100 @@ -21,3 +21,38 @@ hg -R a --encoding utf-8 log kill `cat hg.pid` + + +# verify 7e7d56fe4833 (encoding fallback in branchmap to maintain compatibility with 1.3.x) + +cat <<EOF > oldhg +import sys +from mercurial import ui, hg, commands + +class StdoutWrapper(object): + def __init__(self, stdout): + self._file = stdout + + def write(self, data): + if data == '47\n': + # latin1 encoding is one %xx (3 bytes) shorter + data = '44\n' + elif data.startswith('%C3%A6 '): + # translate to latin1 encoding + data = '%%E6 %s' % data[7:] + self._file.write(data) + + def __getattr__(self, name): + return getattr(self._file, name) + +sys.stdout = StdoutWrapper(sys.stdout) +sys.stderr = StdoutWrapper(sys.stderr) + +myui = ui.ui() +repo = hg.repository(myui, 'a') +commands.serve(myui, repo, stdio=True) +EOF + +echo baz >> b/foo +hg -R b ci -m baz +hg push -R b -e 'python oldhg' ssh://dummy/ --encoding latin1