Changeset 5971 for TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/attributeauthority/test_attributeauthority.py
- Timestamp:
- 04/11/09 17:10:50 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/attributeauthority/test_attributeauthority.py
r5643 r5971 25 25 from ndg.security.test.unit import BaseTestCase 26 26 27 from ndg.security.common.utils.configfileparsers import \ 28 CaseSensitiveConfigParser 29 from ndg.security.server.attributeauthority import AttributeAuthority, \ 30 AttributeAuthorityNoMatchingRoleInTrustedHosts 27 from ndg.security.common.utils.configfileparsers import ( 28 CaseSensitiveConfigParser) 29 from ndg.security.server.attributeauthority import (AttributeAuthority, 30 AttributeAuthorityNoMatchingRoleInTrustedHosts, 31 SQLAlchemyAttributeInterface) 31 32 32 33 from ndg.security.common.AttCert import AttCert … … 238 239 "At least one Attribute Certificate request failed. " 239 240 "Check the .msg files in this directory") 240 241 242 243 class SQLAlchemyAttributeInterfaceTestCase(BaseTestCase): 244 def __init__(self, *arg, **kw): 245 super(SQLAlchemyAttributeInterfaceTestCase, self).__init__(*arg, **kw) 246 try: 247 self._createDb() 248 except NotImplementedError: 249 pass 250 251 def setUp(self): 252 pass 253 254 def test01(self): 255 attributeInterface = SQLAlchemyAttributeInterface() 256 241 257 if __name__ == "__main__": 242 258 unittest.main()
Note: See TracChangeset
for help on using the changeset viewer.