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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
"""
test_backend.py
Test case for keyring basic function
created by Kang Zhang 2009-07-14
"""
import contextlib
import os
import random
import string
import sys
import tempfile
import types
try:
# Python < 2.7 annd Python >= 3.0 < 3.1
import unittest2 as unittest
except ImportError:
import unittest
import keyring.backend
from keyring.backend import PasswordSetError
ALPHABET = string.ascii_letters + string.digits
DIFFICULT_CHARS = string.whitespace + string.punctuation
class ImportKiller(object):
"Context manager to make an import of a given name or names fail."
def __init__(self, *names):
self.names = names
def find_module(self, fullname, path=None):
if fullname in self.names:
return self
def load_module(self, fullname):
assert fullname in self.names
raise ImportError(fullname)
def __enter__(self):
self.original = {}
for name in self.names:
self.original[name] = sys.modules.pop(name, None)
sys.meta_path.append(self)
def __exit__(self, *args):
sys.meta_path.remove(self)
for key, value in self.original.items():
if value is not None:
sys.modules[key] = value
@contextlib.contextmanager
def NoNoneDictMutator(destination, **changes):
"""Helper context manager to make and unmake changes to a dict.
A None is not a valid value for the destination, and so means that the
associated name should be removed."""
original = {}
for key, value in changes.items():
original[key] = destination.get(key)
if value is None:
if key in destination:
del destination[key]
else:
destination[key] = value
yield
for key, value in original.items():
if value is None:
if key in destination:
del destination[key]
else:
destination[key] = value
def Environ(**changes):
"""A context manager to temporarily change the os.environ"""
return NoNoneDictMutator(os.environ, **changes)
def ImportBlesser(*names, **changes):
"""A context manager to temporarily make it possible to import a module"""
for name in names:
changes[name] = types.ModuleType(name)
return NoNoneDictMutator(sys.modules, **changes)
def random_string(k, source = ALPHABET):
"""Generate a random string with length <i>k</i>
"""
result = ''
for i in range(0, k):
result += random.choice(source)
return result
def is_win32_crypto_supported():
try:
from keyring.backends import win32_crypto
if sys.platform in ['win32'] and sys.getwindowsversion()[-2] == 2:
return True
except ImportError:
pass
return False
def is_osx_keychain_supported():
return sys.platform in ('mac','darwin')
def is_kwallet_supported():
supported = keyring.backend.KDEKWallet().supported()
if supported == -1:
return False
return True
def is_crypto_supported():
try:
from Crypto.Cipher import AES
import crypt
except ImportError:
return False
return True
def is_gnomekeyring_supported():
supported = keyring.backend.GnomeKeyring().supported()
if supported == -1:
return False
return True
def is_qt4_supported():
try:
from PyQt4.QtGui import QApplication
except ImportError:
return False
return True
def is_winvault_supported():
try:
from keyring.backend import WinVaultKeyring
if sys.platform in ['win32'] and sys.getwindowsversion().major >= 6:
return True
except ImportError:
pass
return False
class BackendBasicTests(object):
"""Test for the keyring's basic funtions. password_set and password_get
"""
def setUp(self):
self.keyring = self.init_keyring()
self.credentials_created = set()
def set_password(self, service, username, password):
# set the password and save the result so the test runner can clean
# up after if necessary.
self.keyring.set_password(service, username, password)
self.credentials_created.add((service, username))
def check_set_get(self, service, username, password):
keyring = self.keyring
# for the non-existent password
self.assertEqual(keyring.get_password(service, username), None)
# common usage
self.set_password(service, username, password)
self.assertEqual(keyring.get_password(service, username), password)
# for the empty password
self.set_password(service, username, "")
self.assertEqual(keyring.get_password(service, username), "")
def test_password_set_get(self):
password = random_string(20)
username = random_string(20)
service = random_string(20)
self.check_set_get(service, username, password)
def test_difficult_chars(self):
password = random_string(20, DIFFICULT_CHARS)
username = random_string(20, DIFFICULT_CHARS)
service = random_string(20, DIFFICULT_CHARS)
self.check_set_get(service, username, password)
def test_different_user(self):
"""
Issue #47 reports that WinVault isn't storing passwords for
multiple users. This test exercises that test for each of the
backends.
"""
keyring = self.keyring
self.set_password('service1', 'user1', 'password1')
self.set_password('service1', 'user2', 'password2')
self.assertEqual(keyring.get_password('service1', 'user1'),
'password1')
self.assertEqual(keyring.get_password('service1', 'user2'),
'password2')
self.set_password('service2', 'user3', 'password3')
self.assertEqual(keyring.get_password('service1', 'user1'),
'password1')
@unittest.skipUnless(is_osx_keychain_supported(),
"Need OS X")
class OSXKeychainTestCase(BackendBasicTests, unittest.TestCase):
def init_keyring(self):
return keyring.backend.OSXKeychain()
@unittest.skipUnless(is_gnomekeyring_supported(),
"Need GnomeKeyring")
class GnomeKeyringTestCase(BackendBasicTests, unittest.TestCase):
def environ(self):
return dict(GNOME_KEYRING_CONTROL='1',
DISPLAY='1',
DBUS_SESSION_BUS_ADDRESS='1')
def init_keyring(self):
k = keyring.backend.GnomeKeyring()
# Store passwords in the session (in-memory) keyring for the tests. This
# is going to be automatically cleared when the user logoff.
k.KEYRING_NAME = 'session'
return k
def test_supported(self):
with ImportBlesser('gnomekeyring'):
with Environ(**self.environ()):
self.assertEqual(1, self.keyring.supported())
def test_supported_no_module(self):
with ImportKiller('gnomekeyring'):
with Environ(**self.environ()):
self.assertEqual(-1, self.keyring.supported())
def test_supported_no_keyring(self):
with ImportBlesser('gnomekeyring'):
environ = self.environ()
environ['GNOME_KEYRING_CONTROL'] = None
with Environ(**environ):
self.assertEqual(0, self.keyring.supported())
def test_supported_no_display(self):
with ImportBlesser('gnomekeyring'):
environ = self.environ()
environ['DISPLAY'] = None
with Environ(**environ):
self.assertEqual(0, self.keyring.supported())
def test_supported_no_session(self):
with ImportBlesser('gnomekeyring'):
environ = self.environ()
environ['DBUS_SESSION_BUS_ADDRESS'] = None
with Environ(**environ):
self.assertEqual(0, self.keyring.supported())
@unittest.skipUnless(is_kwallet_supported(),
"Need KWallet")
class KDEKWalletTestCase(BackendBasicTests, unittest.TestCase):
def init_keyring(self):
return keyring.backend.KDEKWallet()
class UnOpenableKWallet(object):
"""A module-like object used to test KDE wallet fall-back."""
Synchronous = None
def openWallet(self, *args):
return None
def NetworkWallet(self):
return None
class FauxQtGui(object):
"""A fake module-like object used in testing the open_kwallet function."""
class qApp:
@staticmethod
def instance():
pass
class QApplication(object):
def __init__(self, *args):
pass
def exit(self):
pass
class QWidget(object):
def __init__(self, *args):
pass
def winId(self):
pass
class KDEWalletCanceledTestCase(unittest.TestCase):
def test_user_canceled(self):
# If the user cancels either the "enter your password to unlock the
# keyring" dialog or clicks "deny" on the "can this application access
# the wallet" dialog then openWallet() will return None. The
# open_wallet() function should handle that eventuality by returning
# None to signify that the KWallet backend is not available.
self.assertEqual(
keyring.backend.open_kwallet(UnOpenableKWallet(), FauxQtGui()),
None)
@unittest.skipUnless(is_kwallet_supported() and
is_qt4_supported(),
"Need KWallet and Qt4")
class KDEKWalletInQApplication(unittest.TestCase):
def test_QApplication(self):
try:
from PyKDE4.kdeui import KWallet
from PyQt4.QtGui import QApplication
except:
return
app = QApplication([])
wallet = keyring.backend.open_kwallet()
self.assertTrue(isinstance(wallet, KWallet.Wallet),
msg="The object wallet should be type "
"<KWallet.Wallet> but it is: %s" % repr(wallet))
app.exit()
class FileKeyringTests(BackendBasicTests):
def setUp(self):
super(FileKeyringTests, self).setUp()
self.keyring = self.init_keyring()
self.keyring.file_path = self.tmp_keyring_file = os.path.join(
tempfile.mkdtemp(), "test_pass.cfg")
def tearDown(self):
try:
os.unlink(self.tmp_keyring_file)
except OSError, e:
if e.errno != 2: # No such file or directory
raise
def test_encrypt_decrypt(self):
password = random_string(20)
# keyring.encrypt expects bytes
password = password.encode('utf-8')
encrypted = self.keyring.encrypt(password)
self.assertEqual(password, self.keyring.decrypt(encrypted))
class UncryptedFileKeyringTestCase(FileKeyringTests, unittest.TestCase):
def init_keyring(self):
return keyring.backend.UncryptedFileKeyring()
@unittest.skipUnless(is_crypto_supported(),
"Need Crypto module")
class CryptedFileKeyringTestCase(FileKeyringTests, unittest.TestCase):
def setUp(self):
super(self.__class__, self).setUp()
self.keyring._getpass = lambda *args, **kwargs: "abcdef"
def init_keyring(self):
return keyring.backend.CryptedFileKeyring()
@unittest.skipUnless(is_win32_crypto_supported(),
"Need Windows")
class Win32CryptoKeyringTestCase(FileKeyringTests, unittest.TestCase):
def init_keyring(self):
return keyring.backend.Win32CryptoKeyring()
@unittest.skipUnless(is_winvault_supported(),
"Need WinVault")
class WinVaultKeyringTestCase(BackendBasicTests, unittest.TestCase):
def tearDown(self):
# clean up any credentials created
for cred in self.credentials_created:
try:
self.keyring.delete_password(*cred)
except Exception, e:
print >> sys.stderr, e
def init_keyring(self):
return keyring.backend.WinVaultKeyring()
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(OSXKeychainTestCase))
suite.addTest(unittest.makeSuite(GnomeKeyringTestCase))
suite.addTest(unittest.makeSuite(KDEWalletCanceledTestCase))
suite.addTest(unittest.makeSuite(KDEKWalletTestCase))
suite.addTest(unittest.makeSuite(KDEKWalletInQApplication))
suite.addTest(unittest.makeSuite(UncryptedFileKeyringTestCase))
suite.addTest(unittest.makeSuite(CryptedFileKeyringTestCase))
suite.addTest(unittest.makeSuite(Win32CryptoKeyringTestCase))
suite.addTest(unittest.makeSuite(WinVaultKeyringTestCase))
return suite
if __name__ == '__main__':
unittest.main(defaultTest="test_suite")
|