forked from doloopwhile/pyjq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_pyjq.py
142 lines (108 loc) · 3.49 KB
/
test_pyjq.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# encoding: utf8
from __future__ import unicode_literals
import io
import os.path
import re
import shutil
import tempfile
import unittest
from datetime import datetime
from unittest.mock import patch
import pytest
import _pyjq
import pyjq
def test_compile_dot():
s = pyjq.compile(".")
assert isinstance(s, _pyjq.Script)
def test_syntax_error():
with pytest.raises(ValueError, match=r"error: syntax error"):
pyjq.compile("**")
def test_non_json_data():
with pytest.raises(
TypeError,
match=re.escape("<class 'datetime.datetime'> could not be converted to json"),
):
pyjq.all(".", {"date": datetime.now()})
def test_conversion_between_python_object_and_jv():
objects = [
None,
False,
True,
1,
1.5,
"string",
[None, False, True, 1, 1.5, [None, False, True], {"foo": "bar"}],
{
"key1": None,
"key2": False,
"key3": True,
"key4": 1,
"key5": 1.5,
"key6": [None, False, True, 1, 1.5, [None, False, True], {"foo": "bar"}],
},
]
s = pyjq.compile(".")
for obj in objects:
assert [obj] == s.all(obj)
def test_assigning_values():
assert pyjq.one("$foo", {}, vars=dict(foo="bar")) == "bar"
assert pyjq.one("$foo", {}, vars=dict(foo=["bar"])) == ["bar"]
def test_all():
assert pyjq.all(".[] | . + $foo", ["val1", "val2"], vars=dict(foo="bar")) == [
"val1bar",
"val2bar",
]
assert pyjq.all(". + $foo", "val", vars=dict(foo="bar")) == ["valbar"]
def test_first():
assert (
pyjq.first(".[] | . + $foo", ["val1", "val2"], vars=dict(foo="bar"))
== "val1bar"
)
def test_one():
assert pyjq.one(". + $foo", "val", vars=dict(foo="bar")) == "valbar"
# if got multiple elements
with pytest.raises(IndexError):
pyjq.one(".[]", [1, 2])
# if got no elements
with pytest.raises(IndexError):
pyjq.one(".[]", [])
def test_url_argument():
class FakeResponse:
def getheader(self, name):
return "application/json;charset=SHIFT_JIS"
def read(self):
return '["Hello", "世界", "!"]'.encode("shift-jis")
with patch("urllib.request.urlopen", return_value=FakeResponse()):
assert pyjq.all(".[] | . + .", url="http://example.com") == [
"HelloHello",
"世界世界",
"!!",
]
def opener(url):
return [1, 2, 3]
assert pyjq.all(".[] | . + .", url="http://example.com", opener=opener) == [2, 4, 6]
def test_library_path(tmp_path_factory):
library_path = tmp_path_factory.mktemp("a")
library_path2 = tmp_path_factory.mktemp("b")
library_file = library_path / "greeting.jq"
library_file2 = library_path2 / "increment.jq"
with library_file.open("w", encoding="ascii") as f:
f.write('def hello: "HELLO";')
f.write('def world: "WORLD";')
with library_file2.open("w", encoding="ascii") as f:
f.write("def increment: . + 1;\n")
values = pyjq.all(
'include "greeting"; include "increment"; .[] | [. | increment, hello, world]',
[1, 2, 3],
library_paths=[
str(library_path),
library_path2,
], # It accepts both of str and pathlib.Path
)
assert [
[2, "HELLO", "WORLD"],
[3, "HELLO", "WORLD"],
[4, "HELLO", "WORLD"],
] == values
def test_script_runtime_error_exported():
pyjq.ScriptRuntimeError # exported