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

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

Issue 1466413002: Update gtest to 786564fa4a3c, switch to googlemock in gtest Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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_writer_unittest.cc ('k') | base/lazy_instance_unittest.cc » ('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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/string_escape.h" 5 #include "base/json/string_escape.h"
6 6
7 #include "base/strings/string_util.h" 7 #include "base/strings/string_util.h"
8 #include "base/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/googletest/include/gtest/gtest.h"
10 10
11 namespace base { 11 namespace base {
12 12
13 TEST(JSONStringEscapeTest, EscapeUTF8) { 13 TEST(JSONStringEscapeTest, EscapeUTF8) {
14 const struct { 14 const struct {
15 const char* to_escape; 15 const char* to_escape;
16 const char* escaped; 16 const char* escaped;
17 } cases[] = { 17 } cases[] = {
18 {"\b\001aZ\"\\wee", "\\b\\u0001aZ\\\"\\\\wee"}, 18 {"\b\001aZ\"\\wee", "\\b\\u0001aZ\\\"\\\\wee"},
19 {"a\b\f\n\r\t\v\1\\.\"z", 19 {"a\b\f\n\r\t\v\1\\.\"z",
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 } 177 }
178 178
179 const char kEmbedNull[] = { '\xab', '\x39', '\0', '\x9f', '\xab' }; 179 const char kEmbedNull[] = { '\xab', '\x39', '\0', '\x9f', '\xab' };
180 std::string in(kEmbedNull, arraysize(kEmbedNull)); 180 std::string in(kEmbedNull, arraysize(kEmbedNull));
181 EXPECT_FALSE(IsStringUTF8(in)); 181 EXPECT_FALSE(IsStringUTF8(in));
182 EXPECT_EQ(std::string("\\u00AB9\\u0000\\u009F\\u00AB"), 182 EXPECT_EQ(std::string("\\u00AB9\\u0000\\u009F\\u00AB"),
183 EscapeBytesAsInvalidJSONString(in, false)); 183 EscapeBytesAsInvalidJSONString(in, false));
184 } 184 }
185 185
186 } // namespace base 186 } // namespace base
OLDNEW
« no previous file with comments | « base/json/json_writer_unittest.cc ('k') | base/lazy_instance_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698