diff options
author | shacharPash <93581407+shacharPash@users.noreply.github.com> | 2023-05-16 13:52:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 13:52:09 +0300 |
commit | 2d9b5ac6fe03fdc572b8ca47f7134082bae2a5e2 (patch) | |
tree | a0780069a09c8ce427d9e3676a6f33d07b3d95aa /tests/test_asyncio/test_json.py | |
parent | 35b7e09a57a1b7e2931d90e4b13858b68cee97cf (diff) | |
download | redis-py-master.tar.gz |
* support JSON.MERGE Command
* linters
* try with abc instead person
* change @skip_ifmodversion_lt to latest ReJSON 2.4.7
* change version
* fix test
* linters
* add async test
Diffstat (limited to 'tests/test_asyncio/test_json.py')
-rw-r--r-- | tests/test_asyncio/test_json.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/test_asyncio/test_json.py b/tests/test_asyncio/test_json.py index fc530c6..7334399 100644 --- a/tests/test_asyncio/test_json.py +++ b/tests/test_asyncio/test_json.py @@ -40,6 +40,41 @@ async def test_json_get_jset(modclient: redis.Redis): @pytest.mark.redismod +@skip_ifmodversion_lt("2.6.0", "ReJSON") # todo: update after the release +async def test_json_merge(modclient: redis.Redis): + # Test with root path $ + assert await modclient.json().set( + "person_data", + "$", + {"person1": {"personal_data": {"name": "John"}}}, + ) + assert await modclient.json().merge( + "person_data", "$", {"person1": {"personal_data": {"hobbies": "reading"}}} + ) + assert await modclient.json().get("person_data") == { + "person1": {"personal_data": {"name": "John", "hobbies": "reading"}} + } + + # Test with root path path $.person1.personal_data + assert await modclient.json().merge( + "person_data", "$.person1.personal_data", {"country": "Israel"} + ) + assert await modclient.json().get("person_data") == { + "person1": { + "personal_data": {"name": "John", "hobbies": "reading", "country": "Israel"} + } + } + + # Test with null value to delete a value + assert await modclient.json().merge( + "person_data", "$.person1.personal_data", {"name": None} + ) + assert await modclient.json().get("person_data") == { + "person1": {"personal_data": {"country": "Israel", "hobbies": "reading"}} + } + + +@pytest.mark.redismod async def test_nonascii_setgetdelete(modclient: redis.Redis): assert await modclient.json().set("notascii", Path.root_path(), "hyvää-élève") assert "hyvää-élève" == await modclient.json().get("notascii", no_escape=True) |