diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-10-03 14:32:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-03 14:32:09 -0400 |
commit | 06bd7356bbce853e5b1202561f50ce15184db370 (patch) | |
tree | 5f1d9a7c55618b2a1f18b8c8c2c7f1e70b607a74 /tests/test_utils.py | |
parent | b99c0941f2738202b40c76ef89e6ab418ff45c8c (diff) | |
parent | 68d8de89403397b3f536841cedc753fa655a1116 (diff) | |
download | cmd2-git-06bd7356bbce853e5b1202561f50ce15184db370.tar.gz |
Merge pull request #564 from python-cmd2/stdsim_binary
StdSim improvements for handling binary data
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r-- | tests/test_utils.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py index 53031567..43a05a9a 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -133,6 +133,7 @@ def test_stdsim_buffer_write_bytes(stdout_sim): b_str = b'Hello World' stdout_sim.buffer.write(b_str) assert stdout_sim.getvalue() == b_str.decode() + assert stdout_sim.getbytes() == b_str def test_stdsim_buffer_write_str(stdout_sim): my_str = 'Hello World' @@ -148,6 +149,15 @@ def test_stdsim_read(stdout_sim): assert stdout_sim.read() == my_str assert stdout_sim.getvalue() == '' +def test_stdsim_read_bytes(stdout_sim): + b_str = b'Hello World' + stdout_sim.buffer.write(b_str) + # getbytes() returns the value and leaves it unaffected internally + assert stdout_sim.getbytes() == b_str + # read_bytes() returns the value and then clears the internal buffer + assert stdout_sim.readbytes() == b_str + assert stdout_sim.getbytes() == b'' + def test_stdsim_clear(stdout_sim): my_str = 'Hello World' stdout_sim.write(my_str) |