def testProfileQuestion_WithModule(self): from euphorie.content.profilequestion import ProfileQuestion from euphorie.content.module import Module profile = ProfileQuestion() profile.title = u"Office buildings" profile.question = u"Do you have an office buildings?" profile.description = u"<p>Owning property brings risks.</p>" profile.type = "optional" module = Module() module.title = u"Office buildings" module.description = u"<p>Owning property brings risks.</p>" module.optional = False module.solution_direction = None profile["1"] = module root = self.root() view = ExportSurvey(None, None) view.exportProfileQuestion(root, profile) self.assertEqual(etree.tostring(root, pretty_print=True), '<root xmlns="http://xml.simplon.biz/euphorie/survey/1.0">\n' ' <profile-question>\n' ' <title>Office buildings</title>\n' ' <question>Do you have an office buildings?</question>\n' ' <description><p>Owning property brings ' 'risks.</p></description>\n' ' <module optional="false">\n' ' <title>Office buildings</title>\n' ' <description><p>Owning property brings ' 'risks.</p></description>\n' ' </module>\n' ' </profile-question>\n' '</root>\n')
def testProfileQuestion_with_description(self): from euphorie.content.profilequestion import ProfileQuestion profile = ProfileQuestion() profile.title = u"Office buildings" profile.description = u"<p>Owning property brings risks.</p>" profile.type = 'optional' root = self.root() view = ExportSurvey(None, None) view.exportProfileQuestion(root, profile) xml = etree.tostring(root, pretty_print=True) self.assertTrue( '<description><p>Owning property brings risks.' '</p></description>' in xml)
def testProfileQuestion_Minimal(self): from euphorie.content.profilequestion import ProfileQuestion profile = ProfileQuestion() profile.title = u"Office buildings" profile.question = u"Do you have an office building?" profile.type = "optional" root = self.root() view = ExportSurvey(None, None) node = view.exportProfileQuestion(root, profile) self.assertTrue(node in root) self.assertEqual(etree.tostring(root, pretty_print=True), '<root xmlns="http://xml.simplon.biz/euphorie/survey/1.0">\n' ' <profile-question>\n' ' <title>Office buildings</title>\n' ' <question>Do you have an office building?</question>\n' ' </profile-question>\n' '</root>\n')
def testProfileQuestion_WithoutQuestion(self): from euphorie.content.profilequestion import ProfileQuestion profile = ProfileQuestion() profile.title = u"Office buildings" profile.description = u"<p>Owning property brings risks.</p>" profile.type = "optional" root = self.root() view = ExportSurvey(None, None) view.exportProfileQuestion(root, profile) self.assertEqual(etree.tostring(root, pretty_print=True), '<root xmlns="http://xml.simplon.biz/euphorie/survey/1.0">\n' ' <profile-question>\n' ' <title>Office buildings</title>\n' ' <question>Office buildings</question>\n' ' <description><p>Owning property brings risks.' '</p></description>\n' ' </profile-question>\n' '</root>\n')
def testSurvey_WithProfileQuestion(self): surveygroup = SurveyGroup() surveygroup.title = "Generic sector" surveygroup._setOb("standard", Survey()) survey = surveygroup["standard"] # Acquisition wrap survey.title = "Generic sector" survey.introduction = None survey.classification_code = None survey.evaluation_optional = False survey.language = "en-GB" profile = ProfileQuestion() profile.title = "Office buildings" profile.question = "Do you have an office buildings?" profile.description = "<p>Owning property brings risks.</p>" profile.type = "optional" survey._setOb("1", profile) root = self.root() view = ExportSurvey(None, None) view.exportSurvey(root, survey) self.assertEqual( safe_nativestring(etree.tostring(root, pretty_print=True)), '<root xmlns="http://xml.simplon.biz/euphorie/survey/1.0">\n' " <survey>\n" " <title>Generic sector</title>\n" " <language>en-GB</language>\n" " <tool_type>classic</tool_type>\n" " <measures_text_handling>full</measures_text_handling>\n" " <integrated_action_plan>false</integrated_action_plan>\n" " <evaluation-algorithm>kinney</evaluation-algorithm>\n" " <evaluation-optional>false</evaluation-optional>\n" " <profile-question>\n" " <title>Office buildings</title>\n" " <question>Do you have an office buildings?</question>\n" " <description><p>Owning property brings " "risks.</p></description>\n" " <use-location-question>true</use-location-question>\n" " </profile-question>\n" " </survey>\n" "</root>\n", )
def testSurvey_WithProfileQuestion(self): from euphorie.content.surveygroup import SurveyGroup from euphorie.content.survey import Survey from euphorie.content.profilequestion import ProfileQuestion surveygroup = SurveyGroup() surveygroup.title = u"Generic sector" surveygroup["standard"] = Survey() survey = surveygroup["standard"] # Acquisition wrap survey.title = u"Generic sector" survey.introduction = None survey.classification_code = None survey.evaluation_optional = False survey.language = "en-GB" profile = ProfileQuestion() profile.title = u"Office buildings" profile.question = u"Do you have an office buildings?" profile.description = u"<p>Owning property brings risks.</p>" profile.type = "optional" survey["1"] = profile root = self.root() view = ExportSurvey(None, None) view.exportSurvey(root, survey) self.assertEqual( etree.tostring(root, pretty_print=True), '<root xmlns="http://xml.simplon.biz/euphorie/survey/1.0">\n' ' <survey>\n' ' <title>Generic sector</title>\n' ' <language>en-GB</language>\n' ' <evaluation-algorithm>kinney</evaluation-algorithm>\n' ' <evaluation-optional>false</evaluation-optional>\n' ' <profile-question>\n' ' <title>Office buildings</title>\n' ' <question>Do you have an office buildings?</question>\n' ' <description><p>Owning property brings ' 'risks.</p></description>\n' ' <use-location-question>true</use-location-question>\n' ' </profile-question>\n' ' </survey>\n' '</root>\n')
def testSurvey_WithProfileQuestion(self): from euphorie.content.surveygroup import SurveyGroup from euphorie.content.survey import Survey from euphorie.content.profilequestion import ProfileQuestion surveygroup = SurveyGroup() surveygroup.title = u"Generic sector" surveygroup["standard"] = Survey() survey = surveygroup["standard"] # Acquisition wrap survey.title = u"Generic sector" survey.introduction = None survey.classification_code = None survey.evaluation_optional = False survey.language = "en-GB" profile = ProfileQuestion() profile.title = u"Office buildings" profile.question = u"Do you have an office buildings?" profile.description = u"<p>Owning property brings risks.</p>" profile.type = "optional" survey["1"] = profile root = self.root() view = ExportSurvey(None, None) view.exportSurvey(root, survey) self.assertEqual(etree.tostring(root, pretty_print=True), '<root xmlns="http://xml.simplon.biz/euphorie/survey/1.0">\n' ' <survey>\n' ' <title>Generic sector</title>\n' ' <language>en-GB</language>\n' ' <evaluation-algorithm>kinney</evaluation-algorithm>\n' ' <evaluation-optional>false</evaluation-optional>\n' ' <profile-question>\n' ' <title>Office buildings</title>\n' ' <question>Do you have an office buildings?</question>\n' ' <description><p>Owning property brings ' 'risks.</p></description>\n' ' </profile-question>\n' ' </survey>\n' '</root>\n')
def testProfileQuestion_WithRisk(self): from euphorie.content.profilequestion import ProfileQuestion from euphorie.content.risk import Risk profile = ProfileQuestion() profile.title = u"Office buildings" profile.question = u"Do you have an office buildings?" profile.description = u"<p>Owning property brings risks.</p>" profile.type = "optional" risk = Risk() risk.type = "top5" risk.title = u"Can your windows be locked?" risk.problem_description = u"Not all your windows can be locked" risk.description = u"<p>Locking windows is critical.</p>" risk.legal_reference = None risk.show_notapplicable = False profile["1"] = risk root = self.root() view = ExportSurvey(None, None) view.exportProfileQuestion(root, profile) self.assertEqual(etree.tostring(root, pretty_print=True), '<root xmlns="http://xml.simplon.biz/euphorie/survey/1.0">\n' ' <profile-question>\n' ' <title>Office buildings</title>\n' ' <question>Do you have an office buildings?</question>\n' ' <description><p>Owning property brings risks.' '</p></description>\n' ' <risk type="top5">\n' ' <title>Can your windows be locked?</title>\n' ' <problem-description>Not all your windows can be ' 'locked</problem-description>\n' ' <description><p>Locking windows is critical.' '</p></description>\n' ' <show-not-applicable>false</show-not-applicable>\n' ' </risk>\n' ' </profile-question>\n' '</root>\n')