Changeset 9012 for main/waeup.kofa/trunk/src/waeup/kofa/utils
- Timestamp:
- 18 Jul 2012, 06:47:21 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/utils
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/utils/browser.py
r9011 r9012 23 23 from zope.component import queryUtility, getUtility, createObject 24 24 from waeup.kofa.browser.layout import UtilityView 25 from waeup.kofa.interfaces import IObjectHistory 25 26 26 27 from waeup.kofa.interfaces import IUniversity 28 29 def replaceStudentMessages(old, new): 30 students = grok.getSite()['students'] 31 for student in students.values(): 32 history = IObjectHistory(student) 33 history.modifyMessages(old, new) 34 return 27 35 28 36 class ReindexPage(UtilityView, grok.View): … … 55 63 self.redirect(self.url(self.context, '@@index')) 56 64 return 65 66 class ModifyAllStudentHistory(UtilityView, grok.View): 67 """ View to modify all student histories. 68 69 """ 70 grok.context(IUniversity) 71 grok.name('modify_student_history') 72 grok.require('waeup.managePortal') 73 74 def update(self,old=None, new=None): 75 if None in (old, new): 76 self.flash('Syntax: /modify_student_history?old=[old string]&new=[new string]') 77 return 78 replaceStudentMessages(old, new) 79 self.context.logger.info( 80 "'%s' replaced by '%s' in all student histories." % (old, new)) 81 self.flash('Finished') 82 return 83 84 def render(self): 85 self.redirect(self.url(self.context, '@@index')) 86 return -
main/waeup.kofa/trunk/src/waeup/kofa/utils/tests/test_browser.py
r9011 r9012 33 33 from waeup.kofa.testing import FunctionalLayer, FunctionalTestCase 34 34 35 from waeup.kofa.utils.browser import replaceStudentMessages 35 36 from waeup.kofa.students.tests.test_browser import StudentsFullSetup 36 37 37 38 class UtilsUITests(StudentsFullSetup): 38 # Tests for Student class views and pages39 39 40 40 layer = FunctionalLayer 41 42 def test_replace_student_messages(self): 43 self.assertTrue('Student record created by system' in 44 self.student.history.messages[0]) 45 replaceStudentMessages('system', 'me') 46 self.assertTrue('Student record created by me' in 47 self.student.history.messages[0]) 48 49 def test_modify_all_student_history(self): 50 self.assertTrue('Student record created by system' in 51 self.student.history.messages[0]) 52 self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') 53 self.browser.open('http://localhost/app/modify_student_history') 54 self.assertTrue( 55 'Syntax: /modify_student_history?old=[old string]&new=[new string]' 56 in self.browser.contents) 57 self.browser.open( 58 'http://localhost/app/modify_student_history?old=by system&new=by me') 59 self.assertTrue('Finished' in self.browser.contents) 60 self.assertTrue('Student record created by me' in 61 self.student.history.messages[0]) 41 62 42 63 def test_reindex(self):
Note: See TracChangeset for help on using the changeset viewer.