コード例 #1
0
class TestNssGetStats(unittest.TestCase):
    def setUp(self):
        self.nhs = NhsNss()

    def test_with_large_file(self):
        """Initial smoke test"""
        xml_string = get_string("fixtures/large-test-file.xml")
        root = ET.fromstring(xml_string)
        for institution in root.iter("INSTITUTION"):
            for course in institution.findall("KISCOURSE"):
                raw_course_data = xmltodict.parse(
                    ET.tostring(course))["KISCOURSE"]
                self.nhs.get_stats(raw_course_data)

    # def test_get_stats_subj(self):
    #     raw_course_xml = xmltodict.parse(
    #         get_string("fixtures/course_nhs_subj.xml")
    #     )["KISCOURSE"]
    #     expected_response = json.loads(
    #         get_string("fixtures/course_nhs_subj_resp.json")
    #     )
    #     json_obj = self.nhs.get_stats(raw_course_xml)
    #     self.assertEqual(json_obj[0], expected_response[0])

    def test_get_stats_no_subj(self):
        raw_course_xml = xmltodict.parse(
            get_string("fixtures/course_nhs_no_subj.xml"))["KISCOURSE"]
        expected_response = json.loads(
            get_string("fixtures/course_nhs_no_subj_resp.json"))
        json_obj = self.nhs.get_stats(raw_course_xml)
        self.assertDictEqual(json_obj[0], expected_response[0])
コード例 #2
0
 def setUp(self):
     self.nhs = NhsNss()
コード例 #3
0
 def setUp(self):
     self.nhs_nss = NhsNss()
     self.lookup = self.nhs_nss.question_description_lookup
コード例 #4
0
 def setUp(self):
     self.nhs_nss = NhsNss()
     self.lookup = self.nhs_nss.data_fields_lookup