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
|
import keyring
from keyrings.alt.file import PlaintextKeyring
import os
import os.path
import tempfile
import unittest
try:
from test.support import EnvironmentVarGuard
except ImportError:
from test.support.os_helper import EnvironmentVarGuard
import ofxclient.config
from ofxclient.config import OfxConfig
from ofxclient import Institution, CreditCardAccount
class OfxConfigTests(unittest.TestCase):
def setUp(self):
keyring.set_keyring(PlaintextKeyring())
self.env = EnvironmentVarGuard()
self.temp_file = tempfile.NamedTemporaryFile()
test_path = os.path.dirname(os.path.realpath(__file__))
self.env['XDG_DATA_HOME'] = test_path
self.env['XDG_CONFIG_HOME'] = test_path
def tearDown(self):
self.temp_file.close()
def testFileCreated(self):
file_name = self.temp_file.name
self.temp_file.close()
self.assertFalse(os.path.exists(file_name))
c = OfxConfig(file_name=file_name) # noqa
self.assertTrue(os.path.exists(file_name))
os.remove(file_name)
def testAddAccount(self):
c = OfxConfig(file_name=self.temp_file.name)
i = Institution(
id='1',
org='org',
url='url',
username='user',
password='pass'
)
a = CreditCardAccount(institution=i, number='12345')
c.add_account(a)
self.assertEqual(len(c.accounts()), 1)
self.assertEqual(c.account(a.local_id()).local_id(), a.local_id())
def testLoadFromFile(self):
c = OfxConfig(file_name=self.temp_file.name)
i = Institution(
id='1',
org='org',
url='url',
username='user',
password='pass'
)
a = CreditCardAccount(institution=i, number='12345')
c.add_account(a)
c.save()
c = OfxConfig(file_name=self.temp_file.name)
got = c.account(a.local_id())
self.assertEqual(len(c.accounts()), 1)
self.assertEqual(got.local_id(), a.local_id())
self.assertEqual(got.number, a.number)
self.assertEqual(got.institution.local_id(), a.institution.local_id())
self.assertEqual(got.institution.id, a.institution.id)
self.assertEqual(got.institution.org, a.institution.org)
self.assertEqual(got.institution.url, a.institution.url)
self.assertEqual(got.institution.username, a.institution.username)
self.assertEqual(got.institution.password, a.institution.password)
def testFieldsSecured(self):
if not ofxclient.config.KEYRING_AVAILABLE:
return
# always skip these for now
return
c = OfxConfig(file_name=self.temp_file.name)
i = Institution(
id='1',
org='org',
url='url',
username='user',
password='pass'
)
a = CreditCardAccount(institution=i, number='12345')
c.add_account(a)
self.assertTrue(
c.parser.is_secure_option(a.local_id(), 'institution.username')
)
self.assertTrue(
c.parser.is_secure_option(a.local_id(), 'institution.password')
)
def testFieldsRemainUnsecure(self):
if not ofxclient.config.KEYRING_AVAILABLE:
return
# always skip these for now
return
c = OfxConfig(file_name=self.temp_file.name)
i = Institution(
id='1',
org='org',
url='url',
username='user',
password='pass'
)
a = CreditCardAccount(institution=i, number='12345')
c.add_account(a)
# pretend the user put their password in there in the clear on purpose
c.parser.remove_option(a.local_id(), 'institution.password')
c.parser.set(a.local_id(), 'institution.password', 'pass')
c.save()
c = OfxConfig(file_name=self.temp_file.name)
self.assertTrue(
c.parser.is_secure_option(a.local_id(), 'institution.username')
)
self.assertFalse(
c.parser.is_secure_option(a.local_id(), 'institution.password')
)
def testResecuredAfterEncryptAccount(self):
if not ofxclient.config.KEYRING_AVAILABLE:
return
# always skip these for now
return
c = OfxConfig(file_name=self.temp_file.name)
i = Institution(
id='1',
org='org',
url='url',
username='user',
password='pass'
)
a1 = CreditCardAccount(institution=i, number='12345')
c.add_account(a1)
a2 = CreditCardAccount(institution=i, number='67890')
c.add_account(a2)
# pretend the user put their password in there in the clear on purpose
# to fix something... and then wants it to be resecured later on
c.parser.remove_option(a1.local_id(), 'institution.password')
c.parser.set(a1.local_id(), 'institution.password', 'pass')
c.save()
c = OfxConfig(file_name=self.temp_file.name)
self.assertEqual(len(c.accounts()), 2)
self.assertEqual(len(c.encrypted_accounts()), 1)
self.assertEqual(len(c.unencrypted_accounts()), 1)
self.assertTrue(
c.parser.is_secure_option(a1.local_id(), 'institution.username')
)
self.assertFalse(
c.parser.is_secure_option(a1.local_id(), 'institution.password')
)
c.encrypt_account(a1.local_id())
self.assertEqual(len(c.accounts()), 2)
self.assertEqual(len(c.encrypted_accounts()), 2)
self.assertEqual(len(c.unencrypted_accounts()), 0)
self.assertTrue(
c.parser.is_secure_option(a1.local_id(), 'institution.username')
)
self.assertTrue(
c.parser.is_secure_option(a1.local_id(), 'institution.password')
)
|