-
-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
irc.utils, test: also remove null (\x00) in safe()
In `test_irc_utils` suite, rewrote `test_safe` and `test_safe_bytes` to generate a bunch more permutations of invalid characters automatically rather than writing them all out. The horse is definitely beaten *far* past death at this point... but the tests sure are thorough(bred). Also renamed `test_safe_null` -> `test_safe_none` to avoid confusion; `test_safe` and `test_safe_bytes` are the cases that check behavior with null characters/bytes. Python's docs technically do refer to `None` as the "null object" once or twice, but most of the docs (and most of us devs) simply call it `None`.
- Loading branch information
Showing
2 changed files
with
34 additions
and
23 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
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 |
---|---|---|
@@ -1,43 +1,52 @@ | ||
"""Tests for core ``sopel.irc.utils``""" | ||
from __future__ import annotations | ||
|
||
from itertools import permutations | ||
|
||
import pytest | ||
|
||
from sopel.irc import utils | ||
|
||
|
||
def test_safe(): | ||
text = 'some text' | ||
assert utils.safe(text + '\r\n') == text | ||
assert utils.safe(text + '\n') == text | ||
assert utils.safe(text + '\r') == text | ||
assert utils.safe('\r\n' + text) == text | ||
assert utils.safe('\n' + text) == text | ||
assert utils.safe('\r' + text) == text | ||
assert utils.safe('some \r\ntext') == text | ||
assert utils.safe('some \ntext') == text | ||
assert utils.safe('some \rtext') == text | ||
variants = permutations(('\n', '\r', '\x00')) | ||
for variant in variants: | ||
seq = ''.join(variant) | ||
assert utils.safe(text + seq) == text | ||
assert utils.safe(seq + text) == text | ||
assert utils.safe('some ' + seq + 'text') == text | ||
assert utils.safe( | ||
variant[0] | ||
+ 'some ' | ||
+ variant[1] | ||
+ 'text' | ||
+ variant[2] | ||
) == text | ||
|
||
|
||
def test_safe_empty(): | ||
text = '' | ||
assert utils.safe(text) == text | ||
|
||
|
||
def test_safe_null(): | ||
def test_safe_none(): | ||
with pytest.raises(TypeError): | ||
utils.safe(None) | ||
|
||
|
||
def test_safe_bytes(): | ||
text = b'some text' | ||
assert utils.safe(text) == text.decode('utf-8') | ||
assert utils.safe(text + b'\r\n') == text.decode('utf-8') | ||
assert utils.safe(text + b'\n') == text.decode('utf-8') | ||
assert utils.safe(text + b'\r') == text.decode('utf-8') | ||
assert utils.safe(b'\r\n' + text) == text.decode('utf-8') | ||
assert utils.safe(b'\n' + text) == text.decode('utf-8') | ||
assert utils.safe(b'\r' + text) == text.decode('utf-8') | ||
assert utils.safe(b'some \r\ntext') == text.decode('utf-8') | ||
assert utils.safe(b'some \ntext') == text.decode('utf-8') | ||
assert utils.safe(b'some \rtext') == text.decode('utf-8') | ||
variants = permutations((b'\n', b'\r', b'\x00')) | ||
for variant in variants: | ||
seq = b''.join(variant) | ||
assert utils.safe(text + seq) == text.decode('utf-8') | ||
assert utils.safe(seq + text) == text.decode('utf-8') | ||
assert utils.safe(b'some ' + seq + b'text') == text.decode('utf-8') | ||
assert utils.safe( | ||
variant[0] | ||
+ b'some ' | ||
+ variant[1] | ||
+ b'text' | ||
+ variant[2] | ||
) == text.decode('utf-8') |