Exemplo n.º 1
0
 def test_to_string_msh_field(self):
     m = Message('OML_O33')
     msh = m.msh
     self.assertEqual(msh.msh_1.to_er7(), '|')
     self.assertEqual(msh.msh_2.to_er7(), '^~\\&')
     msh_1 = Field('MSH_1')
     msh_2 = Field('MSH_2')
     self.assertRaises(IndexError, msh_1.to_er7)
     self.assertRaises(IndexError, msh_2.to_er7)
Exemplo n.º 2
0
 def test_to_string_msh_field_v27(self):
     for v in ('2.7', '2.8', '2.8.1', '2.8.2'):
         m = Message('OML_O33', version=v)
         msh = m.msh
         self.assertEqual(msh.msh_1.to_er7(), '|')
         self.assertEqual(msh.msh_2.to_er7(), '^~\\&#')
         msh_1 = Field('MSH_1')
         msh_2 = Field('MSH_2')
         self.assertRaises(IndexError, msh_1.to_er7)
         self.assertRaises(IndexError, msh_2.to_er7)
Exemplo n.º 3
0
    def test_to_string_segment_with_unknown_fields(self):
        f1 = Field()
        f1.value = 'abc'
        f2 = Field()
        f2.value = 'cba'

        pid_er7 = 'PID|1||566-554-3423^^^GHH^MR||SURNAME^NAME^A|||M|||1111 SOMEWHERE STREET^^SOMEWHERE^^^USA||555-555-2004~444-333-222|||M|||||||||||||||||||||||'
        pid = parse_segment(pid_er7)
        pid.add(f1)
        self.assertEqual(pid.to_er7(trailing_children=True), pid_er7 + '|abc')
        pid.add(f2)
        self.assertEqual(pid.to_er7(trailing_children=True), pid_er7 + '|abc|cba')
Exemplo n.º 4
0
 def test_to_string_msh_field_v27_no_truncation(self):
     for v in ('2.7', '2.8', '2.8.1', '2.8.2'):
         m = Message('OML_O33',
                     encoding_chars=DEFAULT_ENCODING_CHARS,
                     version=v)
         msh = m.msh
         self.assertEqual(msh.msh_1.to_er7(), '|')
         self.assertEqual(msh.msh_2.to_er7(), '^~\\&')
         msh_1 = Field('MSH_1')
         msh_2 = Field('MSH_2')
         self.assertRaises(IndexError, msh_1.to_er7)
         self.assertRaises(IndexError, msh_2.to_er7)
Exemplo n.º 5
0
    def test_to_string_z_segment_with_unknown_fields(self):
        f1 = Field()
        f1.value = 'abc'
        f2 = Field()
        f2.value = 'cba'

        zin = Segment('ZIN')
        zin.zin_1 = 'yyy'
        zin.add(f1)
        self.assertEqual(zin.to_er7(), 'ZIN|yyy|abc')
        zin.zin_4 = 'zzz'
        self.assertEqual(zin.to_er7(), 'ZIN|yyy|||zzz|abc')
        zin.add(f2)
        self.assertEqual(zin.to_er7(), 'ZIN|yyy|||zzz|abc|cba')
Exemplo n.º 6
0
 def test_wrong_z_field(self):
     """
     Tests that Fields of None datatype are not validated
     """
     f = Field('zin_1')
     f.value = 'aa^bb'
     self.assertRaises(ValidationError, f.validate, report_file=self.report_file)
     self._test_report_file('ERROR')
Exemplo n.º 7
0
 def test_wrong_field(self):
     """
     Tests that if there is an unexpected field the message in not validated
     The message used has an unexpected unknown field in the pid
     """
     msg = self._create_message(self.rsp_k21)
     unkn_field = Field()
     msg.rsp_k21_query_response.pid.add(unkn_field)
     self.assertRaises(ValidationError, msg.validate, report_file=self.report_file)
     self._test_report_file('ERROR')
Exemplo n.º 8
0
    def test_wrong_z_segment(self):
        """
        Tests that, if the Z segment doesn't follow HL7 rules, the message is not validated
        """
        msg = self._create_message(self.adt_a01)
        msg.add_segment('zin')
        msg.zin = 'ZIN|aa|bb|cc|'
        # CX_1 is mandatory
        zin_4 = Field('ZIN_4', datatype='CX', version='2.6')
        zin_4.value = '^12'
        msg.zin.add(zin_4)
        self.assertRaises(ValidationError, msg.validate, report_file=self.report_file)

        del msg.zin.zin_4

        # Z segment with unknown fields are not validated
        msg.zin.add(Field(version="2.6"))
        self.assertRaises(ValidationError, msg.validate, report_file=self.report_file)
        self._test_report_file('ERROR')
Exemplo n.º 9
0
 def test_z_segment(self):
     """
     Tests that, after adding a Z segment to a valid message, the message is still valid
     """
     msg = self._create_message(self.rsp_k21)
     msg.add_segment('zin')
     msg.zin = 'ZIN|aa|bb|cc|'
     zin_4 = Field('ZIN_4', datatype='CWE')
     zin_4.value = 'dd'
     msg.zin.zin_4 = zin_4
     self.assertTrue(msg.validate())
Exemplo n.º 10
0
 def test_wrong_datatype_field(self):
     """
     Tests that if a field is not of the correct datatype the message is not validate
     The message used has the MSH_9 of type ST
     """
     msg = self._create_message(self.rsp_k21)
     msh_9 = Field('MSH_9', datatype='ST')
     msh_9.msh_9_1 = 'RSP_K21'
     msg.msh.msh_9 = msh_9
     self.assertRaises(ValidationError, msg.validate, report_file=self.report_file)
     self._test_report_file('ERROR')
def _populate_telecom_fields(segment: Segment, personal_telecom: str,
                             work_telecom: str, telecom_list) -> None:
    for telecom in telecom_list:
        telecom_type = telecom.get("use", "")
        telecom_value = telecom.get("value", "")
        if telecom_type in ["home", "temp", "old", "mobile", ""]:
            telecom = personal_telecom
        else:
            telecom = work_telecom
        if telecom_value:
            telecom_field = Field(telecom)
            telecom_field.XTN_2 = _get_telecom_use_code(telecom_type)
            telecom_field.XTN_12 = telecom_value
            segment.add(telecom_field)
Exemplo n.º 12
0
 def test_z_field(self):
     f = Field('zin_1')
     self.assertTrue(f.validate())
Exemplo n.º 13
0
def parse_field(text, name=None, version=None, encoding_chars=None, validation_level=None,
                reference=None, force_varies=False):
    """
    Parse the given ER7-encoded field and return an instance of :class:`Field <hl7apy.core.Field>`.

    :type text: ``str``
    :param text: the ER7-encoded string containing the fields to be parsed

    :type name: ``str``
    :param name: the field name (e.g. MSH_7)

    :type version: ``str``
    :param version: the HL7 version (e.g. "2.5"), or ``None`` to use the default
        (see :func:`set_default_version <hl7apy.set_default_version>`)

    :type encoding_chars: ``dict``
    :param encoding_chars: a dictionary containing the encoding chars or None to use the default
        (see :func:`set_default_encoding_chars <hl7apy.set_default_encoding_chars>`)

    :type validation_level: ``int``
    :param validation_level: the validation level. Possible values are those defined in
        :class:`VALIDATION_LEVEL <hl7apy.consts.VALIDATION_LEVEL>` class or ``None`` to use the default
        validation level (see :func:`set_default_validation_level <hl7apy.set_default_validation_level>`)

    :type reference: ``dict``
    :param reference: a dictionary containing the element structure returned by
        :func:`load_reference <hl7apy.load_reference>` or :func:`find_reference <hl7apy.find_reference>`
        or belonging to a message profile

    :type force_varies: ``boolean``
    :param force_varies: flag that force the fields to use a varies structure when no reference is found.
        It is used when a segment ends with a field of type varies that thus support infinite children

    :return: an instance of :class:`Field <hl7apy.core.Field>`

    >>> field = "NUCLEAR^NELDA^W"
    >>> nk1_2 = parse_field(field, name="NK1_2")
    >>> print(nk1_2)
    <Field NK1_2 (NAME) of type XPN>
    >>> print(nk1_2.to_er7())
    NUCLEAR^NELDA^W
    >>> unknown = parse_field(field)
    >>> print(unknown)
    <Field of type None>
    >>> print(unknown.to_er7())
    NUCLEAR^NELDA^W
    """
    version = _get_version(version)
    encoding_chars = _get_encoding_chars(encoding_chars)
    validation_level = _get_validation_level(validation_level)

    try:
        field = Field(name, version=version, validation_level=validation_level, reference=reference)
    except InvalidName:
        if force_varies:
            reference = ('leaf', 'varies', None, None)
            field = Field(name, version=version, validation_level=validation_level, reference=reference)
        else:
            field = Field(version=version, validation_level=validation_level, reference=reference)

    if name in ('MSH_1', 'MSH_2'):
        s = SubComponent(datatype='ST', value=text, validation_level=validation_level, version=version)
        c = Component(datatype='ST', validation_level=validation_level, version=version)
        c.add(s)
        field.add(c)
    else:
        children = parse_components(text, field.datatype, version, encoding_chars, validation_level,
                                    field.structure_by_name)
        if Validator.is_tolerant(validation_level) and is_base_datatype(field.datatype, version) and \
                len(children) > 1:
            field.datatype = None
        field.children = children
    return field
def _populate_nk1_segment(nk1: Segment, contact: dict, set_id: int) -> None:
    nk1.NK1_1 = str(set_id)
    if name := contact.get("name"):
        nk1_2 = Field("NK1_2")
        _populate_name_field(nk1_2, name)
        nk1.add(nk1_2)