Commit deb90e52 authored by tarek's avatar tarek

added manual functional tests for checking a release

--HG--
branch : distribute
extra : rebase_source : d7bc6ba1843217a020be419a8f3ed562e5ff4a3f
parent 80750189
#!/bin/python
import os
import shutil
import tempfile
import urllib2
import subprocess
import sys
def tempdir(func):
def _tempdir(*args, **kwargs):
test_dir = tempfile.mkdtemp()
old_dir = os.getcwd()
os.chdir(test_dir)
try:
return func(*args, **kwargs)
finally:
os.chdir(old_dir)
shutil.rmtree(test_dir)
return _tempdir
SIMPLE_BUILDOUT = """\
[buildout]
parts = eggs
[eggs]
recipe = zc.recipe.egg
eggs =
extensions
"""
BOOTSTRAP = 'http://python-distribute.org/bootstrap.py'
PYVER = sys.version.split()[0][:3]
@tempdir
def test_virtualenv():
"""virtualenv with distribute"""
os.system('virtualenv --no-site-packages . --distribute')
os.system('bin/easy_install -q distribute==dev')
# linux specific
site_pkg = os.listdir(os.path.join('.', 'lib', 'python'+PYVER, 'site-packages'))
site_pkg.sort()
assert 'distribute' in site_pkg[0]
easy_install = os.path.join('.', 'lib', 'python'+PYVER, 'site-packages',
'easy-install.pth')
with open(easy_install) as f:
res = f.read()
assert 'distribute' in res
assert 'setuptools' not in res
@tempdir
def test_full():
"""virtualenv + pip + buildout"""
os.system('virtualenv --no-site-packages .')
os.system('bin/easy_install -q distribute==dev')
os.system('bin/easy_install -qU distribute==dev')
os.system('bin/easy_install -q pip')
os.system('bin/pip install -q zc.buildout')
with open('buildout.cfg', 'w') as f:
f.write(SIMPLE_BUILDOUT)
with open('bootstrap.py', 'w') as f:
f.write(urllib2.urlopen(BOOTSTRAP).read())
os.system('bin/python bootstrap.py --distribute')
os.system('bin/buildout -q')
eggs = os.listdir('eggs')
eggs.sort()
assert len(eggs) == 3
assert eggs[0].startswith('distribute')
assert eggs[1:] == ['extensions-0.3-py2.6.egg',
'zc.recipe.egg-1.2.2-py2.6.egg']
if __name__ == '__main__':
test_virtualenv()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment