Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix iter issues #7

Merged
merged 5 commits into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More tests and minor fixes
  • Loading branch information
justmobilize committed Feb 27, 2025
commit f333823dbc9ade76154b51cd63d44676eeb85b40
2 changes: 1 addition & 1 deletion adafruit_json_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def __getitem__(self, key):
break
if current_key == key:
next_value = self.data.next_value(",")
if self.data.last_char in [ord("}"), ord("]")]:
if self.data.last_char == ord("}"):
self.done = True
if isinstance(next_value, Transient):
self.active_child = next_value
Expand Down
44 changes: 38 additions & 6 deletions tests/test_json_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@ def __init__(self, data=b"", chunk_size=10):
self.chunks_read = 0
self.data = data
self.data_len = len(self.data)
self.poition = 0
self.position = 0

def __iter__(self):
return self

def __next__(self):
if self.poition > self.data_len:
if self.position > self.data_len:
raise StopIteration

end = self.chunk_size
if self.poition + end > self.data_len:
if self.position + end > self.data_len:
end = self.data_len
chunk = self.data[self.poition : self.poition + self.chunk_size]
chunk = self.data[self.position : self.position + self.chunk_size]

self.chunks_read += 1
self.poition += self.chunk_size
self.position += self.chunk_size

return chunk

Expand All @@ -54,6 +54,7 @@ def get_chunks_read(self):
def dict_with_all_types():
return """
{
"_check": "{\\\"a\\\": 1, \\\"b\\\": [2,3]}",
"bool": true,
"dict": {"key": "value"},
"float": 1.1,
Expand Down Expand Up @@ -341,6 +342,28 @@ def test_complex_dict_passed_key_raises(complex_dict):
stream["obects_id"]


def test_complex_dict_passed_reference_raises(complex_dict):
"""
Test loading a complex dict and attempting to grab a data from a saved reference that has
been passed raises.
"""

assert json.loads(complex_dict)

stream = adafruit_json_stream.load(BytesChunkIO(complex_dict.encode()))

list_1 = stream["list_1"]
dict_1 = next(list_1)
sub_dict = dict_1["sub_dict"]
sub_list = dict_1["sub_list"]
list_2 = stream["list_2"]
next(list_2)
with pytest.raises(KeyError, match="sub_dict_id"):
sub_dict["sub_dict_id"]
with pytest.raises(StopIteration):
next(sub_list)


# complex_dict is 1518 bytes
@pytest.mark.parametrize(
("chunk_size", "expected_chunks"), ((10, 152), (50, 31), (100, 16), (5000, 1))
Expand Down Expand Up @@ -456,7 +479,9 @@ def test_as_object_stream(dict_with_all_types):

stream = adafruit_json_stream.load(BytesChunkIO(dict_with_all_types.encode()))

assert stream.as_object() == {
obj = stream.as_object()
assert obj == {
"_check": '{"a": 1, "b": [2,3]}',
"bool": True,
"dict": {"key": "value"},
"float": 1.1,
Expand All @@ -465,6 +490,13 @@ def test_as_object_stream(dict_with_all_types):
"null": None,
"string": "string",
}
assert json.loads(obj["_check"]) == {
"a": 1,
"b": [
2,
3,
],
}


def test_as_object_that_is_partially_read_raises(complex_dict):
Expand Down