Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: base/json/json_parser_unittest.cc

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/json/json_parser.cc ('k') | base/logging.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/json/json_parser.h" 5 #include "base/json/json_parser.h"
6 6
7 #include "base/json/json_reader.h" 7 #include "base/json/json_reader.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 // reader should be able to handle (the character is \xf0\x9f\x98\x87). 306 // reader should be able to handle (the character is \xf0\x9f\x98\x87).
307 const char kUtf8Data[] = 307 const char kUtf8Data[] =
308 "[\"😇\",[],[],[],{\"google:suggesttype\":[]}]"; 308 "[\"😇\",[],[],[],{\"google:suggesttype\":[]}]";
309 std::string error_message; 309 std::string error_message;
310 int error_code = 0; 310 int error_code = 0;
311 scoped_ptr<Value> root(JSONReader::DeprecatedReadAndReturnError( 311 scoped_ptr<Value> root(JSONReader::DeprecatedReadAndReturnError(
312 kUtf8Data, JSON_PARSE_RFC, &error_code, &error_message)); 312 kUtf8Data, JSON_PARSE_RFC, &error_code, &error_message));
313 EXPECT_TRUE(root.get()) << error_message; 313 EXPECT_TRUE(root.get()) << error_message;
314 } 314 }
315 315
316 TEST_F(JSONParserTest, DecodeUnicodeNonCharacter) {
317 // Tests Unicode code points (encoded as escaped UTF-16) that are not valid
318 // characters.
319 EXPECT_FALSE(JSONReader::Read("[\"\\ufdd0\"]"));
320 EXPECT_FALSE(JSONReader::Read("[\"\\ufffe\"]"));
321 EXPECT_FALSE(JSONReader::Read("[\"\\ud83f\\udffe\"]"));
322 }
323
316 } // namespace internal 324 } // namespace internal
317 } // namespace base 325 } // namespace base
OLDNEW
« no previous file with comments | « base/json/json_parser.cc ('k') | base/logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698