# HG changeset patch # User Sylvain Thénault # Date 1253018835 -7200 # Node ID 56d4104b4261e96dbeeb61ae00a4410007a885da # Parent 3422d2188940e8c19b0fe76868b8cc8254aa2f01 comment out deprecated test diff -r 3422d2188940 -r 56d4104b4261 web/test/unittest_views_navigation.py --- a/web/test/unittest_views_navigation.py Tue Sep 15 14:10:52 2009 +0200 +++ b/web/test/unittest_views_navigation.py Tue Sep 15 14:47:15 2009 +0200 @@ -95,37 +95,37 @@ html = navcomp.render() - -class ContentNavigationTC(EnvBasedTC): +# XXX deactivate, contextual component has been removed +# class ContentNavigationTC(EnvBasedTC): - def test_component_context(self): - view = mock_object(is_primary=lambda x: True) - rset = self.execute('CWUser X LIMIT 1') - req = self.request() - objs = self.vreg['contentnavigation'].possible_vobjects( - req, rset=rset, view=view, context='navtop') - # breadcrumbs should be in headers by default - clsids = set(obj.id for obj in objs) - self.failUnless('breadcrumbs' in clsids) - objs = self.vreg['contentnavigation'].possible_vobjects( - req, rset=rset, view=view, context='navbottom') - # breadcrumbs should _NOT_ be in footers by default - clsids = set(obj.id for obj in objs) - self.failIf('breadcrumbs' in clsids) - self.execute('INSERT CWProperty P: P pkey "contentnavigation.breadcrumbs.context", ' - 'P value "navbottom"') - # breadcrumbs should now be in footers - req.cnx.commit() - objs = self.vreg['contentnavigation'].possible_vobjects( - req, rset=rset, view=view, context='navbottom') +# def test_component_context(self): +# view = mock_object(is_primary=lambda x: True) +# rset = self.execute('CWUser X LIMIT 1') +# req = self.request() +# objs = self.vreg['contentnavigation'].possible_vobjects( +# req, rset=rset, view=view, context='navtop') +# # breadcrumbs should be in headers by default +# clsids = set(obj.id for obj in objs) +# self.failUnless('breadcrumbs' in clsids) +# objs = self.vreg['contentnavigation'].possible_vobjects( +# req, rset=rset, view=view, context='navbottom') +# # breadcrumbs should _NOT_ be in footers by default +# clsids = set(obj.id for obj in objs) +# self.failIf('breadcrumbs' in clsids) +# self.execute('INSERT CWProperty P: P pkey "contentnavigation.breadcrumbs.context", ' +# 'P value "navbottom"') +# # breadcrumbs should now be in footers +# req.cnx.commit() +# objs = self.vreg['contentnavigation'].possible_vobjects( +# req, rset=rset, view=view, context='navbottom') - clsids = [obj.id for obj in objs] - self.failUnless('breadcrumbs' in clsids) - objs = self.vreg['contentnavigation'].possible_vobjects( - req, rset=rset, view=view, context='navtop') +# clsids = [obj.id for obj in objs] +# self.failUnless('breadcrumbs' in clsids) +# objs = self.vreg['contentnavigation'].possible_vobjects( +# req, rset=rset, view=view, context='navtop') - clsids = [obj.id for obj in objs] - self.failIf('breadcrumbs' in clsids) +# clsids = [obj.id for obj in objs] +# self.failIf('breadcrumbs' in clsids) if __name__ == '__main__':