view tests/doctest.txt @ 47:cb24b5265557

clean out tmpdir
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 01 Mar 2012 13:42:42 -0800
parents d9bc2a586ed4
children ca456e08924f
line wrap: on
line source

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

The obligatory imports::

    >>> import os
    >>> import shutil
    >>> import simpypi
    >>> 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']

Upload the same package but with the wrong name::

    >>> shutil.rmtree(os.path.join(directory, 'HelloWorld'))
    >>> os.listdir(directory)
    []