1
0
mirror of https://github.com/OfflineIMAP/offlineimap.git synced 2024-07-01 08:10:52 +02:00
offlineimap/test
Sebastian Spaeth ac033c68fd Improve nametrans local->remote folder syncing
While improving the test suite, I noticed that we would not create folders on
the remote in some cases when we should (yay for test suites!). This is because
we were testing the untransposed LOCAL foldername and check if it existed on
the remote side when deciding whether we should potentially create a new folder.

Simplify the code by transposing the LOCAL folder names in dst_hash, saving us
to create another confusing "newsrc" temp variable. Make the code a bit more
readable by using dst_name_t to indicate we operate a transposed folder name.

This now passes test 03 (using invalid nametrans rules) when test 03 would pass
before.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2012-02-16 11:45:18 +01:00
..
OLItest test: Split configuration generation so we can tweak values 2012-02-16 09:58:59 +01:00
tests Improve nametrans local->remote folder syncing 2012-02-16 11:45:18 +01:00
__init__.py Adapt imports so that test/OLItest can be imported 2012-01-19 10:32:05 +01:00
.gitignore Add initial skeleton for a testing framework 2012-01-19 10:32:05 +01:00
credentials.conf.sample Add initial skeleton for a testing framework 2012-01-19 10:32:05 +01:00
README Add "test" command to setup.py 2012-01-19 10:32:05 +01:00

Documentation for the OfflineImap Test suite.

How to run the tests
====================

- Copy the credentials.conf.sample to credentials.conf and insert
  credentials for an IMAP account and a Gmail account. Delete the Gmail
  section if you don't have a Gmail account. Do note, that the tests
  will change the account and upload/delete/modify it's contents and
  folder structure. So don't use a real used account here...

- go to the top level dir (one above this one) and execute:
  'python setup.py test'

System requirements
===================

This test suite depend on python>=2.7 to run out of the box. If you want to run this with python 2.6 you will need to install the backport from http://pypi.python.org/pypi/unittest2 instead.