##// END OF EJS Templates
debugcommands: introduce new debugrequirements command...
debugcommands: introduce new debugrequirements command This for now just prints out the list of current requirements. In future this will be helpful in reading requirements from couple of sources, and checking which requirement comes from where. Differential Revision: https://phab.mercurial-scm.org/D8632

File last commit:

r45109:8cab8db5 default
r45667:4a28f5e8 default
Show More
test-bad-extension.t
166 lines | 7.3 KiB | text/troff | Tads3Lexer
/ tests / test-bad-extension.t
Pulkit Goyal
tests: don't run couple of tests related to extensions loading with chg...
r45109 #require no-chg
Yuya Nishihara
extensions: use ui.log() interface to provide detailed loading information...
r41032 $ filterlog () {
> sed -e 's!^[0-9/]* [0-9:]* ([0-9]*)>!YYYY/MM/DD HH:MM:SS (PID)>!'
> }
Bryan O'Sullivan
atexit: test failing handlers
r31957 ensure that failing ui.atexit handlers report sensibly
$ cat > $TESTTMP/bailatexit.py <<EOF
> from mercurial import util
> def bail():
> raise RuntimeError('ui.atexit handler exception')
>
> def extsetup(ui):
> ui.atexit(bail)
> EOF
$ hg -q --config extensions.bailatexit=$TESTTMP/bailatexit.py \
> help help
av6
commands: adjust metavariables as appropriate...
r40382 hg help [-eck] [-s PLATFORM] [TOPIC]
Bryan O'Sullivan
atexit: test failing handlers
r31957
show help for a given topic or a help overview
error in exit handlers:
Traceback (most recent call last):
File "*/mercurial/dispatch.py", line *, in _runexithandlers (glob)
func(*args, **kwargs)
File "$TESTTMP/bailatexit.py", line *, in bail (glob)
raise RuntimeError('ui.atexit handler exception')
RuntimeError: ui.atexit handler exception
[255]
$ rm $TESTTMP/bailatexit.py
another bad extension
Martin Geisler
tests: unify test-bad-extension
r11858 $ echo 'raise Exception("bit bucket overflow")' > badext.py
Simon Farnsworth
tests: confirm that a badly documented extension doesn't cause a crash...
r28083 $ abspathexc=`pwd`/badext.py
$ cat >baddocext.py <<EOF
> """
> baddocext is bad
> """
> EOF
$ abspathdoc=`pwd`/baddocext.py
Martin Geisler
tests: unify test-bad-extension
r11858
Yuya Nishihara
tests: write hgrc of more than two lines by using shell heredoc...
r23172 $ cat <<EOF >> $HGRCPATH
> [extensions]
> gpg =
> hgext.gpg =
Simon Farnsworth
tests: confirm that a badly documented extension doesn't cause a crash...
r28083 > badext = $abspathexc
> baddocext = $abspathdoc
Yuya Nishihara
tests: write hgrc of more than two lines by using shell heredoc...
r23172 > badext2 =
> EOF
Martin Geisler
tests: unify test-bad-extension
r11858
timeless@mozdev.org
test-bad-extension: reduce dependencies on other things...
r26239 $ hg -q help help 2>&1 |grep extension
Mads Kiilerich
tests: remove redundant globs...
r12640 *** failed to import extension badext from $TESTTMP/badext.py: bit bucket overflow
Augie Fackler
tests: add lots of globs and conditional output lines...
r40272 *** failed to import extension badext2: No module named *badext2* (glob)
Yuya Nishihara
extensions: show traceback on load failure if --traceback flag is set...
r25364
show traceback
Augie Fackler
tests: expand our coverage of errors in Python 3 for bad extensions...
r40273 $ hg -q help help --traceback 2>&1 | egrep ' extension|^Exception|Traceback|ImportError|ModuleNotFound'
Yuya Nishihara
extensions: show traceback on load failure if --traceback flag is set...
r25364 *** failed to import extension badext from $TESTTMP/badext.py: bit bucket overflow
Traceback (most recent call last):
Exception: bit bucket overflow
Augie Fackler
tests: add lots of globs and conditional output lines...
r40272 *** failed to import extension badext2: No module named *badext2* (glob)
Yuya Nishihara
extensions: show traceback on load failure if --traceback flag is set...
r25364 Traceback (most recent call last):
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 ImportError: No module named badext2 (no-py3 !)
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ImportError: No module named 'hgext.badext2' (py3 no-py36 !)
ModuleNotFoundError: No module named 'hgext.badext2' (py36 !)
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 Traceback (most recent call last): (py3 !)
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ImportError: No module named 'hgext3rd.badext2' (py3 no-py36 !)
ModuleNotFoundError: No module named 'hgext3rd.badext2' (py36 !)
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 Traceback (most recent call last): (py3 !)
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ImportError: No module named 'badext2' (py3 no-py36 !)
ModuleNotFoundError: No module named 'badext2' (py36 !)
Yuya Nishihara
extensions: show traceback on load failure if --traceback flag is set...
r25364
Jun Wu
extensions: add notloaded method to return extensions failed to load...
r28155 names of extensions failed to load can be accessed via extensions.notloaded()
$ cat <<EOF > showbadexts.py
Yuya Nishihara
registrar: move cmdutil.command to registrar module (API)...
r32337 > from mercurial import commands, extensions, registrar
Jun Wu
extensions: add notloaded method to return extensions failed to load...
r28155 > cmdtable = {}
Yuya Nishihara
registrar: move cmdutil.command to registrar module (API)...
r32337 > command = registrar.command(cmdtable)
Pulkit Goyal
py3: make sure commands name are bytes in tests
r33097 > @command(b'showbadexts', norepo=True)
Jun Wu
extensions: add notloaded method to return extensions failed to load...
r28155 > def showbadexts(ui, *pats, **opts):
Augie Fackler
tests: fix up test-bad-extension.t's inline extension...
r40222 > ui.write(b'BADEXTS: %s\n' % b' '.join(sorted(extensions.notloaded())))
Jun Wu
extensions: add notloaded method to return extensions failed to load...
r28155 > EOF
$ hg --config extensions.badexts=showbadexts.py showbadexts 2>&1 | grep '^BADEXTS'
BADEXTS: badext badext2
Gregory Szorc
tests: conditionalize extension tests for extra extensions...
r39148 #if no-extraextensions
Boris Feld
debug: move extensions debug behind a dedicated flag...
r38750 show traceback for ImportError of hgext.name if devel.debug.extensions is set
Yuya Nishihara
extensions: show traceback on load failure if --traceback flag is set...
r25364
Boris Feld
debug: move extensions debug behind a dedicated flag...
r38750 $ (hg help help --traceback --debug --config devel.debug.extensions=yes 2>&1) \
timeless@mozdev.org
test-bad-extension: reduce dependencies on other things...
r26239 > | grep -v '^ ' \
Yuya Nishihara
extensions: use ui.log() interface to provide detailed loading information...
r41032 > | filterlog \
> | egrep 'extension..[^p]|^Exception|Traceback|ImportError|^YYYY|not import|ModuleNotFound'
YYYY/MM/DD HH:MM:SS (PID)> loading extensions
YYYY/MM/DD HH:MM:SS (PID)> - processing 5 entries
YYYY/MM/DD HH:MM:SS (PID)> - loading extension: gpg
YYYY/MM/DD HH:MM:SS (PID)> > gpg extension loaded in * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - validating extension tables: gpg
YYYY/MM/DD HH:MM:SS (PID)> - invoking registered callbacks: gpg
YYYY/MM/DD HH:MM:SS (PID)> > callbacks completed in * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - loading extension: badext
Yuya Nishihara
extensions: show traceback on load failure if --traceback flag is set...
r25364 *** failed to import extension badext from $TESTTMP/badext.py: bit bucket overflow
Traceback (most recent call last):
Exception: bit bucket overflow
Yuya Nishihara
extensions: use ui.log() interface to provide detailed loading information...
r41032 YYYY/MM/DD HH:MM:SS (PID)> - loading extension: baddocext
YYYY/MM/DD HH:MM:SS (PID)> > baddocext extension loaded in * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - validating extension tables: baddocext
YYYY/MM/DD HH:MM:SS (PID)> - invoking registered callbacks: baddocext
YYYY/MM/DD HH:MM:SS (PID)> > callbacks completed in * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - loading extension: badext2
YYYY/MM/DD HH:MM:SS (PID)> - could not import hgext.badext2 (No module named *badext2*): trying hgext3rd.badext2 (glob)
Yuya Nishihara
extensions: show traceback on load failure if --traceback flag is set...
r25364 Traceback (most recent call last):
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 ImportError: No module named badext2 (no-py3 !)
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ImportError: No module named 'hgext.badext2' (py3 no-py36 !)
ModuleNotFoundError: No module named 'hgext.badext2' (py36 !)
Yuya Nishihara
extensions: use ui.log() interface to provide detailed loading information...
r41032 YYYY/MM/DD HH:MM:SS (PID)> - could not import hgext3rd.badext2 (No module named *badext2*): trying badext2 (glob)
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 Traceback (most recent call last):
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 ImportError: No module named badext2 (no-py3 !)
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ImportError: No module named 'hgext.badext2' (py3 no-py36 !)
ModuleNotFoundError: No module named 'hgext.badext2' (py36 !)
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 Traceback (most recent call last): (py3 !)
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ImportError: No module named 'hgext3rd.badext2' (py3 no-py36 !)
ModuleNotFoundError: No module named 'hgext3rd.badext2' (py36 !)
Augie Fackler
tests: add lots of globs and conditional output lines...
r40272 *** failed to import extension badext2: No module named *badext2* (glob)
Yuya Nishihara
extensions: show traceback on load failure if --traceback flag is set...
r25364 Traceback (most recent call last):
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ImportError: No module named 'hgext.badext2' (py3 no-py36 !)
ModuleNotFoundError: No module named 'hgext.badext2' (py36 !)
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 Traceback (most recent call last): (py3 !)
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ImportError: No module named 'hgext3rd.badext2' (py3 no-py36 !)
ModuleNotFoundError: No module named 'hgext3rd.badext2' (py36 !)
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 Traceback (most recent call last): (py3 !)
Ian Moody
py3: fix test-bad-extension expectations for py35...
r43461 ModuleNotFoundError: No module named 'badext2' (py36 !)
ImportError: No module named 'badext2' (py3 no-py36 !)
Martijn Pieters
py3: use py3 as the test tag, dropping the k...
r40299 ImportError: No module named badext2 (no-py3 !)
Yuya Nishihara
extensions: use ui.log() interface to provide detailed loading information...
r41032 YYYY/MM/DD HH:MM:SS (PID)> > loaded 2 extensions, total time * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - loading configtable attributes
YYYY/MM/DD HH:MM:SS (PID)> - executing uisetup hooks
YYYY/MM/DD HH:MM:SS (PID)> - running uisetup for gpg
YYYY/MM/DD HH:MM:SS (PID)> > uisetup for gpg took * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - running uisetup for baddocext
YYYY/MM/DD HH:MM:SS (PID)> > uisetup for baddocext took * (glob)
YYYY/MM/DD HH:MM:SS (PID)> > all uisetup took * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - executing extsetup hooks
YYYY/MM/DD HH:MM:SS (PID)> - running extsetup for gpg
YYYY/MM/DD HH:MM:SS (PID)> > extsetup for gpg took * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - running extsetup for baddocext
YYYY/MM/DD HH:MM:SS (PID)> > extsetup for baddocext took * (glob)
YYYY/MM/DD HH:MM:SS (PID)> > all extsetup took * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - executing remaining aftercallbacks
YYYY/MM/DD HH:MM:SS (PID)> > remaining aftercallbacks completed in * (glob)
YYYY/MM/DD HH:MM:SS (PID)> - loading extension registration objects
YYYY/MM/DD HH:MM:SS (PID)> > extension registration object loading took * (glob)
YYYY/MM/DD HH:MM:SS (PID)> > extension baddocext take a total of * to load (glob)
YYYY/MM/DD HH:MM:SS (PID)> > extension gpg take a total of * to load (glob)
YYYY/MM/DD HH:MM:SS (PID)> extension loading complete
Gregory Szorc
tests: conditionalize extension tests for extra extensions...
r39148 #endif
Simon Farnsworth
tests: confirm that a badly documented extension doesn't cause a crash...
r28083
confirm that there's no crash when an extension's documentation is bad
$ hg help --keyword baddocext
*** failed to import extension badext from $TESTTMP/badext.py: bit bucket overflow
Augie Fackler
tests: add lots of globs and conditional output lines...
r40272 *** failed to import extension badext2: No module named *badext2* (glob)
Simon Farnsworth
tests: confirm that a badly documented extension doesn't cause a crash...
r28083 Topics:
extensions Using Additional Features