def test_to_a_p_abort_primitive(self): """ Check converting PDU to a_p_abort primitive """ pdu = A_ABORT_RQ() pdu.decode(a_p_abort) primitive = pdu.to_primitive() assert isinstance(primitive, A_P_ABORT) assert primitive.provider_reason == 4
def test_to_a_abort_primitive(self): """ Check converting PDU to a_abort primitive """ pdu = A_ABORT_RQ() pdu.decode(a_abort) primitive = pdu.to_primitive() assert isinstance(primitive, A_ABORT) assert primitive.abort_source == 0
def test_a_p_abort_from_primitive(self): """ Check converting PDU to primitive """ orig_pdu = A_ABORT_RQ() orig_pdu.decode(a_p_abort) primitive = orig_pdu.to_primitive() new_pdu = A_ABORT_RQ() new_pdu.from_primitive(primitive) assert new_pdu == orig_pdu