Пример #1
0
    def test_tn3270e(self):
        # Arrange
        telnet = Telnet('IBM-3279-2-E')

        telnet.socket = create_autospec(socket, instance=True)

        telnet.is_tn3270e_negotiated = True

        # Act
        telnet.write(bytes.fromhex('01 02 03 ff 04 05'))

        # Assert
        telnet.socket.sendall.assert_called_with(
            bytes.fromhex('00 00 00 00 00 01 02 03 ff ff 04 05 ff ef'))
Пример #2
0
    def test_basic_tn3270(self):
        # Arrange
        telnet = Telnet('IBM-3279-2-E')

        telnet.socket = Mock()

        telnet.is_tn3270e_negotiated = False

        # Act
        telnet.write(bytes.fromhex('01 02 03 ff 04 05'))

        # Assert
        telnet.socket.sendall.assert_called_with(
            bytes.fromhex('01 02 03 ff ff 04 05 ff ef'))