1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#!/usr/bin/python
import sys
sys.path.insert(0,"../")
import os
import unittest
from softwarecenter.backend.login_sso import (get_sso_backend,
LoginBackendDbusSSO,
LoginBackendDbusSSOFake)
class TestLoginBackend(unittest.TestCase):
""" tests the login backend stuff """
def test_fake_and_real_provide_similar_methods(self):
""" test if the real and fake login provide the same functions """
login_real = LoginBackendDbusSSO
login_fake = LoginBackendDbusSSOFake
# ensure that both fake and real implement the same methods
self.assertEqual(
set([x for x in dir(login_real) if not x.startswith("_")]),
set([x for x in dir(login_fake) if not x.startswith("_")]))
def test_get_sso_backend(self):
# test that we get the real one
self.assertEqual(type(get_sso_backend(None, None, None)),
LoginBackendDbusSSO)
# test that we get the fake one
os.environ["SOFTWARE_CENTER_FAKE_REVIEW_API"] = "1"
self.assertEqual(type(get_sso_backend(None, None, None)),
LoginBackendDbusSSOFake)
# clean the environment
del os.environ["SOFTWARE_CENTER_FAKE_REVIEW_API"]
if __name__ == "__main__":
import logging
logging.basicConfig(level=logging.DEBUG)
unittest.main()
|