Commit 6b2906e1 authored by Nicolas Dumazet's avatar Nicolas Dumazet

enclose asserts in a try/finally to make sure that even after an error,

the bt will be uninstalled. This makes sure that test_type_provider_2 is
not contaminated after a failure of test_type_provider


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39497 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0f838ca1
...@@ -6842,47 +6842,48 @@ class TestBusinessTemplate(ERP5TypeTestCase, LogInterceptor): ...@@ -6842,47 +6842,48 @@ class TestBusinessTemplate(ERP5TypeTestCase, LogInterceptor):
self.stepTic() self.stepTic()
new_bt.install() new_bt.install()
try:
type_provider = self.portal._getOb('dummy_type_provider', None)
self.assertNotEqual(None, type_provider)
# This type provider, will be automatically registered on types tool during
# business template installation, because it contains type information
self.assertTrue('dummy_type_provider' in types_tool.type_provider_list)
# The type is reinstalled
self.assertTrue('Dummy Type' in type_provider.objectIds())
# is available from types tool
self.assertTrue('Dummy Type' in [ti.getId() for
ti in types_tool.listTypeInfo()])
dummy_type = types_tool.getTypeInfo('Dummy Type')
self.assertNotEquals(None, dummy_type)
# all the configuration from the type is still here
self.assertEquals(['Reference'], dummy_type.getTypePropertySheetList())
self.assertEquals(['source'], dummy_type.getTypeBaseCategoryList())
self.assertEquals(['Dummy Type'], dummy_type.getTypeAllowedContentTypeList())
self.assertEquals(['Dummy Type'], dummy_type.getTypeHiddenContentTypeList())
action_list = dummy_type.contentValues(portal_type='Action Information')
self.assertEquals(['View'], [action.getTitle() for action in action_list])
self.assertEquals(['view'], [action.getReference() for action in action_list])
role_list = dummy_type.contentValues(portal_type='Role Information')
self.assertEquals(['Dummy Role Definition'],
[role.getTitle() for role in role_list])
self.assertEquals(('edit_workflow',), pw.getChainFor('Dummy Type'))
# and our type can be used
instance = self.portal.newContent(portal_type='Dummy Type',
id='test_document')
instance.setSourceReference('OK')
self.assertEquals('OK', instance.getSourceReference())
type_provider = self.portal._getOb('dummy_type_provider', None) finally:
self.assertNotEqual(None, type_provider) new_bt.uninstall()
self.assertNotEquals(None, types_tool.getTypeInfo('Base Category'))
# This type provider, will be automatically registered on types tool during self.assertEquals(None, types_tool.getTypeInfo('Dummy Type'))
# business template installation, because it contains type information self.assertFalse('dummy_type_provider' in types_tool.type_provider_list)
self.assertTrue('dummy_type_provider' in types_tool.type_provider_list)
# The type is reinstalled
self.assertTrue('Dummy Type' in type_provider.objectIds())
# is available from types tool
self.assertTrue('Dummy Type' in [ti.getId() for
ti in types_tool.listTypeInfo()])
dummy_type = types_tool.getTypeInfo('Dummy Type')
self.assertNotEquals(None, dummy_type)
# all the configuration from the type is still here
self.assertEquals(['Reference'], dummy_type.getTypePropertySheetList())
self.assertEquals(['source'], dummy_type.getTypeBaseCategoryList())
self.assertEquals(['Dummy Type'], dummy_type.getTypeAllowedContentTypeList())
self.assertEquals(['Dummy Type'], dummy_type.getTypeHiddenContentTypeList())
action_list = dummy_type.contentValues(portal_type='Action Information')
self.assertEquals(['View'], [action.getTitle() for action in action_list])
self.assertEquals(['view'], [action.getReference() for action in action_list])
role_list = dummy_type.contentValues(portal_type='Role Information')
self.assertEquals(['Dummy Role Definition'],
[role.getTitle() for role in role_list])
self.assertEquals(('edit_workflow',), pw.getChainFor('Dummy Type'))
# and our type can be used
instance = self.portal.newContent(portal_type='Dummy Type',
id='test_document')
instance.setSourceReference('OK')
self.assertEquals('OK', instance.getSourceReference())
new_bt.uninstall()
self.assertNotEquals(None, types_tool.getTypeInfo('Base Category'))
self.assertEquals(None, types_tool.getTypeInfo('Dummy Type'))
self.assertFalse('dummy_type_provider' in types_tool.type_provider_list)
def test_type_provider_2(self): def test_type_provider_2(self):
self.portal._setObject('dummy_type_provider', DummyTypeProvider()) self.portal._setObject('dummy_type_provider', DummyTypeProvider())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment