-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathnegative_parsing_tests.cpp
185 lines (162 loc) · 4.82 KB
/
negative_parsing_tests.cpp
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/***
* Copyright (C) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
*
* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
* negative_parsing_tests.cpp
*
* Negative tests for JSON parsing.
*
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/
#include "cpprest/json.h"
#include "unittestpp.h"
using namespace web;
using namespace utility;
namespace tests
{
namespace functional
{
namespace json_tests
{
template<typename T>
void verify_json_throws(T& parseString)
{
std::error_code ec;
VERIFY_THROWS(json::value::parse(parseString), json::json_exception);
auto value = json::value::parse(parseString, ec);
VERIFY_IS_TRUE(ec.value() > 0);
VERIFY_IS_TRUE(value.is_null());
}
SUITE(negative_parsing_tests)
{
TEST(string_t)
{
verify_json_throws(U("\"\\k\""));
verify_json_throws(U("\" \" \""));
verify_json_throws(U("\"\\u23A\""));
verify_json_throws(U("\"\\uXY1A\""));
verify_json_throws(U("\"asdf"));
verify_json_throws(U("\\asdf"));
verify_json_throws(U("\"\"\"\""));
// '\', '"', and control characters must be escaped (0x1F and below).
verify_json_throws(U("\"\\\""));
verify_json_throws(U("\""));
utility::string_t str(U("\""));
str.append(1, 0x1F);
str.append(U("\""));
verify_json_throws(str);
}
TEST(numbers)
{
verify_json_throws(U("-"));
verify_json_throws(U("-."));
verify_json_throws(U("-e1"));
verify_json_throws(U("-1e"));
verify_json_throws(U("+1.1"));
verify_json_throws(U("1.1 E"));
verify_json_throws(U("1.1E-"));
verify_json_throws(U("1.1E.1"));
verify_json_throws(U("1.1E1.1"));
verify_json_throws(U("001.1"));
verify_json_throws(U("-.100"));
verify_json_throws(U("-.001"));
verify_json_throws(U(".1"));
verify_json_throws(U("0.1.1"));
}
// TFS 535589
void parse_help(utility::string_t str)
{
utility::stringstream_t ss1;
ss1 << str;
verify_json_throws(ss1);
}
TEST(objects)
{
verify_json_throws(U("}"));
parse_help(U("{"));
parse_help(U("{ 1, 10 }"));
parse_help(U("{ : }"));
parse_help(U("{ \"}"));
verify_json_throws(U("{"));
verify_json_throws(U("{ 1"));
verify_json_throws(U("{ \"}"));
verify_json_throws(U("{\"2\":"));
verify_json_throws(U("{\"2\":}"));
verify_json_throws(U("{\"2\": true"));
verify_json_throws(U("{\"2\": true false"));
verify_json_throws(U("{\"2\": true :false"));
verify_json_throws(U("{\"2\": false,}"));
}
TEST(arrays)
{
verify_json_throws(U("]"));
verify_json_throws(U("["));
verify_json_throws(U("[ 1"));
verify_json_throws(U("[ 1,"));
verify_json_throws(U("[ 1,]"));
verify_json_throws(U("[ 1 2]"));
verify_json_throws(U("[ \"1\" : 2]"));
parse_help(U("[,]"));
parse_help(U("[ \"]"));
parse_help(U("[\"2\", false,]"));
}
TEST(literals_not_lower_case)
{
verify_json_throws(U("NULL"));
verify_json_throws(U("FAlse"));
verify_json_throws(U("TRue"));
}
TEST(incomplete_literals)
{
verify_json_throws(U("nul"));
verify_json_throws(U("fal"));
verify_json_throws(U("tru"));
}
// TFS#501321
TEST(exception_string)
{
utility::string_t json_ip_str = U("");
verify_json_throws(json_ip_str);
}
TEST(boundary_chars)
{
utility::string_t str(U("\""));
str.append(1, 0x1F);
str.append(U("\""));
parse_help(str);
}
TEST(stream_left_over_chars)
{
std::stringbuf buf;
buf.sputn("[false]false", 12);
std::istream stream(&buf);
verify_json_throws(stream);
}
// Test using Windows only API.
#ifdef _WIN32
TEST(wstream_left_over_chars)
{
std::wstringbuf buf;
buf.sputn(L"[false]false", 12);
std::wistream stream(&buf);
verify_json_throws(stream);
}
#endif
void garbage_impl(wchar_t ch)
{
utility::string_t ss(U("{\"a\" : 10, \"b\":"));
std::random_device rd;
std::mt19937 eng(rd());
std::uniform_int_distribution<unsigned int> dist(0, ch);
for (int i = 0; i < 2500; i++)
ss.push_back(static_cast<char_t>(dist(eng)));
verify_json_throws(ss);
}
TEST(garbage_1) { garbage_impl(0x7F); }
TEST(garbage_2) { garbage_impl(0xFF); }
TEST(garbage_3) { garbage_impl(0xFFFF); }
}
} // namespace json_tests
} // namespace functional
} // namespace tests