##// END OF EJS Templates
histedit: more precise user message when changeset is missing...
histedit: more precise user message when changeset is missing Now that we explicitly detect duplicated changesets, we can explicitly detect missing ones. We cover the same cases as before, some others and we offer a better error message in all cases.

File last commit:

r17015:73d20de5 default
r19048:1163ff06 default
Show More
test-hgrc.t
203 lines | 5.0 KiB | text/troff | Tads3Lexer
Mads Kiilerich
tests: add missing no-outer-repo requirements...
r17015 hide outer repo
$ hg init
Mads Kiilerich
tests: remove redundant globs...
r12640 Use hgrc within $TESTTMP
$ HGRCPATH=`pwd`/hgrc
$ export HGRCPATH
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 Use an alternate var for scribbling on hgrc to keep check-code from
complaining about the important settings we may be overwriting:
$ HGRC=`pwd`/hgrc
$ export HGRC
Mads Kiilerich
tests: remove redundant globs...
r12640 Basic syntax error
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 $ echo "invalid" > $HGRC
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg version
Mads Kiilerich
tests: remove redundant globs...
r12640 hg: parse error at $TESTTMP/hgrc:1: invalid
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 [255]
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 $ echo "" > $HGRC
Brodie Rao
tests: unify test-hgrc
r12014
Martin Geisler
tests: added a short description to issue numbers...
r12399 Issue1199: Can't use '%' in hgrc (eg url encoded username)
Brodie Rao
tests: unify test-hgrc
r12014
$ hg init "foo%bar"
$ hg clone "foo%bar" foobar
updating to branch default
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd foobar
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ cat .hg/hgrc
Brodie Rao
tests: unify test-hgrc
r12014 [paths]
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 default = $TESTTMP/foo%bar (glob)
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg paths
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 default = $TESTTMP/foo%bar (glob)
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg showconfig
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 bundle.mainreporoot=$TESTTMP/foobar (glob)
paths.default=$TESTTMP/foo%bar (glob)
Brodie Rao
tests: unify test-hgrc
r12014 $ cd ..
issue1829: wrong indentation
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 $ echo '[foo]' > $HGRC
$ echo ' x = y' >> $HGRC
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg version
Mads Kiilerich
tests: remove redundant globs...
r12640 hg: parse error at $TESTTMP/hgrc:2: x = y
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 [255]
Brodie Rao
tests: unify test-hgrc
r12014
$ python -c "print '[foo]\nbar = a\n b\n c \n de\n fg \nbaz = bif cb \n'" \
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 > > $HGRC
Brodie Rao
tests: unify test-hgrc
r12014 $ hg showconfig foo
foo.bar=a\nb\nc\nde\nfg
foo.baz=bif cb
$ FAKEPATH=/path/to/nowhere
$ export FAKEPATH
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 $ echo '%include $FAKEPATH/no-such-file' > $HGRC
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg version
Matt Mackall
tests: glob version number in test-hgrc
r14491 Mercurial Distributed SCM (version *) (glob)
Matt Mackall
tests: update for handling of missing hgrc includes
r14489 (see http://mercurial.selenic.com for more information)
Martin Geisler
commands: bump copyright year
r15834 Copyright (C) 2005-2012 Matt Mackall and others
Matt Mackall
tests: update for handling of missing hgrc includes
r14489 This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Brodie Rao
tests: unify test-hgrc
r12014 $ unset FAKEPATH
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 make sure global options given on the cmdline take precedence
Idan Kamara
dispatch: make sure unspecified global ui options don't override old values
r14748
$ hg showconfig --config ui.verbose=True --quiet
Mads Kiilerich
tests: add missing no-outer-repo requirements...
r17015 bundle.mainreporoot=$TESTTMP
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 ui.verbose=False
ui.debug=False
Idan Kamara
dispatch: make sure unspecified global ui options don't override old values
r14748 ui.quiet=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 $ touch foobar/untracked
$ cat >> foobar/.hg/hgrc <<EOF
> [ui]
> verbose=True
> EOF
$ hg -R foobar st -q
Brodie Rao
tests: unify test-hgrc
r12014 username expansion
$ olduser=$HGUSER
$ unset HGUSER
$ FAKEUSER='John Doe'
$ export FAKEUSER
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 $ echo '[ui]' > $HGRC
$ echo 'username = $FAKEUSER' >> $HGRC
Brodie Rao
tests: unify test-hgrc
r12014
$ hg init usertest
$ cd usertest
$ touch bar
$ hg commit --addremove --quiet -m "added bar"
$ hg log --template "{author}\n"
John Doe
$ cd ..
Nicolas Dumazet
tests: remove useless sed in test-hgrc
r12109 $ hg showconfig
Mads Kiilerich
tests: add missing no-outer-repo requirements...
r17015 bundle.mainreporoot=$TESTTMP
Brodie Rao
tests: unify test-hgrc
r12014 ui.username=$FAKEUSER
$ unset FAKEUSER
$ HGUSER=$olduser
$ export HGUSER
Brodie Rao
showconfig: don't accept multiple sections and one config item...
r12697 showconfig with multiple arguments
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 $ echo "[alias]" > $HGRC
$ echo "log = log -g" >> $HGRC
$ echo "[defaults]" >> $HGRC
$ echo "identify = -n" >> $HGRC
Brodie Rao
showconfig: don't accept multiple sections and one config item...
r12697 $ hg showconfig alias defaults
alias.log=log -g
defaults.identify=-n
$ hg showconfig alias defaults.identify
abort: only one config item permitted
[255]
$ hg showconfig alias.log defaults.identify
abort: only one config item permitted
[255]
Brodie Rao
tests: unify test-hgrc
r12014 HGPLAIN
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 $ echo "[ui]" > $HGRC
$ echo "debug=true" >> $HGRC
$ echo "fallbackencoding=ASCII" >> $HGRC
$ echo "quiet=true" >> $HGRC
$ echo "slash=true" >> $HGRC
$ echo "traceback=true" >> $HGRC
$ echo "verbose=true" >> $HGRC
$ echo "style=~/.hgstyle" >> $HGRC
$ echo "logtemplate={node}" >> $HGRC
$ echo "[defaults]" >> $HGRC
$ echo "identify=-n" >> $HGRC
$ echo "[alias]" >> $HGRC
$ echo "log=log -g" >> $HGRC
Brodie Rao
tests: unify test-hgrc
r12014
customized hgrc
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg showconfig
Mads Kiilerich
tests: remove redundant globs...
r12640 read config from: $TESTTMP/hgrc
$TESTTMP/hgrc:13: alias.log=log -g
Mads Kiilerich
tests: add missing no-outer-repo requirements...
r17015 none: bundle.mainreporoot=$TESTTMP
Mads Kiilerich
tests: remove redundant globs...
r12640 $TESTTMP/hgrc:11: defaults.identify=-n
$TESTTMP/hgrc:2: ui.debug=true
$TESTTMP/hgrc:3: ui.fallbackencoding=ASCII
$TESTTMP/hgrc:4: ui.quiet=true
$TESTTMP/hgrc:5: ui.slash=true
$TESTTMP/hgrc:6: ui.traceback=true
$TESTTMP/hgrc:7: ui.verbose=true
$TESTTMP/hgrc:8: ui.style=~/.hgstyle
$TESTTMP/hgrc:9: ui.logtemplate={node}
Brodie Rao
tests: unify test-hgrc
r12014
plain hgrc
$ HGPLAIN=; export HGPLAIN
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg showconfig --config ui.traceback=True --debug
Mads Kiilerich
tests: remove redundant globs...
r12640 read config from: $TESTTMP/hgrc
Mads Kiilerich
tests: add missing no-outer-repo requirements...
r17015 none: bundle.mainreporoot=$TESTTMP
Brodie Rao
tests: unify test-hgrc
r12014 none: ui.traceback=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 none: ui.verbose=False
Brodie Rao
tests: unify test-hgrc
r12014 none: ui.debug=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 none: ui.quiet=False
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849
plain mode with exceptions
$ cat > plain.py <<EOF
> def uisetup(ui):
> ui.write('plain: %r\n' % ui.plain())
> EOF
Matt Mackall
check-code: fix issues with finding patterns in unified tests, fix tests...
r15372 $ echo "[extensions]" >> $HGRC
$ echo "plain=./plain.py" >> $HGRC
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 $ HGPLAINEXCEPT=; export HGPLAINEXCEPT
$ hg showconfig --config ui.traceback=True --debug
"Yann E. MORIN"
ui: test plain mode against exceptions...
r14372 plain: True
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 read config from: $TESTTMP/hgrc
Mads Kiilerich
tests: add missing no-outer-repo requirements...
r17015 none: bundle.mainreporoot=$TESTTMP
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 $TESTTMP/hgrc:15: extensions.plain=./plain.py
none: ui.traceback=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 none: ui.verbose=False
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 none: ui.debug=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 none: ui.quiet=False
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 $ unset HGPLAIN
$ hg showconfig --config ui.traceback=True --debug
"Yann E. MORIN"
ui: test plain mode against exceptions...
r14372 plain: True
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 read config from: $TESTTMP/hgrc
Mads Kiilerich
tests: add missing no-outer-repo requirements...
r17015 none: bundle.mainreporoot=$TESTTMP
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 $TESTTMP/hgrc:15: extensions.plain=./plain.py
none: ui.traceback=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 none: ui.verbose=False
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 none: ui.debug=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 none: ui.quiet=False
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 $ HGPLAINEXCEPT=i18n; export HGPLAINEXCEPT
$ hg showconfig --config ui.traceback=True --debug
"Yann E. MORIN"
ui: test plain mode against exceptions...
r14372 plain: True
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 read config from: $TESTTMP/hgrc
Mads Kiilerich
tests: add missing no-outer-repo requirements...
r17015 none: bundle.mainreporoot=$TESTTMP
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 $TESTTMP/hgrc:15: extensions.plain=./plain.py
none: ui.traceback=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 none: ui.verbose=False
Brodie Rao
HGPLAIN: allow exceptions to plain mode, like i18n, via HGPLAINEXCEPT...
r13849 none: ui.debug=True
Idan Kamara
dispatch: make sure global options on the command line take precedence...
r14992 none: ui.quiet=False