##// END OF EJS Templates
convert: pass absolute paths to git (SEC)...
convert: pass absolute paths to git (SEC) Fixes CVE-2016-3105 (1/1). Previously, it was possible for the repository path passed to git-ls-remote to be misinterpreted as a URL. Always passing an absolute path to git is a simple way to avoid this.

File last commit:

r25472:4d2b9b30 default
r29051:a56296f5 3.8.1 stable
Show More
test-gpg.t
47 lines | 1.0 KiB | text/troff | Tads3Lexer
Matt Mackall
tests: replace exit 80 with #require
r22046 #require gpg
Matt Mackall
tests: unify test-gpg
r12428 Test the GPG extension
$ cat <<EOF >> $HGRCPATH
> [extensions]
> gpg=
>
> [gpg]
Thomas Arendsen Hein
tests: make tests work if directory contains special characters...
r16350 > cmd=gpg --no-permission-warning --no-secmem-warning --no-auto-check-trustdb --homedir "$TESTDIR/gpg"
Matt Mackall
tests: unify test-gpg
r12428 > EOF
$ hg init r
$ cd r
$ echo foo > foo
$ hg ci -Amfoo
adding foo
$ hg sigs
FUJIWARA Katsunori
gpg: accept '--edit' like other commands creating new changeset...
r21711 $ HGEDITOR=cat hg sign -e 0
Martin Geisler
gpg: lowercase messages
r16927 signing 0:e63c23eaa88a
FUJIWARA Katsunori
gpg: accept '--edit' like other commands creating new changeset...
r21711 Added signature for changeset e63c23eaa88a
HG: Enter commit message. Lines beginning with 'HG:' are removed.
HG: Leave message empty to abort commit.
HG: --
HG: user: test
HG: branch 'default'
HG: added .hgsigs
Matt Mackall
tests: unify test-gpg
r12428
$ hg sigs
hgtest 0:e63c23eaa88ae77967edcf4ea194d31167c478b0
$ hg sigcheck 0
e63c23eaa88a is signed by:
hgtest
Greg Ward
test-gpg: make sure gpg does not modify the trustdb.gpg file...
r16289
verify that this test has not modified the trustdb.gpg file back in
the main hg working dir
Matt Mackall
tests: drop explicit $TESTDIR from executables...
r25472 $ md5sum.py "$TESTDIR/gpg/trustdb.gpg"
Thomas Arendsen Hein
test-gpg: replace 825565136235 by md5sum check...
r16349 f6b9c78c65fa9536e7512bb2ceb338ae */gpg/trustdb.gpg (glob)
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
Mads Kiilerich
tests: stop tracking tests/gpg/random_seed...
r20305 don't leak any state to next test run
$ rm -f "$TESTDIR/gpg/random_seed"
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913 $ cd ..