| OLD | NEW |
| 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 <stddef.h> |
| 8 |
| 9 #include "base/macros.h" |
| 7 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 13 |
| 11 namespace base { | 14 namespace base { |
| 12 | 15 |
| 13 TEST(JSONStringEscapeTest, EscapeUTF8) { | 16 TEST(JSONStringEscapeTest, EscapeUTF8) { |
| 14 const struct { | 17 const struct { |
| 15 const char* to_escape; | 18 const char* to_escape; |
| 16 const char* escaped; | 19 const char* escaped; |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 } | 180 } |
| 178 | 181 |
| 179 const char kEmbedNull[] = { '\xab', '\x39', '\0', '\x9f', '\xab' }; | 182 const char kEmbedNull[] = { '\xab', '\x39', '\0', '\x9f', '\xab' }; |
| 180 std::string in(kEmbedNull, arraysize(kEmbedNull)); | 183 std::string in(kEmbedNull, arraysize(kEmbedNull)); |
| 181 EXPECT_FALSE(IsStringUTF8(in)); | 184 EXPECT_FALSE(IsStringUTF8(in)); |
| 182 EXPECT_EQ(std::string("\\u00AB9\\u0000\\u009F\\u00AB"), | 185 EXPECT_EQ(std::string("\\u00AB9\\u0000\\u009F\\u00AB"), |
| 183 EscapeBytesAsInvalidJSONString(in, false)); | 186 EscapeBytesAsInvalidJSONString(in, false)); |
| 184 } | 187 } |
| 185 | 188 |
| 186 } // namespace base | 189 } // namespace base |
| OLD | NEW |