view tests/doctest.txt @ 51:6a8071eab89e

add in smokescreen pkginfo tests
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 01 Mar 2012 14:33:50 -0800
parents e4a97d6f2811
children 59368c0bbd8d
line wrap: on
line source

Test simpypi
============

The obligatory imports::

    >>> import os
    >>> import pkginfo
    >>> import shutil
    >>> import simpypi
    >>> import tempfile
    >>> from paste.fixture import TestApp

The directory is initially empty::

    >>> os.listdir(directory)
    []

Make a test application::

    >>> app = simpypi.SimPyPI(directory)
    >>> testapp = TestApp(app)

Upload a package::

    >>> field = 'package'
    >>> filename = 'HelloWorld-0.0.tar.gz'
    >>> contents = file(os.path.join(here, filename)).read()
    >>> response = testapp.post('/', upload_files=[(field, filename, contents)])

Ensure that package is in the right place::

    >>> os.listdir(directory)
    ['HelloWorld']
    >>> os.listdir(os.path.join(directory, 'HelloWorld'))
    ['HelloWorld-0.0.tar.gz']

Ensure the package is what you expect it to be::

    >>> path = os.path.join(directory, 'HelloWorld', 'HelloWorld-0.0.tar.gz')
    >>> sdist = pkginfo.sdist.SDist(path)
    >>> sdist.name
    'HelloWorld'
    >>> sdist.version
    '0.0'

Install the package and inspect the installation::

    >>> tmpdir = tempfile.mkdtemp()
    >>> shutil.rmtree(tmpdir)

Upload the same package but with the wrong name::

    >>> shutil.rmtree(os.path.join(directory, 'HelloWorld'))
    >>> os.listdir(directory)
    []
    >>> response = testapp.post('/', upload_files=[(field, 'MisleadingName.tar.gz', contents)])
    >>> os.listdir(directory)
    ['HelloWorld']
    >>> os.listdir(os.path.join(directory, 'HelloWorld'))
    ['HelloWorld-0.0.tar.gz']
    >>> shutil.rmtree(os.path.join(directory, 'HelloWorld'))
    >>> os.listdir(directory)
    []
    >>> filename = 'MisleadingFilename.tar.gz'
    >>> contents = file(os.path.join(here, filename)).read()
    >>> response = testapp.post('/', upload_files=[(field, filename, contents)])
    >>> os.listdir(directory)
    ['HelloWorld']
    >>> os.listdir(os.path.join(directory, 'HelloWorld'))
    ['HelloWorld-0.0.tar.gz']