##// END OF EJS Templates
Shim IPython.nbformat so tests pass again
Shim IPython.nbformat so tests pass again

File last commit:

r20454:f1398d6c
r20894:49552ffe
Show More
test_serialize.py
26 lines | 764 B | text/x-python | PythonLexer
MinRK
test websocket-friendly binary message roundtrip...
r18335 """Test serialize/deserialize messages with buffers"""
import os
import nose.tools as nt
from IPython.kernel.zmq.session import Session
from ..base.zmqhandlers import (
serialize_binary_message,
deserialize_binary_message,
)
def test_serialize_binary():
s = Session()
msg = s.msg('data_pub', content={'a': 'b'})
Jason Grout
Fix serialization tests
r20454 msg['buffers'] = [ memoryview(os.urandom(3)) for i in range(3) ]
MinRK
test websocket-friendly binary message roundtrip...
r18335 bmsg = serialize_binary_message(msg)
nt.assert_is_instance(bmsg, bytes)
def test_deserialize_binary():
s = Session()
msg = s.msg('data_pub', content={'a': 'b'})
Jason Grout
Fix serialization tests
r20454 msg['buffers'] = [ memoryview(os.urandom(2)) for i in range(3) ]
MinRK
test websocket-friendly binary message roundtrip...
r18335 bmsg = serialize_binary_message(msg)
msg2 = deserialize_binary_message(bmsg)
nt.assert_equal(msg2, msg)