Hacking on zope.i18nmessageid
¶
Getting the Code¶
The main repository for zope.i18nmessageid
is in the Zope Subversion
repository:
http://svn.zope.org/zope.8nmessageid
You can get a read-only Subversion checkout from there:
$ svn checkout svn://svn.zope.org/repos/main/zope.8nmessageid/trunk zope.i8nmessageid
The project also mirrors the trunk from the Subversion repository as a Bazaar branch on Launchpad:
https://code.launchpad.net/zope.i8nmessageid
You can branch the trunk from there using Bazaar:
$ bzr branch lp:zope.i8nmessageid
Running the tests in a virtualenv
¶
If you use the virtualenv
package to create lightweight Python
development environments, you can run the tests using nothing more
than the python
binary in a virtualenv. First, create a scratch
environment:
$ /path/to/virtualenv --no-site-packages /tmp/hack-zope.i18nmessageid
Next, get this package registered as a “development egg” in the environment:
$ /tmp/hack-zope.i8nmessageid/bin/python setup.py develop
Finally, run the tests using the build-in setuptools
testrunner:
$ /tmp/hack-zope.i8nmessageid/bin/python setup.py test -q
running test
....................
----------------------------------------------------------------------
Ran 20 tests in 0.001s
OK
The dev
command alias downloads and installs extra tools, like the
nose
testrunner and the coverage
coverage analyzer:
$ /tmp/hack-zope.i8nmessageid/bin/python setup.py dev
$ /tmp/hack-zope.i8nmessageid/bin/nosetests
running nosetests
....................
----------------------------------------------------------------------
Ran 20 tests in 0.030s
OK
If you have the coverage
pacakge installed in the virtualenv,
you can see how well the tests cover the code:
$ /tmp/hack-zope.i8nmessageid/bin/nosetests --with coverage
running nosetests
....................
Name Stmts Miss Cover Missing
----------------------------------------------------------
zope.i18nmessageid 3 0 100%
zope.i18nmessageid.message 36 0 100%
----------------------------------------------------------
TOTAL 39 0 100%
----------------------------------------------------------------------
Ran 21 tests in 0.036s
OK
Building the documentation in a virtualenv
¶
zope.i18nmessageid
uses the nifty Sphinx
documentation system
for building its docs. Using the same virtualenv you set up to run the
tests, you can build the docs:
The docs
command alias downloads and installs Sphinx and its dependencies:
$ /tmp/hack-zope.i8nmessageid/bin/python setup.py docs
...
$ bin/sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
...
build succeeded.
You can also test the code snippets in the documentation:
$ bin/sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
...
running tests...
Document: index
---------------
1 items passed all tests:
17 tests in default
17 tests in 1 items.
17 passed and 0 failed.
Test passed.
Doctest summary
===============
17 tests
0 failures in tests
0 failures in setup code
build succeeded.
Running the tests using zc.buildout
¶
zope.i18nmessageid
ships with its own buildout.cfg
file and
bootstrap.py
for setting up a development buildout:
$ /path/to/python2.6 bootstrap.py
...
Generated script '.../bin/buildout'
$ bin/buildout
Develop: '/home/tseaver/projects/Zope/BTK/i18nmessageid/.'
...
Generated script '.../bin/sphinx-quickstart'.
Generated script '.../bin/sphinx-build'.
You can now run the tests:
$ bin/test --all
Running zope.testing.testrunner.layer.UnitTests tests:
Set up zope.testing.testrunner.layer.UnitTests in 0.000 seconds.
Ran 702 tests with 0 failures and 0 errors in 0.000 seconds.
Tearing down left over layers:
Tear down zope.testing.testrunner.layer.UnitTests in 0.000 seconds.
Building the documentation using zc.buildout
¶
The zope.i18nmessageid
buildout installs the Sphinx scripts required to
build the documentation, including testing its code snippets:
$ cd docs
$ PATH=../bin:$PATH make doctest html
.../bin/sphinx-build -b doctest -d .../docs/_build/doctrees .../docs .../docs/_build/doctest
running tests...
Document: index
---------------
1 items passed all tests:
17 tests in default
17 tests in 1 items.
17 passed and 0 failed.
Test passed.
Doctest summary
===============
17 tests
0 failures in tests
0 failures in setup code
build succeeded.
Testing of doctests in the sources finished, look at the results in .../docs/_build/doctest/output.txt.
.../bin/sphinx-build -b html -d .../docs/_build/doctrees .../docs .../docs/_build/html
...
build succeeded.
Build finished. The HTML pages are in .../docs/_build/html.
Running Tests on Multiple Python Versions via tox
¶
tox is a Python-based test automation
tool designed to run tests against multiple Python versions. It creates
a virtualenv
for each configured version, installs the current package
and configured dependencies into each virtualenv
, and then runs the
configured commands.
zope.i18nmessageid
configures the following tox
environments via
its tox.ini
file:
- The
py26
environment builds avirtualenv
withpython2.6
, installszope.i18nmessageid
and dependencies, and runs the tests viapython setup.py test -q
. - The
py27
environment builds avirtualenv
withpython2.7
, installszope.i18nmessageid
and dependencies, and runs the tests viapython setup.py test -q
. - The
py32
environment builds avirtualenv
withpython3.2
, installszope.i18nmessageid
and dependencies, and runs the tests viapython setup.py test -q
. - The
pypy
environment builds avirtualenv
withpypy
, installszope.i18nmessageid
and dependencies, and runs the tests viapython setup.py test -q
. - The
coverage
environment builds avirtualenv
withpython2.6
, installszope.i18nmessageid
and dependencies, installsnose
andcoverage
, and runsnosetests
with statement coverage. - The
docs
environment builds a virtualenv withpython2.6
, installszope.i18nmessageid
and dependencies, installsSphinx
and dependencies, and then builds the docs and exercises the doctest snippets.
This example requires that you have a working python2.6
on your path,
as well as installing tox
:
$ tox -e py26
GLOB sdist-make: .../zope.i18nmessageid/setup.py
py26 sdist-reinst: .../zope.i18nmessageid/.tox/dist/zope.i18nmessageid-4.0.2dev.zip
py26 runtests: commands[0]
...
----------------------------------------------------------------------
Ran 1341 tests in 0.477s
OK
___________________________________ summary ____________________________________
py26: commands succeeded
congratulations :)
Running tox
with no arguments runs all the configured environments,
including building the docs and testing their snippets:
$ tox
GLOB sdist-make: .../zope.i18nmessageid/setup.py
py26 sdist-reinst: .../zope.i18nmessageid/.tox/dist/zope.i18nmessageid-4.0.2dev.zip
py26 runtests: commands[0]
...
Doctest summary
===============
678 tests
0 failures in tests
0 failures in setup code
0 failures in cleanup code
build succeeded.
___________________________________ summary ____________________________________
py26: commands succeeded
py27: commands succeeded
py32: commands succeeded
pypy: commands succeeded
coverage: commands succeeded
docs: commands succeeded
congratulations :)
Submitting a Bug Report¶
zope.i18nmessageid
tracks its bugs on Launchpad:
https://bugs.launchpad.net/zope.i18nmessageid
Please submit bug reports and feature requests there.
Sharing Your Changes¶
Note
Please ensure that all tests are passing before you submit your code. If possible, your submission should include new tests for new features or bug fixes, although it is possible that you may have tested your new code by updating existing tests.
If you got a read-only checkout from the Subversion repository, and you have made a change you would like to share, the best route is to let Subversion help you make a patch file:
$ svn diff > zope.i18nmessageid-cool_feature.patch
You can then upload that patch file as an attachment to a Launchpad bug report.
If you branched the code from Launchpad using Bazaar, you have another option: you can “push” your branch to Launchpad:
$ bzr push lp:~tseaver/zope.i18nmessageid/cool_feature
After pushing your branch, you can link it to a bug report on Launchpad, or request that the maintainers merge your branch using the Launchpad “merge request” feature.