Consistently use "superuser" instead of "super user"
[pgsql.git] / src / test / regress / expected / jsonpath_encoding.out
blob7cbfb6abcf37d8ef2f62696c1f8d246510f1e76c
1 --
2 -- encoding-sensitive tests for jsonpath
3 --
4 -- We provide expected-results files for UTF8 (jsonpath_encoding.out)
5 -- and for SQL_ASCII (jsonpath_encoding_1.out).  Skip otherwise.
6 SELECT getdatabaseencoding() NOT IN ('UTF8', 'SQL_ASCII')
7        AS skip_test \gset
8 \if :skip_test
9 \quit
10 \endif
11 SELECT getdatabaseencoding();           -- just to label the results files
12  getdatabaseencoding 
13 ---------------------
14  UTF8
15 (1 row)
17 -- checks for double-quoted values
18 -- basic unicode input
19 SELECT '"\u"'::jsonpath;                -- ERROR, incomplete escape
20 ERROR:  invalid unicode sequence at or near "\u" of jsonpath input
21 LINE 1: SELECT '"\u"'::jsonpath;
22                ^
23 SELECT '"\u00"'::jsonpath;              -- ERROR, incomplete escape
24 ERROR:  invalid unicode sequence at or near "\u00" of jsonpath input
25 LINE 1: SELECT '"\u00"'::jsonpath;
26                ^
27 SELECT '"\u000g"'::jsonpath;    -- ERROR, g is not a hex digit
28 ERROR:  invalid unicode sequence at or near "\u000" of jsonpath input
29 LINE 1: SELECT '"\u000g"'::jsonpath;
30                ^
31 SELECT '"\u0000"'::jsonpath;    -- OK, legal escape
32 ERROR:  unsupported Unicode escape sequence
33 LINE 1: SELECT '"\u0000"'::jsonpath;
34                ^
35 DETAIL:  \u0000 cannot be converted to text.
36 SELECT '"\uaBcD"'::jsonpath;    -- OK, uppercase and lower case both OK
37  jsonpath 
38 ----------
39  "ꯍ"
40 (1 row)
42 -- handling of unicode surrogate pairs
43 select '"\ud83d\ude04\ud83d\udc36"'::jsonpath as correct_in_utf8;
44  correct_in_utf8 
45 -----------------
46  "😄🐶"
47 (1 row)
49 select '"\ud83d\ud83d"'::jsonpath; -- 2 high surrogates in a row
50 ERROR:  invalid input syntax for type jsonpath
51 LINE 1: select '"\ud83d\ud83d"'::jsonpath;
52                ^
53 DETAIL:  Unicode high surrogate must not follow a high surrogate.
54 select '"\ude04\ud83d"'::jsonpath; -- surrogates in wrong order
55 ERROR:  invalid input syntax for type jsonpath
56 LINE 1: select '"\ude04\ud83d"'::jsonpath;
57                ^
58 DETAIL:  Unicode low surrogate must follow a high surrogate.
59 select '"\ud83dX"'::jsonpath; -- orphan high surrogate
60 ERROR:  invalid input syntax for type jsonpath
61 LINE 1: select '"\ud83dX"'::jsonpath;
62                ^
63 DETAIL:  Unicode low surrogate must follow a high surrogate.
64 select '"\ude04X"'::jsonpath; -- orphan low surrogate
65 ERROR:  invalid input syntax for type jsonpath
66 LINE 1: select '"\ude04X"'::jsonpath;
67                ^
68 DETAIL:  Unicode low surrogate must follow a high surrogate.
69 --handling of simple unicode escapes
70 select '"the Copyright \u00a9 sign"'::jsonpath as correct_in_utf8;
71     correct_in_utf8     
72 ------------------------
73  "the Copyright © sign"
74 (1 row)
76 select '"dollar \u0024 character"'::jsonpath as correct_everywhere;
77   correct_everywhere  
78 ----------------------
79  "dollar $ character"
80 (1 row)
82 select '"dollar \\u0024 character"'::jsonpath as not_an_escape;
83        not_an_escape        
84 ----------------------------
85  "dollar \\u0024 character"
86 (1 row)
88 select '"null \u0000 escape"'::jsonpath as not_unescaped;
89 ERROR:  unsupported Unicode escape sequence
90 LINE 1: select '"null \u0000 escape"'::jsonpath as not_unescaped;
91                ^
92 DETAIL:  \u0000 cannot be converted to text.
93 select '"null \\u0000 escape"'::jsonpath as not_an_escape;
94      not_an_escape     
95 -----------------------
96  "null \\u0000 escape"
97 (1 row)
99 -- checks for quoted key names
100 -- basic unicode input
101 SELECT '$."\u"'::jsonpath;              -- ERROR, incomplete escape
102 ERROR:  invalid unicode sequence at or near "\u" of jsonpath input
103 LINE 1: SELECT '$."\u"'::jsonpath;
104                ^
105 SELECT '$."\u00"'::jsonpath;    -- ERROR, incomplete escape
106 ERROR:  invalid unicode sequence at or near "\u00" of jsonpath input
107 LINE 1: SELECT '$."\u00"'::jsonpath;
108                ^
109 SELECT '$."\u000g"'::jsonpath;  -- ERROR, g is not a hex digit
110 ERROR:  invalid unicode sequence at or near "\u000" of jsonpath input
111 LINE 1: SELECT '$."\u000g"'::jsonpath;
112                ^
113 SELECT '$."\u0000"'::jsonpath;  -- OK, legal escape
114 ERROR:  unsupported Unicode escape sequence
115 LINE 1: SELECT '$."\u0000"'::jsonpath;
116                ^
117 DETAIL:  \u0000 cannot be converted to text.
118 SELECT '$."\uaBcD"'::jsonpath;  -- OK, uppercase and lower case both OK
119  jsonpath 
120 ----------
121  $."ꯍ"
122 (1 row)
124 -- handling of unicode surrogate pairs
125 select '$."\ud83d\ude04\ud83d\udc36"'::jsonpath as correct_in_utf8;
126  correct_in_utf8 
127 -----------------
128  $."😄🐶"
129 (1 row)
131 select '$."\ud83d\ud83d"'::jsonpath; -- 2 high surrogates in a row
132 ERROR:  invalid input syntax for type jsonpath
133 LINE 1: select '$."\ud83d\ud83d"'::jsonpath;
134                ^
135 DETAIL:  Unicode high surrogate must not follow a high surrogate.
136 select '$."\ude04\ud83d"'::jsonpath; -- surrogates in wrong order
137 ERROR:  invalid input syntax for type jsonpath
138 LINE 1: select '$."\ude04\ud83d"'::jsonpath;
139                ^
140 DETAIL:  Unicode low surrogate must follow a high surrogate.
141 select '$."\ud83dX"'::jsonpath; -- orphan high surrogate
142 ERROR:  invalid input syntax for type jsonpath
143 LINE 1: select '$."\ud83dX"'::jsonpath;
144                ^
145 DETAIL:  Unicode low surrogate must follow a high surrogate.
146 select '$."\ude04X"'::jsonpath; -- orphan low surrogate
147 ERROR:  invalid input syntax for type jsonpath
148 LINE 1: select '$."\ude04X"'::jsonpath;
149                ^
150 DETAIL:  Unicode low surrogate must follow a high surrogate.
151 --handling of simple unicode escapes
152 select '$."the Copyright \u00a9 sign"'::jsonpath as correct_in_utf8;
153      correct_in_utf8      
154 --------------------------
155  $."the Copyright © sign"
156 (1 row)
158 select '$."dollar \u0024 character"'::jsonpath as correct_everywhere;
159    correct_everywhere   
160 ------------------------
161  $."dollar $ character"
162 (1 row)
164 select '$."dollar \\u0024 character"'::jsonpath as not_an_escape;
165         not_an_escape         
166 ------------------------------
167  $."dollar \\u0024 character"
168 (1 row)
170 select '$."null \u0000 escape"'::jsonpath as not_unescaped;
171 ERROR:  unsupported Unicode escape sequence
172 LINE 1: select '$."null \u0000 escape"'::jsonpath as not_unescaped;
173                ^
174 DETAIL:  \u0000 cannot be converted to text.
175 select '$."null \\u0000 escape"'::jsonpath as not_an_escape;
176       not_an_escape      
177 -------------------------
178  $."null \\u0000 escape"
179 (1 row)