Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/unittest/documenttest.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unittest/documenttest.cpp b/test/unittest/documenttest.cpp
index 54298027..2b0f269f 100644
--- a/test/unittest/documenttest.cpp
+++ b/test/unittest/documenttest.cpp
@@ -625,6 +625,12 @@ TYPED_TEST(DocumentMove, MoveAssignmentParseError) {
EXPECT_EQ(c.GetErrorOffset(), error.Offset());
}
+TEST(Document, Issue1604_ASCIIValidation) {
+ GenericDocument<ASCII<> > d;
+ d.Parse<kParseValidateEncodingFlag>("\"\\u1234\"");
+ EXPECT_EQ(kParseErrorStringInvalidEncoding, d.GetParseError());
+}
+
// This test does not properly use parsing, just for testing.
// It must call ClearStack() explicitly to prevent memory leak.
// But here we cannot as ClearStack() is private.