Mercurial > public > mercurial-scm > hg
diff tests/test-commit.t @ 23598:c02a05cc6f5e stable
pathauditor: check for codepoints ignored on OS X
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 16 Dec 2014 13:08:17 -0500 |
parents | 75618a223e18 |
children | 6dad422ecc5a |
line wrap: on
line diff
--- a/tests/test-commit.t Tue Dec 16 13:07:10 2014 -0500 +++ b/tests/test-commit.t Tue Dec 16 13:08:17 2014 -0500 @@ -457,4 +457,21 @@ 0 0 6 ..... 0 26d3ca0dfd18 000000000000 000000000000 (re) 1 6 7 ..... 1 d267bddd54f7 26d3ca0dfd18 000000000000 (re) +verify pathauditor blocks evil filepaths + $ cat > evil-commit.py <<EOF + > from mercurial import ui, hg, context, node + > notrc = u".h\u200cg".encode('utf-8') + '/hgrc' + > u = ui.ui() + > r = hg.repository(u, '.') + > def filectxfn(repo, memctx, path): + > return context.memfilectx(repo, path, '[hooks]\nupdate = echo owned') + > c = context.memctx(r, [r['tip'].node(), node.nullid], + > 'evil', [notrc], filectxfn, 0) + > r.commitctx(c) + > EOF + $ $PYTHON evil-commit.py + $ hg co --clean tip + abort: path contains illegal component: .h\xe2\x80\x8cg/hgrc (esc) + [255] + $ cd ..