-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move MockStream and MockSocket into their own files
- Loading branch information
1 parent
e00a2d5
commit 8d78f5d
Showing
4 changed files
with
101 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Various mocks for testing | ||
|
||
|
||
class MockSocket: | ||
""" | ||
A class simulating an readable socket, optionally raising a | ||
special exception every other read. | ||
""" | ||
|
||
class TestError(BaseException): | ||
pass | ||
|
||
def __init__(self, data, interrupt_every=0): | ||
self.data = data | ||
self.counter = 0 | ||
self.pos = 0 | ||
self.interrupt_every = interrupt_every | ||
|
||
def tick(self): | ||
self.counter += 1 | ||
if not self.interrupt_every: | ||
return | ||
if (self.counter % self.interrupt_every) == 0: | ||
raise self.TestError() | ||
|
||
def recv(self, bufsize): | ||
self.tick() | ||
bufsize = min(5, bufsize) # truncate the read size | ||
result = self.data[self.pos : self.pos + bufsize] | ||
self.pos += len(result) | ||
return result | ||
|
||
def recv_into(self, buffer, nbytes=0, flags=0): | ||
self.tick() | ||
if nbytes == 0: | ||
nbytes = len(buffer) | ||
nbytes = min(5, nbytes) # truncate the read size | ||
result = self.data[self.pos : self.pos + nbytes] | ||
self.pos += len(result) | ||
buffer[: len(result)] = result | ||
return len(result) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import asyncio | ||
|
||
# Helper Mocking classes for the tests. | ||
|
||
|
||
class MockStream: | ||
""" | ||
A class simulating an asyncio input buffer, optionally raising a | ||
special exception every other read. | ||
""" | ||
|
||
class TestError(BaseException): | ||
pass | ||
|
||
def __init__(self, data, interrupt_every=0): | ||
self.data = data | ||
self.counter = 0 | ||
self.pos = 0 | ||
self.interrupt_every = interrupt_every | ||
|
||
def tick(self): | ||
self.counter += 1 | ||
if not self.interrupt_every: | ||
return | ||
if (self.counter % self.interrupt_every) == 0: | ||
raise self.TestError() | ||
|
||
async def read(self, want): | ||
self.tick() | ||
want = 5 | ||
result = self.data[self.pos : self.pos + want] | ||
self.pos += len(result) | ||
return result | ||
|
||
async def readline(self): | ||
self.tick() | ||
find = self.data.find(b"\n", self.pos) | ||
if find >= 0: | ||
result = self.data[self.pos : find + 1] | ||
else: | ||
result = self.data[self.pos :] | ||
self.pos += len(result) | ||
return result | ||
|
||
async def readexactly(self, length): | ||
self.tick() | ||
result = self.data[self.pos : self.pos + length] | ||
if len(result) < length: | ||
raise asyncio.IncompleteReadError(result, None) | ||
self.pos += len(result) | ||
return result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters