- Timestamp:
- 30 Nov 2017, 12:57:05 (7 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students/reports/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/tests/test_level_report.py
r14629 r14918 87 87 print "Sample grad_level_report.pdf written to %s" % path 88 88 return 89 90 def test_create_dp_pdf(self): 91 self.certificate.study_mode = 'dp_ft' 92 self.student['studycourse']['100']['Course1'].ca = 0 93 self.student['studycourse']['100']['Course1'].credits = 91 94 self.certificate.end_level = 100 95 self.app['faculties']['fac1'].officer_1 = 'Rosa Moonshine - Dean of Faculty' 96 self.app['faculties']['fac1']['dep1'].officer_1 = 'Amalia Sunshine - Head of Department' 97 report = GradLevelReport('fac1', 'dep1', 'CERT1', 2010, 100) 98 result = report.create_pdf('JOB_ID') 99 self.assertTrue(result.startswith('%PDF-')) 100 path = os.path.join(samples_dir(), 'dp_grad_level_report.pdf') 101 open(path, 'wb').write(result) 102 print "Sample dp_grad_level_report.pdf written to %s" % path 103 return -
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/tests/test_session_results_presentation.py
r14631 r14918 56 56 return 57 57 58 def test_create_dp_pdf(self): 59 self.certificate.degree = 'BA(FS)' 60 self.certificate.study_mode = 'dp_ft' 61 self.app['faculties']['fac1'].officer_1 = 'Rosa Moonshine - Dean of Faculty' 62 self.app['faculties']['fac1']['dep1'].officer_1 = 'Amalia Sunshine - Head of Department' 63 self.app['faculties']['fac1']['dep1'].officer_2 = 'Theresa Starbright - External Examiner' 64 report = CustomSessionResultsPresentation('fac1', 'dep1', 'CERT1', 2010, 100) 65 result = report.create_pdf('JOB_ID') 66 self.assertTrue(result.startswith('%PDF-')) 67 path = os.path.join(samples_dir(), 'dp_session_results_presentation.pdf') 68 open(path, 'wb').write(result) 69 print "Sample dp_session_results_presentation.pdf written to %s" % path 70 return 71 58 72 59 73 class GradSessionResultsPresentationTests(CatalogTestSetup):
Note: See TracChangeset for help on using the changeset viewer.