1f91d0fd06
To run the test suite from the main setup.py we need to be able to import and run the test suite from a different folder than the "test" dir. Make "test" a package and fix the imports to still work when imported from another folder. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
76 lines
2.7 KiB
Python
76 lines
2.7 KiB
Python
# Copyright (C) 2012- Sebastian Spaeth & contributors
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
import random
|
|
import unittest
|
|
import logging
|
|
import os, sys
|
|
# Insert ".." into the python search path to get OLItest
|
|
cmd_folder = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
if cmd_folder not in sys.path:
|
|
sys.path.insert(0, cmd_folder)
|
|
from OLItest import OLITestLib
|
|
|
|
def setUpModule():
|
|
logging.info("Set Up test module %s" % __name__)
|
|
tdir = OLITestLib.create_test_dir(suffix=__name__)
|
|
|
|
def tearDownModule():
|
|
logging.info("Tear Down test module")
|
|
OLITestLib.delete_test_dir()
|
|
|
|
#Stuff that can be used
|
|
#self.assertEqual(self.seq, range(10))
|
|
# should raise an exception for an immutable sequence
|
|
#self.assertRaises(TypeError, random.shuffle, (1,2,3))
|
|
#self.assertTrue(element in self.seq)
|
|
#self.assertFalse(element in self.seq)
|
|
|
|
class TestBasicFunctions(unittest.TestCase):
|
|
#@classmethod
|
|
#def setUpClass(cls):
|
|
#This is run before all tests in this class
|
|
# cls._connection = createExpensiveConnectionObject()
|
|
|
|
#@classmethod
|
|
#This is run after all tests in this class
|
|
#def tearDownClass(cls):
|
|
# cls._connection.destroy()
|
|
|
|
# This will be run before each test
|
|
#def setUp(self):
|
|
# self.seq = range(10)
|
|
|
|
def test_01_olistartup(self):
|
|
"""Tests if OLI can be invoked without exceptions
|
|
|
|
It syncs all "OLItest* (specified in the default config) to our
|
|
local Maildir at keeps it there."""
|
|
code, res = OLITestLib.run_OLI()
|
|
#logging.warn("%s %s "% (code, res))
|
|
self.assertEqual(res, "")
|
|
#TODO implement OLITestLib.countmails()
|
|
logging.warn("synced %d boxes, %d mails" % (0,0))
|
|
|
|
def test_02_wipedir(self):
|
|
"""Wipe OLItest* maildir, sync and see if it's still empty
|
|
|
|
Wipes all "OLItest* (specified in the default config) to our
|
|
local Maildir at keeps it there."""
|
|
|
|
code, res = OLITestLib.run_OLI()
|
|
#logging.warn("%s %s "% (code, res))
|
|
self.assertEqual(res, "")
|